Why Switching a Kubernetes PVC to RWX (and a Different Azure StorageClass) Is Harder Than It LooksMar 20, 2026·4 min read
Azure Tutorial: Building Virtual Machines and Managing Network Security GroupsMar 30, 2025·3 min read
PinnedDockerizing Django With Postgres, NGINX, and Gunicorn (PART-1)We will be discussing about the Dockerizing Django project for the deploymentApr 23, 2023·5 min read
Python Unit Testing: MockingMocking means replacing real objects with pretend ones during testing, especially in unit tests. This technique lets to create different scenarios without using real resources, which saves time and effort. The Mock() object from the unittest.mock cla...Jun 19, 2024·3 min read
N+1 problem in Django?In this blog, we'll delve into the N+1 problem in Django, explore its causes and implications, and provide practical solutions to optimize your application's performance. Let's get started! What is the N+1 Problem? The N+1 problem occurs when an appl...Jun 2, 2023·3 min read
Cheat sheet of important Docker commandsBefore jumping into the topic, If you're new to Docker and looking for effective ways to manage Docker containers, you're in luck! Docker commands provide a solution to help you achieve just that. Docker is a widely used platform that enables develop...May 20, 2023·3 min read
Dockerizing Django With Postgres, NGINX, and Gunicorn (PART-2)We will be discussing about Dockerizing your Django project for the deployment.May 1, 2023·7 min read
Install PostgreSQL and pgadmin4 on your Ubuntu EasilySo, Recently I had to rebuild my operating system, and I was having trouble setting up my development environment, which includes PostgreSQL, on the new installation. As you may know, I work a lot with PostgreSQL, and I needed to install it before I ...Jan 7, 2023·3 min read
Install Tailwind CSS in Nuxt.js 3Hey Guys, Today We'll look at installing and configuring Tailwind CSS in Nuxt.js 3. Server-side rendering (SSR) and static site generation work well with Nuxtjs (SSG). For speedier performance and a better developer experience, Nuxt 3 has been re-arc...Dec 26, 2022·3 min read