network-blog.hashnode.devUnderstanding Network DevicesBig picture: how internet comes to our home or office Before learning devices, see full flow. Internet ↓ Modem ↓ Router ↓ Switch ↓ Laptop / Mobile / Server Each device has its own role.Let’s understand one by one. What is a Modem? Mo...Feb 1·3 min read
network-blog.hashnode.devHow DNS Resolution WorksWhat is DNS DNS means Domain Name System.DNS is like phonebook of internet. Humans remember names like: google.com facebook.com But computers understand only numbers like: 142.250.182.14 So DNS job is simple:convert website name into IP address...Feb 1·3 min read
network-blog.hashnode.devGetting Started with cURLWhat is a server and why we talk to it First basic thing.A server is just another computer on internet.This computer stores websites, data, APIs, images, everything. When we open a website in browser, we are actually talking to a server.We send reque...Feb 1·3 min read
network-blog.hashnode.devDNS Record Types ExplainedHow does a browser know where a website lives? When I type a website like example.com,my browser somehow finds the correct server. But computer does not understand names.Computer understands numbers (IP addresses). So question is:How name becomes num...Feb 1·3 min read
html-and-css-blog.hashnode.devCSS Selectors 101: Targeting Elements with PrecisionWhy CSS selectors are needed When I write CSS, browser does not know where to apply style.CSS selectors are used to select HTML elements and style them. Without selectors: CSS is useless browser is confused So selector = who should get the style ...Feb 1·3 min read