SKSudhanshu Kumarinbackpropdiaries.hashnode.dev·6d ago · 6 min read# I Finally *Saw* Backpropagation — By Building It From ScratchI knew the maths. Forward pass, backward pass, chain rule — I had all of it in my head. But something still felt off. Like I was carrying around a map of a city I'd never actually walked through. When00
RSRajaram Sinrajaram0203.hashnode.dev·Jun 14 · 11 min read📦 JSON — The Language APIs Speak🤔 Why JSON Matters for Every DevOps Engineer In Part 3 you saw {"id":42,"name":"Laptop","price":75000} appear in every curl response. That format is called JSON, and it is everywhere: Every REST API00
AVAtul Vishwakarmainatulcodes.hashnode.dev·May 23 · 4 min readStop Deploying Manually: How to Build Your First CI/CD Pipeline with GitHub ActionsIf you are still manually running tests and deploying your code from your local terminal, you are wasting valuable time. When I first started diving into DevOps and Cloud engineering, the concept of C50
VRVISHAL RAYinrayvishal.hashnode.dev·May 10 · 1 min readString Polyfills and Common Interview Methods in JavaScriptIn this blog we first understand what is polyfills, and then see some important interview methode in javascript00
VRVISHAL RAYinrayvishal.hashnode.dev·May 10 · 1 min readNode.js Event Loop ExplainedAsynchrouns programming is possible in browser due to event loop , and event loop is also responsible in node.js also , in this blog we explore node.js in depth.00
VRVISHAL RAYinrayvishal.hashnode.dev·May 5 · 6 min readCallbacks in JavascriptIf you’re coming from languages like C, C++, or Java, JavaScript can feel a bit strange at first. In those languages, functions are something you write and call. You pass values like numbers, strings,00
VRVISHAL RAYinrayvishal.hashnode.dev·Apr 28 · 3 min readWhy Node.js is Perfect for Building Fast and Scalable Web ApplicationsWhen building modern web applications, speed and performance are critical. Users expect fast responses, real-time updates, and smooth experiences. This is where Node.js stands out. In this blog, we’ll00
SBShashidhar BAinshashidharblog.hashnode.dev·Apr 15 · 3 min readNobody explained the data warehouse to me properly. So I'll do it with a warehouseWhen I first Googled "what is a data warehouse", I got the same definition copy-pasted across thirty different websites. All technically correct. All completely unhelpful. So here's the version I wish00
IImpeccifyinimpeccify.hashnode.dev·Mar 17 · 3 min readCSS Units Explained: PX vs REM vs EM vs VW (With Free Converter Tools)If you've ever gotten confused about when to use px vs rem vs em in CSS, you're not alone. This is one of the most common sources of confusion for developers at every level. The Quick Answer px → Fix00
RSRajaram Sinrajaram0203.hashnode.dev·Feb 22 · 7 min read🌐 Networking for Beginners: DevOpsIn this blog, we’ll understand: Hub Switch Router Gateway & Default Gateway Modem & FTTH (ONU device) Broadband & WiFi Network Interface Card (NIC) Firewall VPN VPC DHCP DNS 🧠 First: Wh00