Welcome to my blog page! Here you'll find a collection of my latest musings, opinions, and insights on a variety of topics. From personal experiences to professional advice, I share my thoughts with the aim of inspiring, informing, and entertaining my readers.
In this article, we will make a CLI based To-Do app with Go that you can run natively in Linux or Windows.
This is combined cheatsheet for Linux, Git and Markdown. It contains useful commands and formatting instructions and it a handy tool in any dev's toolkit.
You have built yourself REST APIs with Django or you are trying to deploy them on an Ubuntu server. This article will be a walkthrough of the simplest approach.
In Rust, you need to be mindful of the ownership model, which means there can only be one owner at a given time for the data in memory. But what if we need to perform some operations on that data by passing it to a function but still need to retain the ownership? There are two ways to achieve this.