SStepOneinsteponeit.hashnode.dev·8h ago · 4 min readTwo Biggest MediatR Mistakes MediatR is useful at an application boundary: a caller sends one request, and one handler owns that use case. Two common shortcuts weaken that model—sending more requests from inside a handler and com00
GMGiorgi Mgebrishviliinmgebrov.hashnode.dev·13h ago · 7 min readVideoFloppy: Five Years, Ten Users, One DollarI built it because something I loved disappeared. Five years later it has a handful of users, one paying customer, and it taught me more than any tutorial. In 2017 I was preparing for IELTS, and someb00
SStepOneinsteponeit.hashnode.dev·1d ago · 10 min readNeural Network from Scratch in C#Building a neural network without a framework is a useful way to understand forward propagation, backpropagation, activation functions, and weight updates as one working system. This article implement00
JJNBridgeinjnbridge.hashnode.dev·1d ago · 4 min readC# Lucene Options: Run Java Lucene from .NET or Use Lucene.NET?If you work in .NET long enough, you eventually run into a Java library that is too useful to ignore. Apache Lucene is a classic example: it is the engine behind a lot of serious search systems, and i00
MZMaab Zakourinmaab.hashnode.dev·3d ago · 7 min readCloser look at Clean Architecture in .NET & AIThe foundations of a solid .NET system are Clean Architecture, OOP, and design patterns. Every .NET engineer knows how expensive design mistakes become later; Models change, SDKs change. The question 00
PKPatrick Kearnsindotnetdigest.com·3d ago · 10 min readYour BackgroundService Has 2 Lifetimes, but Only One CancellationTokenBackgroundService gives every worker the same deceptively simple entry point: protected override Task ExecuteAsync(CancellationToken stopToken) It encourages an equally simple implementation. Pass st00
ZHZero Heartbeatinzaris.hashnode.dev·3d ago · 2 min readAny Language, One Store: How Zaris Speaks the Redis ProtocolZaris is a distributed key/value store built for .NET, with its own binary protocol and native .NET clients. With 2.0.0, every Zaris node can also expose a Redis-protocol (RESP2) listener — so existin00
Ssyncfusioninsyncfusion-blogs.hashnode.dev·3d ago · 9 min readSyncfusion Word Library vs. Aspose.Words: Which .NET Word Library Is Better for Your Application?TL;DR: Not all .NET Word libraries deliver the same experience when it comes to document automation, conversion accuracy, and performance at scale. In this comparison, we evaluate Syncfusion Word Libr00
Qqodorsinqodors.hashnode.dev·3d ago · 7 min readStill Using Task.Run() in ASP.NET Core? Fix Your C# Async Await the Right WayYour ASP.NET Core API is slow, so you add Task.Run() and expect things to get better. It may look like a quick fix, but Task.Run() does not make every operation faster. In many cases, it only moves th00
JJNBridgeinjnbridge.hashnode.dev·4d ago · 5 min readFive Integration Paths for a Mixed Java/.NET PortfolioIf you work in a mixed Java/.NET estate, the hardest question is rarely “which platform is better?” The harder question is which boundary deserves a bridge, which one should be a service contract, and00