Backend

How to Create Custom Template Tags in Django?

January 27, 2025

How to Create Custom Template Tags in Django?

If you have worked with Django, you must have used templates. Templates in Django are simply HTML files that can receive data from the views and displ ...

Backend Communication Design Patterns

June 19, 2025

Backend Communication Design Patterns

This guide explains how different components in a backend system talk to each other using patterns like Request-Response, Synchronous vs Asynchronous ...

How to Set Up a Dockerized Development Environment for Django with PostgreSQL and pgAdmin

January 27, 2025

How to Set Up a Dockerized Development Environment for Django with PostgreSQL and pgAdmin

Setting up a development environment can feel tricky, especially when handling multiple tools like a backend, database, and management systems. Docker ...

How to create a custom filter in Django Admin/CMS

January 27, 2025

How to create a custom filter in Django Admin/CMS

It is literally amazing that Django provides so many built-in filters. Imagine how much time the Django admin panel saves us. Moreover, its filtration ...

How to create a sub label with Gmail REST API

December 13, 2024 | 2 mins

How to create a sub label with Gmail API

Working with Gmail API labels can feel hectic. In this guide, I'll explain how to manage hierarchical labels in Gmail using its API. By the end, you’l ...

How to disable admin editing in the Django Admin Panel

January 27, 2025

How to disable admin editing in the Django Admin Panel

Not gonna lie, the Django Admin Panel is super helpful for managing models, data, and users directly from a user-friendly interface. You don’t have to ...

Express.js Server Not Responding? Here’s What You Can Do.

May 9, 2023

Express.js Server Not Responding? Here’s What You Can Do.

If you’re new to Node.js and have installed Express.js to build a basic server, you might encounter a problem where the server doesn’t start properly ...

Integrate Clerk Auth In Django Rest Framework using a token from the frontend

December 5, 2024

Integrate Clerk Auth In Django Rest Framework using a token from the frontend

In this blog, I’ll walk you through how to integrate Clerk with Django Rest Framework using a token passed from your front end. I assume you’ve alread ...

How to Handle Complex CSV Imports in Django with django-import-export

November 27, 2024

How to Handle Complex CSV Imports in Django with django-import-export

In this blog, I’m going to share how I tackled importing CSV data into my Django project using the django-import-export package. ...