PPrakashinblog.prakashtsx.me00Linux File System Exploration Looking Inside the System1d ago Β· 6 min read Β· Introduction When we use Linux, we mostly interact with it through commands. But those commands are only interfaces. The real system exists underneath, inside the filesystem. Linux follows a powerful Join discussion
PPrakashinblog.prakashtsx.me00Spread vs Rest Operators in JavaScript3d ago Β· 4 min read Β· JavaScript has evolved a lot over the years, and with ES6 came two incredibly useful features: the spread (...) and rest (...) operators. At first glance, they look identicalβbut they serve very diffeJoin discussion
PPrakashinblog.prakashtsx.me00JavaScript Modules : Import and Export3d ago Β· 8 min read Β· So you've been writing JavaScript for a while now. Maybe you started with a single script tag in your HTML, and everything was fine β until it wasn't. Your index.js became 800 lines long. You had funcJoin discussion
PPrakashinblog.prakashtsx.me00Understanding Objects in JavaScriptMar 29 Β· 10 min read Β· If you've been learning JavaScript, you've likely used Arrays to store lists of data. But what happens when you need to describe something more complex β like a person, a car, or a laptop? An array liJoin discussion
PPrakashinblog.prakashtsx.me00How Node.js Actually WorksMar 10 Β· 6 min read Β· When people start learning Node.js, they often hear statements like: Node.js is single-threaded Node.js is non-blocking Node.js uses an Event Loop But what actually happens inside Node.js when weJoin discussion