.NET

Still on .NET 8? Here’s What .NET 10 Means for Your Business

Introduction .NET 8 has been the go-to platform for building and running modern business applications. It offers strong performance, long-term support, a mature ecosystem, and excellent capabilities for web, cloud, and enterprise workloads. But with .NET 10 now available as the next Long-Term Support (LTS) release, organizations running on .NET 8 have an important decision […]

Sarfaraz Ahmed
Sarfaraz Ahmed
Read

.NET

Strangler Fig Pattern for Legacy .NET Apps

Introduction Someone in leadership says “we need to move to .NET 8” or “let’s get this thing into Azure.” Cool. But when you ask what that actually means — which apps, which order, what happens to production while you’re mid-migration — you often get a vague answer and a timeline that makes no sense. I’ve […]

.NET

Building Intelligent .NET Applications with Microsoft Foundry: Beyond Basic Chatbot Integration

Introduction Artificial Intelligence is rapidly becoming a key component of modern enterprise applications, enabling businesses to automate workflows, understand documents, perform intelligent searches, and deliver personalized user experiences. However, building production-ready AI solutions involves much more than integrating an AI model—it requires seamless integration with existing .NET architectures while ensuring security, scalability, reliability, and governance. […]

.NET

Automating ASP.NET Core Deployments with GitHub Actions: A Practical CI/CD Guide

🚀 As developers, we’ve all experienced the frustration of manual deployments. You finish a feature, run tests locally, create a build, copy files to a server, and hope everything works in production. The process is time-consuming, repetitive, and prone to mistakes. 🔄 This is where CI/CD comes in. CI/CD (Continuous Integration and Continuous Deployment) helps […]

.NET

Who Picks the Next Step – You or the LLM?

AUGUST 2026 · ~7 MIN READ · .NET · AGENTIC AI Who Picks the Next Step – You or the LLM? I built two agent apps in .NET before I understood they weren’t the same thing. This is what I learned – and how you can build either one without rebuilding halfway through. Key takeaway […]

.NET

🐇 RabbitMQTest — A Simple RabbitMQ Demo in C#

The RabbitMQTest repository is a C# project that demonstrates how to use RabbitMQ for message queuing. It brings the producer–consumer pattern to life, showing how a producer streams messages and a consumer processes them asynchronously — perfect for developers exploring event-driven communication. 🔗 Repository link: https://github.com/kandarpgautam/RabbitMQTest 🎯 From Basics to Brilliance Brings the producer–consumer pattern […]

.NET

The Token Diet: Cutting Waste in Cursor and ChatGPT

Introduction Every AI tool we use daily, Cursor for coding, ChatGPT for everything else, runs on the same underlying economy: tokens. Every word it sends back costs tokens, and every word already in the conversation gets re-read, and re-billed, on every reply after that. Most sessions burn through far more of that budget than they […]

.NET

The Performance Imperative: Why Load Testing Is Non-Negotiable

We’ve all been there. You spend weeks building a feature, everything looks polished in staging, and then launch day arrives—and the app buckles under real traffic. Suddenly, that slick UI doesn’t matter. Nothing matters when the page won’t load. Load testing is how you find out your system is about to break before your users […]

.NET

Learn Onion Architecture as a Complete Beginner and Implement as an Architect

The Problem Story Picture this. It is a Tuesday afternoon. Your product manager says: “We just need to add an email field. Should be quick, right?” You open the codebase. The User entity imports SqlConnection. Business logic calls the database in the same method. No interfaces. No tests. Everything wired to everything else. You add […]