SStepOneinsteponeit.hashnode.dev·11h ago · 9 min readAutoMapper in .NET: When You May Not Need ItAutoMapper can remove repetitive member-to-member assignments, but it also moves mapping behavior away from ordinary C# code. That trade affects navigation, static analysis, debugging, performance, tr00
SStepOneinsteponeit.hashnode.dev·1d 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
SStepOneinsteponeit.hashnode.dev·2d 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