162 followers
I am a developer that values good stories. I seek to improve the human condition through technology. I'm contributing to the growth of tech communities in Africa.
Subscribe to my newsletter and never miss my upcoming articles
Modern software development requires an application set up to be as easy as running a single command. Apps should also be easily torn down. A containerization tool such as Docker makes it easy for apps to be set up and torn down. In this tutorial, we...
Docker Run docker run creates a new container from an image. If run without the -d flag, the container will stop when interrupted. For example, if we run Redis v6.0.9 like this docker run redis:6.0.9 We will get an output similar to: 1:C 11 Jan 2021...
Use the x-clip package to copy the content of a file to your clipboard from your the terminal. We'll go over the steps to achieve this. Steps Create a file lorem.txt and populate it with lorem-ipsumcat > lorem.txt << EOF Lorem ipsum dolor sit amet c...
If you love your terminal or want to go full geek and publish articles from your terminal, look no further than the Hashnode CLI. The Hashnode CLI allows you to: Create stories Set writing goals View your writing goals It's open-source so you can a...
2020 was a peculiar year. But as time progresses, we have to keep learning and improving on our weaknesses. One way of doing this is reflecting on the year and making a review. In the spirit of reviews, here's mine. First Quarter (January - March) I...
Your first guess to this question may be the paragraph tag <p></p> or maybe the <div></div>. While these tags are important, I'll say the most important is the anchor tag. Why? Let's go through history lane a bit. HTML and HTTP A quick reminder HTML...