AI agents, auth, caching, and clean code
A varied .NET lineup covering AI agents, JWT and OAuth, Redis caching, distributed locks, Blazor, and event sourcing with real-world examples.
Jasen's top three picks
- 1 Clean C# Code: Best Practices, Smart Patterns & Real-World Examples in .NET Core
medium.com
A solid reminder that “works on my machine” is not a production strategy.
- 2 Building AI Agents with .NET & AutoGen in 2026
medium.com
AI agents, MCP, and chatbot guidance show how quickly the .NET AI stack is maturing.
- 3 ASP.NET Core + JWT + OAuth 2.0 — Authentication Done Right in 2026
medium.com
JWT, OAuth, and DI are evergreen topics when teams need secure, maintainable APIs.
Editor's note
I pulled together a mixed issue again: AI agents, authentication, caching, architecture, and a bit of clean-code philosophy. The distributed locks piece and the duplicate-orders war story stood out to me because they get past theory and into the messy parts teams actually ship. I also liked the Blazor cross-platform post for showing how far one codebase can go without resorting to a forest of #if directives.
Today's articles
Clean C# Code: Best Practices, Smart Patterns & Real-World Examples in .NET Core
medium.com
Writing code that works is just the beginning. Writing code that lasts — that your team can read, test, extend, and debug at 2 AM — is the…
Topics: Clean Architecture C#
Read articleBuilding AI Agents with .NET & AutoGen in 2026
medium.com
“In 2024 we talked about AI assistants. In 2025 we shipped AI copilots. In 2026, the teams winning are shipping autonomous AI agents that…
Read articleASP.NET Core + JWT + OAuth 2.0 — Authentication Done Right in 2026
medium.com
Most .NET auth tutorials show you what works in a demo. This one shows you what survives production — with token refresh, role-based…
Topics: ASP.NET Core Authentication OAuth
Read articleGenerative AI for Beginners in .NET 10: From Curiosity to Real Applications
blog.gopenai.com
A few years ago, learning AI meant diving into complex theory, research papers, and tools that often felt disconnected from real-world… Continue reading on GoPenAI »
Read articleI Added Resilience to My .NET App. It Started Sending Duplicate Orders.
medium.com
A production war story that every .NET developer needs to read — from junior to architect.
Topics: Design Patterns Performance
Read articleImplementing Distributed Locks in .NET
medium.com
A practical approach to coordinating work across multiple instances — without adding unnecessary infrastructure
Topics: Design Patterns Performance
Read articleEvent Sourcing in .NET 9: A Real-World Banking Example
medium.com
Summary
Topics: .NET 9 Event Sourcing
Read articleClean Code Rules That Don’t Fit Modern C#
medium.com
Hello! Today we’re going to talk about something a bit controversial — Clean Code.
Topics: Clean Architecture C#
Read articleHow I use the same Blazor code for WASM, Windows, Linux, macOS, iOS, Android without a single #if
medium.com
OpenHabitTracker is a free, open source app for taking Markdown notes, planning tasks, and tracking habits. It runs on Windows, Linux…
Read articleInterface vs Abstract Class in C# — What They Really Mean [Part 3]
medium.com
Part 3: ⚽ Sports Betting Platforms
Topics: C# Design Patterns
Read articleHow to set up MCP in C# .NET — step-by-step guide
medium.com
Nowadays, it is significantly useful to allow AI agents access to your data. In fact, this is exactly what makes AI agents so powerful. If…
Read articleIn-memory Cache vs Distributed Cache: When to Choose Redis?
c-sharpcorner.com
Discover the best caching strategy for your app! Compare in-memory vs. distributed caches like Redis. Learn when Redis is essential for scalable, high-performance applications.
Topics: Performance Redis
Read articleWhat is Dependency Injection in ASP.NET Core?
c-sharpcorner.com
Unlock the power of Dependency Injection (DI) in ASP.NET Core! Learn how DI promotes loose coupling, improves testability, and builds scalable applications. Master DI today!
Topics: ASP.NET Core Authentication
Read articleHow to Build a Chatbot using OpenAI API and .NET
c-sharpcorner.com
Learn how to build a chatbot using OpenAI API and .NET! This step-by-step guide covers everything from setup to advanced features, perfect for developers. Create intelligent, conversational apps with ...
Read articleHow to Deploy a .NET Application on AWS EC2 Step by Step
c-sharpcorner.com
Deploy .NET apps on AWS EC2! This guide simplifies the process, from instance setup to Nginx configuration and HTTPS. Perfect for scalable web applications.
Read articleHow to Implement JWT Authentication in ASP.NET Core Step by Step
c-sharpcorner.com
Secure your ASP.NET Core APIs with JWT! This step-by-step guide covers implementation, best practices, and common pitfalls for robust authentication. Build secure, scalable web apps.
Topics: ASP.NET Core Authentication JWT
Read articleComplete Guide to HTML Helpers in ASP.NET MVC
c-sharpcorner.com
Master ASP.NET MVC development with HTML Helpers! This guide covers all essential helpers, from form creation to validation, with clear examples and best practices. Simplify your Razor views!
Topics: ASP.NET Core ASP.NET MVC
Read article