Emmet for HTML: A Beginner’s Guide to Writing Faster MarkupI used to spend forever typing out every single bracket and closing tag for my HTML. My fingers were getting so tired! But then we found out about Emmet. It’s like having a fast-forward button for our code editor… Here is how we can stop typing and s...Feb 1, 2026·2 min read
TCP vs UDP: When to Use What, and How TCP Relates to HTTPIntroduction: Why Internet Needs Rules When we use internet, data is going from one computer to another. This data does not go randomly. Internet needs some rules so data can reach safely or fast. These rules are called protocols. Two very important ...Jan 31, 2026·2 min read
Understanding Network DevicesHow Does the Internet Actually Get Into Our House? We use the internet every day for coding, but we rarely think about the boxes under our desk. I found out that each one has a very specific job. It's like a team of people making sure our data doesn'...Jan 31, 2026·2 min read
Why Version Control Exists: The Pendrive ProblemWhy We Need Version Control: The Pendrive Problem I used to think keeping track of code was easy until I started thinking about working on bigger projects. Honestly, it's a mess if we don't use the right tools. Here is what I learned about why "Versi...Jan 31, 2026·2 min read
Inside Git: How It Works and the Role of the .git FolderInside Git: My Journey into the .git Folder When I first started using Git, I just memorized git add and git commit without knowing what was actually happening. It felt like a black box. But it turns out, all the "magic" is just a hidden folder. 1. W...Jan 31, 2026·2 min read
How DNS Resolution WorksMy First Blog On: How DNS Actually Works I just started learning web dev and honestly, I thought the internet was just magic. But it turns out there is something called DNS. Here is what I learned about it. 1. What is DNS? DNS stands for Domain Name ...Jan 31, 2026·2 min read
Understanding Git Basics as a BeginnerIntroduction: What is Git? Git is a distributed version control system. It help developers to manage their code and track changes. In simple words, Git is like a backup system for code. If your code breaks, you can go back to old working version usin...Jan 31, 2026·2 min read