How to generate JAXB classes with xjc

  • 05 March 2018
  • ADM

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


How to get local computer name and IP in Java

  • 05 March 2018
  • ADM

How to get local computer name and IP in Java. Simple snippet using InetAddress.getLocalHost() method.


HTTP URLConnection with proxy in Java

  • 08 February 2018
  • ADM

How to create an HTTP URLConnection with proxy in Java. Simple example including proxy authentication.


How to convert Celsius to Fahrenheit in Java

  • 02 November 2017
  • ADM

How to convert Celsius to Fahrenheit in Java. Simple Java code and conversion table with common values.


How to convert Fahrenheit to Celsius in Java

  • 23 October 2017
  • ADM

How to convert Fahrenheit to Celsius in Java. Simple Java code and conversion table with common values.


How to convert a string to an unsigned int in Golang

  • 26 June 2020
  • ADM

How to convert a string to an unsigned int in Golang using strconv.ParseUint method.