NSNiklas Schilliinmrnikbobjeff.hashnode.dev·1d ago · 19 min readArgmin in C#: from 3 to 36 billion elements per secondWhat porting Algorithmica's "Argmin" case study to .NET taught us about SIMD, RyuJIT and Zen 4, and why it ended in a patch for TensorPrimitives.IndexOfMin. What this is about Argmin is the simplest 00
CDCoding Dropletsincodingdroplets.com·22h ago · 13 min readHow to Build Incremental RAG Indexing in .NET: A Real-World WalkthroughIncremental RAG indexing is what separates a demo knowledge base from one you can still trust six months later. The first ingestion run is easy: read every document, chunk it, embed it, write it to a 00
CSConverge Solutioninconvergesol.hashnode.dev·1d ago · 11 min readEF Core N+1 Queries: Why Your API Gets Slower as Data GrowsAn ASP.NET Core API can return the correct response, pass all functional tests, and still have a serious database performance problem. One common example is the N+1 query problem in Entity Framework C00
AGAmit Giriinammitt.hashnode.dev·2d ago · 6 min readData Annotations vs FluentValidation in .NET — Which to Use WhenEvery API needs validation. The title can't be empty, the rating has to be between one and ten, the email has to look like an email. Simple rules. What isn't simple is where to put them. I've used thr00
PPilaloinfile-and-code.hashnode.dev·2d ago · 4 min readConverting HTML to PDF in C#: A Step-by-Step GuideGenerating PDF documents from HTML content is a frequent requirement in many business applications, from generating invoices to creating reports. This article presents a practical, code-focused approa00
USunity source codeinunitysourcecode.hashnode.dev·3d ago · 12 min readWhat Actually Makes a Survival-Crafting Unity Source Code Worth Buying (A Technical Breakdown)Survival-crafting games look deceptively cozy from a trailer: chop a tree, build a fire, craft a tool, watch a hunger bar tick down. But if you've ever tried building one from an empty Unity project, 00
USunity source codeinunitysourcecode.hashnode.dev·3d ago · 12 min readWhat Actually Makes a Survival-Crafting Unity Source Code Worth Buying (A Technical Breakdown)Survival-crafting games look deceptively cozy from a trailer: chop a tree, build a fire, craft a tool, watch a hunger bar tick down. But if you've ever tried building one from an empty Unity project, 00
CDCoding Dropletsincodingdroplets.com·4d ago · 10 min readHow to Unit Test IChatClient in .NET Without Calling a Real ModelThe first AI endpoint you ship is exciting. The first AI endpoint you try to unit test IChatClient against is where the excitement stops. Your test suite suddenly needs an API key, costs money per run00
USunity source codeinunitysourcecode.hashnode.dev·6d ago · 12 min readHow to Build a 3D Sorting Puzzle Game in Unity: Core Systems & Mobile OptimizationSorting and matching puzzle games occupy a strange sweet spot in mobile game design. They look almost too simple to be interesting — move an item, match a color, clear a slot — yet they consistently p22I
CDCoding Dropletsincodingdroplets.com·6d ago · 12 min readAzure OpenAI Content Filter Errors in .NET APIs: Causes and FixesThe first time an Azure OpenAI content filter error hit one of our production .NET APIs, it did not look like a content filter error at all. It looked like a flaky provider: a burst of 400 Bad Request00