Linux Under the Hood: A Filesystem InvestigationMost beginners interact with Linux through commands, but the real power of Linux lies deeper in its filesystem. During my exploration, I focused on understanding how Linux exposes its internal workingApr 22, 2026·4 min read
JavaScript Operators Explained: Arithmetic, Comparison, Logical & AssignmentIntroduction: Why Operators Matter When we work with values, we need to manipulate them on basis of some condition. To manipulate the values we use operators. Operators allow us to perform calculationMar 15, 2026·4 min read
Object-Oriented Programming (OOP) in JavaScript Explained for BeginnersUnderstanding Object-Oriented Programming (OOP) in JavaScript When programs become larger, managing variables and functions separately can become messy. Object-Oriented Programming (OOP) helps us orgaMar 15, 2026·4 min read
JavaScript Objects Explained: A Beginner-Friendly Guide with ExamplesIntroduction: Why Objects Matter Imagine you have to store data for 2 different people, and for each person, there are 4 pieces of information you need to store. Approach 1 - Brute Force Approach You Mar 14, 2026·6 min read
Understanding Node.js Architecture: V8, libuv, and Node Bindings ExplainedHow does Node.js work? This is the most common question that an interviewer asks in a JavaScript interview. The answer lies in the Node.js architecture, which involves mainly V8 engine libuv Node.jMar 14, 2026·6 min read
NodeList vs HTMLCollection: A Small DOM Detail That Causes Big BugsThe Bug That Started It All I was working with DOM elements, and I wanted to fetch all the li items from the list. I used querySelectorAll(), which returned a NodeList of length 3, and then I appendedMar 13, 2026·3 min read
Why Your 'this' Fails in JavaScript Interviews - call(), apply(), bind() ExplainedIntroduction You have completed your graduation, and now you want to step into the Software Development industry. Your interview is tomorrow, and you are revising topics that the interviewer might askMar 9, 2026·11 min read