How to setup a proxy for HTTP client in Golang example using http.Transport and http.Client. Simple example calling httpbin.org test server.


How to split a string in Java

  • 05 March 2018
  • ADM

How to split a string in Java using both variants of the split() method: split(String regex) and split(String regex, int limit).


How to get network interfaces in Java using NetworkInterface class.


How to generate JAXB classes with xjc. Command line: xjc -d src -p com.admfactory.client schema.xsd


How to convert a roman number in decimal in Java. The symbols used are I, V, X, C, D and M.


How to kill a process from the command line in Window using tasklist and taskkill command.