Tutorials

golang.pngGolang : Convert IP version 6 address to integer or decimal number

24th July 2015

Problem :

You have IP address version 6 in string format and you want to convert it into integer. How….... read more



golang.pngGolang : Intercept and compare HTTP response code example

24th July 2015

Problem :

You want to query a website and intercept the response code. You also want to compare the response….... read more



golang.pngGolang : Issue HTTP commands to server and port example

24th July 2015

Problem :

You want to issue or write HTTP command to a connection created by net.DialTCP() function. How to do….... read more



python.pngPython : Convert IPv6 address to decimal and back to IPv6

23rd July 2015

Problem :

Need to convert IPv6 address to decimal number and convert back to IPv6. How to do that?

Solution….... read more



golang.pngGolang : convert string or integer to big.Int type

23rd July 2015

Problem :

You have a big integer number in string format and you want to convert(cast) it to big.Int type.….... read more



golang.pngGolang : Convert decimal number(integer) to IPv4 address

23rd July 2015

Problem :

You've read the previous tutorial on how to convert IPv4 address to decimal number and store….... read more



golang.pngGolang : Convert IPv4 address to decimal number(base 10) or integer

23rd July 2015

Problem :

IP address in decimal is easier to search, filter or compare. For example, searching for IP address in….... read more



windows.jpgFindstr command the Grep equivalent for Windows

22nd July 2015

It has been a while since I use a computer with Windows Operating System. However, I have no choice today….... read more



golang.pngGolang : Generate Interleaved 2 inch by 5 inch barcode

22nd July 2015

For this tutorial, we will learn how to generate interleaved and standard "2 of 5" barcodes in Golang with this….... read more



alexa.jpgGet website traffic ranking with Similar Web or Alexa

22nd July 2015

Problem :

You need to get website ranking data from Alexa or Similar Web. What are the APIs to download….... read more



xml.jpgGolang : Search and extract certain XML data example

22nd July 2015

There are times when you want to just search for certain element in huge XML data set and extract the….... read more



golang.pngGolang : Convert(cast) []byte to io.Reader type

22nd July 2015

Problem :

Need to convert XML data from http.Get() to io.Reader type for xml.NewDecoder() function to work . How to….... read more



alexa.jpgGolang : Get Alexa ranking data example

22nd July 2015

Problem :

You want to get a website Alexa ranking and process the data in Golang.

Maybe for tracking….... read more



golang.pngGolang : Intercept, inject and replay HTTP traffics from web server

22nd July 2015

Found this interesting tool written in Golang that will allow you to record and replay HTTP traffics from your website….... read more



macosx.jpgUnix/Linux : secure copying between servers with SCP command examples

22nd July 2015

Have to write this down in case I forget again and hope you may find these SCP examples useful too.

.... read more



macosx.jpgGolang : Go as a script or running go with shebang/hashbang style

21st July 2015

One of the job scope of Unix/Linux system administrator is to write shell scripts to accomplish certain task. However, there….... read more



golang.pngGolang : interface - when and where to use examples

21st July 2015

Question :

New comer to Golang will need to learn about interface eventually. So what exactly is interface? Where and….... read more



golang.pngGolang : Get curl -I or head data from URL example

20th July 2015

Problem :

Need a way to make a HEAD request from URL and extract a few fields of header data….... read more



Advertisement