Tutorials

golang.pngGolang : Shuffle array of list

15th April 2015

Continue from previous tutorial on how to shuffle an array of strings, to shuffle array of list is….... read more



golang.pngGolang : Shuffle strings array

15th April 2015

Okay, the previous tutorial on how to shuffle elements inside an array does not work with strings array.….... read more



golang.pngGolang : Display advertisement images or strings on random order

15th April 2015

This is a Golang add on for my previous tutorial on how to display random advertisements with PHP….... read more



php.jpgPHP : Shuffle to display different content or advertisement

15th April 2015

Problem :

Your website serves advertisement and you are looking for ways to display different images or content each time….... read more



golang.pngGolang : Check from web if Go application is running or not

10th April 2015

When we run some processes in the background to perform certain tasks and it would be a good idea to….... read more



golang.pngGolang : Dealing with backquote

10th April 2015

Just a quick tutorial note on how to deal with backquote in Golang or rather a note for myself :P

.... read more



ssl.pngGoogle Chrome : Your connection to website is encrypted with obsolete cryptography

8th April 2015

Problem :

While checking out if my SSL certificates installed correctly. I noticed that Google Chrome labelled the SSL….... read more



javascript.jpgJavascript : Read/parse JSON data from HTTP response

8th April 2015

This is just a quick note on how to parse JSON data with Javascript. The JSON data is generated in….... read more



golang.pngGolang : Decode XML data from RSS feed

8th April 2015

Was looking for a way to decode RSS feed XML data today and here is the code for the tutorial….... read more



golang.pngGolang : Get password from console input without echo or masked

6th April 2015

Found this package https://github.com/howeyc/gopass that allows Golang developers to build text based application that takes in password without….... read more



golang.pngGet file size in Go

6th April 2015

Our mouths have limited size and we still need to cut up our food into edible chunks before putting into….... read more



javascript.jpgJavascript : Generate random key with specific length

6th April 2015

Was looking for a way to generate random string with Javascript today and also wanted to limit the random string….... read more



golang.pngGolang : How to add color to string?

4th April 2015

Back in the days of DOS ( before GUI was popular), programmers use colors to decorate text based application to….... read more



golang.pngGolang : How to create new XML file ?

4th April 2015

This is a follow up tutorial for XML and continue from previous tutorial on how to read XML….... read more



javascript.jpgJavascript : How to replace HTML inside <div>?

3rd April 2015

Problem :

How to use Javascript to replace the HTML codes?

While attempting to show different content to visitors equipped….... read more



golang.pngGolang : Verify token from Google Authenticator App

1st April 2015

One of the steps to implement 2FA(two-factor authentication) is to verify the token generated by app such as Google Authenticator….... read more



golang.pngGolang : How to implement two-factor authentication?

31st March 2015

Nowadays, having a password no longer protects your account or website been hacked. This is because password is a "something….... read more



golang.pngGolang : Shortening import identifier

31st March 2015

In Golang, we often import external packages from third party sources and ended with import statement that look like this….... read more



Advertisement