Using variable in CSS

In CSS, we apply background color or font color as following: .class-name { color: #ffffff; background-color: #000000; } Soon, the hex code would be scattered in different places. And if the... Read More

Run Single Group of Test in Golang

If there are more cases in a test file, it would be difficult to debug the failing test. Today, I learned about a simple command that can increase my focus and productivity while testing in Golang.... Read More

Clean your untracked files

As a developer, we all have the habits of playing around with our code base. This means we are adding different files which we don’t want to commit to our branch. One day, I was playing around with... Read More