AAnandinblog.anands.dev10Supercharging Node.js Backend Performance with Redis15h ago · 3 min read · Intro: Master production-ready caching patterns to slash API latency and scale your backend with confidence. Concept: Redis as an In-Memory Performance Layer ✅ Redis sits between your Node.js app anJoin discussion
RSRitu Soodinfile-system-of-linux.hashnode.dev00Linux File System Hunting2d ago · 6 min read · When we first learn Linux, we usually interact with commands like ls, cd, and mkdir. But after spending time exploring the file system deeply, I realized something fascinating: Linux is not just an oJoin discussion
ASAkash Sangleinlinuxfilesystemhunting.hashnode.dev00Linux File System Hunting: Dispatches from Inside the Machine3d ago · 10 min read · Most people treat the Linux filesystem as a backdrop — a place to store files. But if you know where to look, it is a living dashboard of the entire operating system. This blog is the result of huntinJoin discussion
ASAkash Sangleinunderstanding-the-this-keyword-in-javascript.hashnode.dev00Understanding the this Keyword in JavaScript3d ago · 5 min read · What Is this? In JavaScript, this is a special keyword that refers to the object that is currently calling the function. It is not fixed at the time you write the function — it is determined at the tiJoin discussion
DPDushyant Pratap Singhindushyantxcode.hashnode.dev00Destructuring in JavaScript4d ago · 4 min read · What Destructing means pulling out a values out of arrays /object and storing them in variable in a shorter way for array without destructuring const arr = [10, 20, 30]; const a = arr[0]; const b = aJoin discussion
MIMd Intekhab Alaminunderstanding-javascriptt.hashnode.dev00String Polyfills and Common Interview Methods in JavaScript4d ago · 3 min read · What string methods are In JavaScript string methods are built in method that is used to modify string or perform a specific task like toLowerCase() , toUpperCase() , spilt() , startsWith() , etc. LetJoin discussion
MIMd Intekhab Alaminunderstanding-javascriptt.hashnode.dev00The new Keyword in JavaScript4d ago · 3 min read · What the new keyword does The new keyword is very special keyword in JavaScript, It is also known as constructor Generally it is used with class and constructor functions to create their instanceThe nJoin discussion
PTPiyush Tiwariinpiyushtiwari88.hashnode.dev00JavaScript Promises Explained for Beginners5d ago · 4 min read · Introduction As JavaScript applications became more complex, handling asynchronous operations using callbacks started to create problems—especially nested code, poor readability, and difficult error hJoin discussion
PTPiyush Tiwariinpiyushtiwari88.hashnode.dev00Async/Await in JavaScript: Writing Cleaner Asynchronous CodeApr 17 · 4 min read · Introduction Asynchronous programming is a core part of JavaScript, allowing applications to perform tasks like API calls, file handling, and timers without blocking execution. Before async/await, devJoin discussion
DSDinesh Swamiinspreadinjs.hashnode.dev00Error Handling in JavaScript: Try, Catch, Finally – Why Your Code Should Never Crash in ProductionApr 16 · 7 min read · so hey everyone :- Last month I was building a simple dashboard for my portfolio project. Everything was working fine in development… until I deployed it. One wrong API response and the whole page wenJoin discussion