How to Check Alexa Rank in Java

  • 16 November 2017
  • ADM

How to Check Alexa Rank in Java using the undocumented API: http://data.alexa.com/data?cli=10&url=domainName. The code contains also the possibility of adding proxy settings


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 char array to a string using Golang

  • 26 June 2020
  • ADM

How to convert a char array to a string using Golang using string method.


JAXB Hello World Marshalling / Unmarshalling Example

  • 03 August 2017
  • ADM

JAXB Hello World Marshalling/Unmarshalling example: Object to XML and XML to Object.


How to deep clone an object in Java

  • 25 July 2017
  • ADM

How to deep clone an object in Java. The clone method from the parent object needs to clone each child object separately and added to the cloned parent object.