bhandarisudip.com.npHow to Deploy a Django App with PostgreSQL on cPanel: A Beginner's GuideDeploying a Django application on cPanel shared hosting may look confusing at first, especially when PostgreSQL and Python virtual environments are involved.This guide walks you through each step slowly and clearly, assuming you are a beginner. We’ll...Jan 22·3 min read
bhandarisudip.com.npEasy Steps to Create a Maui Blazor Hybrid App Using VS CodeThis guide explains how to set up and run .NET MAUI apps on Windows and macOS using Visual Studio Code. Windows Setup Install Visual Studio Code Install .NET SDK 9+ Install the .NET MAUI extension in VS Code Install the MAUI workload: dotnet wo...Dec 6, 2025·1 min read
bhandarisudip.com.npDiscover Digital Patro: Your Ultimate Nepali Calendar AppDigital Patro is an innovative, ad-free नेपाली पात्रो(nepali calendar/ nepali patro) app designed for everyone who wants to stay connected with नेपाली मिति(nepali dates), festivals, cultural events, and more. Whether you're planning daily activitie...Oct 31, 2025·2 min read
bhandarisudip.com.npHow to Create a WebSocket in ASP.NET Using .NET 8Add WebSocket Middleware In .NET 8, middleware configuration can stay outside Program.cs if you organize it into dedicated classes or handlers. Let’s write a WebSocketHandler class. 📄 WebSocketHandler.cs using System.Net.WebSockets; using System.Tex...May 9, 2025·2 min read
bhandarisudip.com.npHow to Upload Images Using ASP.NET Web APIStep 1: Create a CreateProductDto First, create a DTO (Data Transfer Object) that represents the product data along with the images: public class CreateProductDto { public string Name { get; set; } public decimal Price { get; set; } publi...Apr 27, 2025·2 min read