Emmet for HTML: A Beginner’s Guide to Writing Faster MarkupIf you’re just starting with HTML, you’ve probably felt this already: writing markup is simple, but it’s also slow, repetitive, and boring.This is where Emmet quietly becomes your best friend. What is Emmet? Think of Emmet as autocorrect on steroids ...Feb 1, 2026·2 min read
How Does A Browser Really Works: A Beginner-Friendly Guide to Browser InternalsFeb 1, 2026·4 min read
TCP vs UDPWhen you click a link, watch a video, or send a message, data travels across the internet to reach its destination.But this data doesn’t move randomly it follows rules.Two of the most important rulebooks for sending data are TCP and UDP.And sitting a...Feb 1, 2026·3 min read
Inside Git: How It Works and the Role of the .git FolderHow Git Works Internally Git is a content-addressable filesystem.Git does not track files,Git tracks snapshots of content.Every snapshot is identified by a hash.When you initialize a repository (git init), Git creates a hidden directory called .git.T...Jan 31, 2026·3 min read
Beginners Guide to GIT: Basics and Essential CommandsWhat is Git? Git is a distributed version control system.Imagine you are writing a document. Every time you make a significant change, you might save it as Draft_v1, Draft_v2, Draft_Final, or Draft_Final_REAL. This is a primitive form of version cont...Jan 31, 2026·3 min read
Why there is a need for Version Control?The Pendrive Era and its Problems Before Git became the industry standard, moving code was a physical or manual task.Developers would finish a feature, zip up the folder, and either email it to a teammate or literally walk a pendrive across the offic...Jan 31, 2026·2 min read
Exploring cURLBefore we talk about cURL we need to understand Server. What is a server? A server is just a computer somewhere on the internet that stores data,runs applications and responds when someone asks it for something. What is cURL? cURL is a command-line ...Jan 31, 2026·2 min read
DNS Records Types ExplainedWhat are DNS records and why are these needed? DNS stands for Domain Name System. The easiest way to understand it is to think of it as the phonebook of the internet.If DNS is a phonebook, DNS Records are the specific lines written inside it.A real p...Jan 31, 2026·3 min read