susiltiwari.com.npAzure Tutorial: Building Virtual Machines and Managing Network Security GroupsThis is the continue of https://hashnode.com/post/cm8v7ntxi000209kw2xpm2tp7 To help you further understand Azure networking, let’s walk through a practical example of creating Virtual Machines (VMs), Network Security Groups (NSGs), and configuring ne...Mar 30, 2025·3 min read
susiltiwari.com.npUnderstanding Key Concepts in Azure NetworkingMicrosoft Azure offers Azure Virtual Network (VNet) as its core networking service, enabling users to create private, secure, and scalable cloud networks. Whether you're setting up cloud-only applications or hybrid architectures, understanding VNets ...Mar 30, 2025·5 min read
susiltiwari.com.npKubernetes Init ContainersWhat is an Init Container? As Kubernetes pods can have more than one container.Init containers are specialized containers that run before app containers in a Kubernetes Pod. Unlike regular containers, init containers must complete successfully before...Mar 2, 2025·4 min read
susiltiwari.com.npPython 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
susiltiwari.com.npN+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