TKTushar Kumar Jaiswalinwebdevcohort2026.hashnode.dev00Getting Started with cURL2d ago · 5 min read · What is cURL (in very simple terms) cURL (Client URL) is a command-line tool used to talk with server directly from your terminal. cURL is used to send and receive data from a server using a URL. Join discussion
TKTushar Kumar Jaiswalinwebdevcohort2026.hashnode.dev00TCP Working: 3-Way Handshake & Reliable CommunicationMar 21 · 6 min read · What is TCP and why it is needed Transmission Control Protocol (TCP) is a protocol that allows devices to send data from one system to another system reliably, in correct order, without forget any litJoin discussion
TKTushar Kumar Jaiswalinwebdevcohort2026.hashnode.dev00TCP vs UDP: When to Use What, and How TCP Relates to HTTPMar 19 · 7 min read · What are TCP and UDP (at a very high level) At a very high level, both of them are just ways to deliver payload (data) over the internet (Transport Layer Protocol). The real difference is what they reJoin discussion
TKTushar Kumar Jaiswalinwebdevcohort2026.hashnode.dev00DNS Record Types ExplainedMar 16 · 8 min read · What DNS is DNS is often described as “ phonebook of the internet ”. It’s primary job is to convert human readable domain names like - google.com to machine readable IP addresses like - 142.250.183.14Join discussion
TKTushar Kumar Jaiswalinwebdevcohort2026.hashnode.dev00JavaScript Operators: The Basics You Need to KnowMar 15 · 5 min read · JavaScript Operators Explained (Beginner Friendly) If variables are boxes that store data, then operators are the actions you perform on that data. For example: let a = 10; let b = 5; let result = a +Join discussion