My Journey to Becoming a Software Engineer
CAREER 12/14/2025

My Journey to Becoming a Software Engineer

From a curious student in Dhaka to a Software Engineer building enterprise cloud platforms - this is my story of late nights, small victories, and never giving up on the dream.

Read More
Git Commit Amend
TUTORIAL 12/11/2024

Git Commit Amend: "Oops, I missed something"

Ever committed and then realized you forgot a file or made a typo in the message? Learn how to use git commit --amend to fix your most recent commit without creating unnecessary clutter.

Read More
Git Stash
TUTORIAL 12/02/2024

Git Stash: Honestly, a Total Life Saver

Ever been in the middle of a feature when you suddenly need to switch branches? Git stash is your superhero - it temporarily stores your unfinished changes so you can work on something else.

Read More
Object Creation in Python, Java, and C#
TECHNOLOGY 05/26/2025

How Object Creation Works in Python, Java, and C#

Ever wondered how objects are actually created in different programming languages? Explore the fundamental differences in object instantiation across Python, Java, and C#.

Read More
JWT Complete Guide
TECHNOLOGY 05/15/2025

JWT Complete Guide: Structure, Security & Best Practices

Everything you need to know about JSON Web Tokens - from basic structure to security best practices, common mistakes to avoid, and real-world use cases.

Read More
File Transfer from React to Django
TECHNOLOGY 05/13/2025

How Files Transfer from React Frontend to Django Backend

Ever wondered what happens when you upload a PDF from React to Django? Learn the complete flow from file selection to server processing with simple analogies.

Read More
Django Library API with Celery & Redis
TECHNOLOGY 05/08/2025

Django Library API with Celery & Redis

Building a robust Library Management API using Django REST Framework, with Celery for background task processing and Redis for high-performance caching.

Read More
Django Serializers vs .NET DTOs
TECHNOLOGY 05/02/2025

From Models to APIs: Serializers in Django vs DTOs in .NET

Django's Serializers and .NET's DTOs serve the same purpose - controlling what data goes in and out of your APIs. Learn how these patterns translate between ecosystems.

Read More
Django ORM vs .NET LINQ
TECHNOLOGY 04/29/2025

Django ORM vs .NET LINQ: More Than Just Syntax

LINQ is much more than just an ORM syntax - it's a querying language built into C#. Learn the key differences between Django ORM and .NET LINQ.

Read More