Writing.

Essays on software architecture, performance optimization, and systems engineering.

#1Minute#2Minute#2Minutes#Browser APIs#Business#Closures#Concept#concurrency#css#Design Patterns#eBPF#Express.js#Factory Functions#GraphQL#gRPC#Halaqti#HIBP API#Hoisting#html#Inheritance#JavaScript#JWT#K-Anonymity#Lexical Environment#LMS#Loop#Low-Code#Modules#mongodb#Mongoose#MVC#Next.js#nextjs#Node.js#nodejs#OneMinute#Performance#Platform#Prototype#Prototype Chain#Publishing#PWA#Queue#React#reactjs#rust#Stack#systems#tech#Tokio#Variables#XposedOrNot API

July 21, 2026 2 min read

2Minutes: Prototype Chain In JavaScript

We’re going to discuss the mechanics that runs almost everything in JavaScript.

Read more arrow_right_alt
July 20, 2026 2 min read

2Minutes: JavaScript Modules (ES6 Standard)

We discuss JavaScript Modules, how a function or variable can be accessed outside its file, and what rules govern this

Read more arrow_right_alt
July 19, 2026 2 min read

2Minutes: Lexical Environment In JavaScript

In this article, we are going to discuss why variables are accessed in one context, but not the other.

Read more arrow_right_alt
July 18, 2026 1 min read

2Minutes: Factory Functions In JavaScript

Have you ever wondered what Factory Functions are. Take 2 minutes and know how

Read more arrow_right_alt
July 16, 2026 2 min read

2Minutes: JavaScript Closures

Do you know how counters, timers, or event listeners actually work in JavaScript. Take 2 minutes to know how

Read more arrow_right_alt
July 14, 2026 2 min read

2Minutes: Variable Hoisting In JavaScript (let, and const keyword)

Ever wondered how let and const behaves when get hoisted, and the behavior of function expressions they state. Take 2 minutes and know how

Read more arrow_right_alt
July 14, 2026 1 min read

2Minutes: Variable Hoisting in JavaScript (var keyword)

Most developers know var prints undefined before its declaration. Far fewer know why. It all comes down to what JavaScript does before your code starts executing. I will explain why with simple examples in this article.

Read more arrow_right_alt
July 13, 2026 2 min read

2Minutes: Function Hoisting In JavaScript

Function Hoisting occurs when a function is called before its declaration appears in the source code. JavaScript hoists function declarations to the top of their scope during the creation phase of execution, making them available to call before they are defined in the file. Just imagine it as a pre-step where JavaScript interpreter moves all function declarations to the top of their scopre before executing the code.

Read more arrow_right_alt
July 1, 2026 2 min read

The Rise of PWAs: A New Era of Web Apps

While web applications offer several advantages, including low cost, maintenance ease, and cross-platforming, they also have some drawbacks just like everything around us, some drawbacks are limited functionality, performance issues, limited access to device hardware, and dependence on connectivity. And here is where PWAs come in with their unique features to help address some of these drawbacks.

Read more arrow_right_alt
July 1, 2026 2 min read

The Ideal Way To Loop Through An Array In JavaScript

Modern JavaScript provides many ways to iterate or loop through your data. We don’t have one fits all iteration tool, so in case of very large arrays use traditional for loop. In case of medium arrays and need for clean code use while loop. In case of supporting functional programming and optimized time forEach is ideal. In case of small arrays and for fast iteration use for…of loop.”

Read more arrow_right_alt