How to convert int to string in Golang

  • 14 August 2020
  • ADM

How to convert int to string in Golang using strconv.Itoa and strconv.FormatInt methods.


How to convert a float to string in Golang

  • 11 June 2020
  • ADM

How to convert a float to string in Golang using strconv.FormatFloat function.


How to convert a boolean to a string in Golang

  • 26 June 2020
  • ADM

How to convert a boolean to a string in Golang strconv.FormatBool method.


How to create a Java project with Maven

  • 07 August 2017
  • ADM

How to create a Java project with Maven. Simple steps to generate the project, import in Eclipse and run the application.


How to install golang on Raspberry PI

  • 17 March 2017
  • ADM

How to install golang on Raspberry PI. Example using apt-get and using the latest binary available.


How to convert object to / from JSON using Jackson

  • 17 July 2017
  • ADM

How to convert Java object to / from JSON string using Jackson library. Simple example including embedded object.