I believe the best way to master a concept is to explain it to someone else. I’m a Full Stack Developer navigating the ecosystems of JavaScript and Python, building everything from responsive frontends to robust backends. I use this space to document my learning journey, break down complex topics, and share practical solutions to the bugs I encounter. Let's learn in public together!
I am available for collaborations, learning in public and other technical stuff like DevOps, development, designing.
Aug 17, 2025 · 4 min read · Have you ever wanted to build your own Command Line Interface (CLI) tool? In this Blog, I’ll create a simple CLI app in Node.js that counts the number of words in a file. Along the way, we’ll explore how Node.js handles command-line arguments with pr...
Join discussion
Jun 4, 2025 · 2 min read · In Python, a tuple is a built-in data structure used to store a collection of items. Unlike lists, tuples are immutable, meaning once created, their contents cannot be changed. Tuples are great when you want to ensure your data stays constant through...
Join discussion
Jun 4, 2025 · 3 min read · A dictionary in Python is a collection of key-value pairs. It is unordered, mutable, and indexed by keys — which can be strings, numbers, or even tuples (if immutable). Let’s begin exploring with the Python shell open. lang = { "c++": "easy", ...
Join discussion
Jun 3, 2025 · 3 min read · Let’s dive into one of the most commonly used data structures in Python — the List. Lists are dynamic, ordered collections that can store a mix of data types. Think of them as containers for storing multiple values in a single variable. But rather th...
Join discussion