Essential Bash Commands

I personally prefer terminal instead of GUI to do simple and complex job. The first time I learned how to use Ubuntu, I also learned how to use the bash terminal. I found the following bash commands saved me to do various simple job. [Read More]

Looping in Golang

In C++, we have three methods to iterate statements; they are for, foreach, and while. Fortunately, there is only one method in Golang to loop lines of code; it’s for method. However, this for method in Golang can be used as for, foreach, and while in C++. [Read More]