AGAditya Goswamiinadityago.hashnode.dev·Feb 3 · 2 min readpx vs rem vs em vs %This is where people overthink. Here’s the real-world rule set. 🔹 Use px for: ✔ Borders✔ Shadows✔ Small offsets✔ Hairline precision border-radius: 6px; box-shadow: 0 1px 4px rgba(0,0,0,.2); px = physical precision 🔹 Use rem for: ✔ Font sizes✔ ...00
AGAditya Goswamiinadityago.hashnode.dev·Feb 3 · 2 min readHow to divide your CSS into multiple stylesheets❌ What beginners do (don’t) home.css, about.css, contact.css Random imports Duplicate variables everywhere This does not scale. ✅ The professional split (what you should do) Think in layers, not pages. 📁 Recommended structure (for your current...00
AGAditya Goswamiinadityago.hashnode.dev·Jan 30 · 3 min readHow a Browser Works: A Beginner-Friendly Guide to Browser InternalsThe Simple Question to Start With What happens after I type a URL and press Enter? From that moment, the browser: Talks to servers Downloads files Understands code Builds structures in memory Calculates layouts Paints pixels on your screen ...00
AGAditya Goswamiinadityago.hashnode.dev·Jan 27 · 3 min readGetting Started with cURLBefore we talk about cURL, we need to understand what we’re talking to. What Is a Server A server is just a computer on the internet whose job is to: Receive requests Process them Send back responses When you open a website, your browser talks ...00
AGAditya Goswamiinadityago.hashnode.dev·Jan 27 · 4 min readHow DNS Resolution WorksWhen you type this into your browser: https://google.com your browser does not magically know where Google lives. Instead, it asks a question: “Hey DNS, where is google.com?” Answering that question is the job of DNS name resolution — and today we...00