Command Palette
Search for a command to run...
More from this blog
What keeps me up at night
It is 2 AM. I am staring at the ceiling again. This used to happen before big releases or when something was broken in production and I could not figure it out. Now it is something else. It is the qui
Hooked - How Habit-Forming Products Capture Our Attention
Hooked: How Habit-Forming Products Capture Our Attention Nir Eyal's Hooked dives into the psychology behind the apps we can't seem to put down—from Facebook to Instagram and even Google. The book unpacks a simple yet powerful cycle that transforms or...

Basic web server implementation using inbuilt python tools
In my previous article, I talked about implementing the HTTP protocol over a standard TCP socket. Today, I will be using few libraries available in python that implements HTTP and try to build something like Flask web framework. What is Flask Web Fra...

Create HTTP server from Scratch
I was testing some NGINX config files last night when I started to wonder how NGINX understands it all? Somehow this curiosity inspired me to go down the rabbit hole to understand the inner workings of HTTP. What I found was a relatively uncomplicate...

Introduction to C++ Part 1
What is C++? C++ is a versatile and powerful programming language that was developed as an extension of the C programming language. It combines procedural, object-oriented, and generic programming paradigms, making it suitable for a wide range of app...