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 String to double in Java

  • 14 October 2016
  • ADM

How to convert String to double in Java using Double.parseDouble and Double.valueOf methods. Simple example provided.


How to convert String to float in Java

  • 13 October 2016
  • ADM

How to convert String to float in Java using Float.parseFloat and Float.valueOf methods. Simple example provided.


Display double in 2 decimal points in Java

  • 13 October 2016
  • ADM

This tutorial will show you how display double in 2 decimal points in Java using String format method and DecimalFormat class.


How to convert String to long in Java

  • 23 November 2020
  • ADM

How to convert String to long in Java using Long.parseLong and Long.valueOf methods. Simple example provided.


How to convert String to int in Java

  • 23 November 2020
  • ADM

How to convert String to int in Java using Integer.parseInt and Integer.valueOf methods. Simple example provided.