NOTES
Short writing on what I'm building, leading and believing.
Not essays. Not threads. Just notes from inside the work, written as I figure things out.
Browse by topic: Agentic AILeadershipField notes
LATEST
The Weird Claude Code Error That Ate My Afternoon (and How I Fixed It)
Today, while I was deep in the middle of handing off some work between Claude Code sessions, I got this weird error out of nowhere:...
Read →Using Theme to supercharge React Projects : A Quick Guide
Let’s talk theme files—the secret sauce to keep your React project’s styling clean, scalable, and, well, just plain fun. Imagine this: you’re neck-deep in a...
Read →Git strategy for different projects
Different organization have their own software products and engineering practices to support the development. Having a good repository management is key to having a great...
Read →Advance Javascript : Lazy Loading
In my previous articles I explained optimization patterns such as deboucing and throttling, in this article let’s do a deep dive into lazy loading ,...
Read →Advance Javascript: Throttling
In my previous article I went through a performance optimization strategy called debouncing, in this article let’s go through an effective technique to manage the...
Read →Advance Javascript: Debouncing
When writing applications in javascript, we rarely consider performance, however as the user base or application usage increases performance becomes a huge bottleneck for growth....
Read →Authentication Middleware with JWT in Node.js
In any website or web application, ensuring that users are who they claim to be and protecting sensitive data from unauthorized access is crucial ....
Read →The Power of WebSockets and Socket.io in Real-time Applications
In the age of real-time applications, our ability to provide instant updates to users is a significant advantage. Traditional HTTP protocols are not designed for...
Read →About Node.js Worker Threads and Multithreading Misconceptions
Introduction Node.js is renowned for its single-threaded, non-blocking architecture, which is powered by the event loop and ‘libuv‘. However, this has led to a common...
Read →Understanding Redux: The Power of State Management in React Applications
State management is a crucial aspect of building scalable and maintainable applications. In React, managing state can become complex as your application grows. Redux is...
Read →