Skip to content

Instantly share code, notes, and snippets.

View luisbandalap's full-sized avatar
🎯
Focusing

Luis Bandala luisbandalap

🎯
Focusing
View GitHub Profile
@luisbandalap
luisbandalap / opkg_list_installed.sh
Created April 25, 2020 21:23 — forked from benok/opkg_list_installed.sh
[entware] List up manually installed packages
#!/bin/ash
list_pkgs() {
opkg list-installed | cut -f 1 -d " "
}
show_deps() {
opkg depends $1 | sed -e 1d -e 's/^\s*//'
}
@luisbandalap
luisbandalap / ASimpleSOAPClient.java
Last active February 8, 2021 16:13 — forked from kdelfour/ASimpleSOAPClient.java
A simple SOAP Client class to send request body to a SOAP Server. Useful when you want to test a SOAP server and you don't want to generate all SOAP client class from the WSDL.
package com.kdstudio.snippets.soap.client;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.parsers.DocumentBuilderFactory;