10 followers
I write about my experiences in software development and design, and some random thoughts that pop into my head from time to time.
Subscribe to my newsletter and never miss my upcoming articles
What you will learn By going through this article, you will learn about some common HTTP status codes, what they mean and when they are typically used. What are HTTP Status Codes? Simply put, a HTTP status code is a three-digit number used to indicat...
By reading this article, you would understand some of the benefits of using Tailwind CSS, and the reasons why a lot of design teams and UI developers prefer to use it over other CSS frameworks. Let's get started! The Great Before Before the advent o...
In this article, you will learn about some nice, free, and open-source templates for Tailwind CSS, and where to get them. P.S.: I just found a website that has an amazing collection of free and premium Tailwind themes... check them out here at themes...
Recursion is when a function calls itself until it is stopped, otherwise it continues to call itself forever. A function that does this is called a recursive function. It usually has this syntax: function recurse() { if (condition) { // stop re...
This post is a bit long because I tried to explain JavaScript loops in a way that I hope would make it much easier to understand. I'd be so happy if you read it to the end, and gain some value from it. Thank you very much 🤗. What is a loop? A loop...
Visual Studio Code is one of the most popular IDEs used by developers. It's features include support for debugging, integrated Git and GitHub, intelligent code completion (Intellisense), syntax highlighting and others, making it one of easiest code e...