The AI N+1 Problem in .NETMost .NET developers recognise an N+1 database query when they see one. AI features can recreate the same failure at a more expensive boundary. An application loads 300 support tickets, documents or pSep 8, 2026·19 min read·124
Cutting AI Prompt Tokens by Turning Text into Images with .NETSending text to an AI model as an image sounds like it should cost more. The application has to render the text, encode a PNG and send a much larger payload over the network. Yet for the right kind ofJul 18, 2026·12 min read·190
Building SSRF-Resistant HTTP Clients in .NETApplications increasingly accept URLs from outside their own code. A webhook tester calls an endpoint supplied by a customer. An image service downloads a remote avatar. A document pipeline retrieves Jul 17, 2026·12 min read·176
What If Your Pull Request Had a Blast Radius Score?Some pull requests look harmless until they reach production. Then someone notices the change touched authentication, a shared response contract, an EF Core migration, and one production config value Jul 7, 2026·18 min read·133
Building a tiny IRC client in C#IRC is old, plain, and surprisingly useful as a teaching tool. You open a TCP connection. You send text commands. The server sends text lines back. The connection stays open. If the server sends PING,Jun 24, 2026·12 min read·182
The Most Dangerous Line in a .NET Background WorkerEvery production system has a few lines of code that look too simple to question.In a .NET background worker, one of them is usually this: while (true) { await DoWorkAsync(); } It looks ok. It loJun 20, 2026·12 min read·411
The Enum That Became a Production IncidentEnums are one of those C# features that feel too small to deserve much architectural attention. You use them for status. You use them for type. You use them for source, category, reason, mode, provideJun 18, 2026·17 min read·199