SGSiddhant Gorteintechwithsiddhant.hashnode.devยทMay 10 ยท 9 min readLinux File System Hunting: Exploring Linux Beyond Commands ๐ง๐Most people start learning Linux through commands: ls cd pwd mkdir But after exploring a real Linux environment deeply, I realized something much more fascinating: Linux exposes almost its entire in00
SGSiddhant Gorteintechwithsiddhant.hashnode.devยทMay 6 ยท 5 min readThe Node.js Event Loop Explained๐ Introduction One of the biggest questions beginners have about Node.js is: ๐ โIf Node.js is single-threaded, how does it handle so many requests?โ The answer lies in a powerful concept: The Event00
SGSiddhant Gorteintechwithsiddhant.hashnode.devยทMay 6 ยท 5 min readBlocking vs Non-Blocking Code in Node.js โก๐ Introduction When building backend applications, performance matters a lot. ๐ How fast your server responds ๐ How many users it can handle ๐ How efficiently it processes requests A big reason No00
SGSiddhant Gorteintechwithsiddhant.hashnode.devยทMay 6 ยท 5 min readREST API Design Made Simple with Express.js ๐๐ Introduction Modern web applications are all about communication. ๐ Your frontend (React, mobile app, etc.) talks to your backend ๐ Backend sends data back This communication happens through some00
SGSiddhant Gorteintechwithsiddhant.hashnode.devยทMay 6 ยท 4 min readMap and Set in JavaScript ๐๏ธโก๐ Introduction In JavaScript, we usually use: Arrays for lists Objects for key-value pairs But these traditional structures have limitations. ๐ Duplicate values ๐ Limited key flexibility ๐ Une00