These are what I usually do when setting up a new database in CockroachDB cluster:
[Read More]
Installing Redis in Ubuntu WSL (Windows Subsystem for Linux)
I found an straight-forward article about installing Redis in Ubuntu 18.14 from here. I used the step-by-step article to install Redis in my WSL machine. However, there’re several commands that cannot be run. Here’s the complete step-by-step tutorial to install Redis on Ubuntu WSL:
[Read More]
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]
Docker Commands for Beginner
After successfully installing Docker in my Windows 10, there are several commands I run to my new Docker system. Here are the commands that can be used to try Docker:
[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]