Hi there 馃憢

Welcome to my technical blog! My name is Abhinaw, and I’m a software developer with over 11 years of experience in the IT industry. I created this space to share practical insights, solutions to common programming challenges, and deep dives into the technologies I’m passionate about. My articles focus primarily on .NET, JavaScript, cloud technologies, and software development best practices. Whether you’re a beginner or a seasoned developer, I hope you find valuable content that helps solve real-world problems. Feel free to explore my posts and reach out if you have any questions or suggestions for future topics! Want coding tips and deep dives sent directly to your inbox? Subscribe here.

Should You Use UseRouting() or MapGet() First?

Learn why UseRouting() must always come before MapGet() in ASP.NET Core and how the middleware order impacts your request pipeline.

September 23, 2025 路 3 min

SaaS Middleware Anti-Patterns: What Not to Do in ASP.NET Core

Bad middleware doesn鈥檛 just break requests, it breaks entire tenants. Learn the anti-patterns to avoid in your ASP.NET Core SaaS architecture and how to fix them.

September 19, 2025 路 9 min

Code Reviews That Grow Developers

TL;DR Code reviews should teach, not just catch bugs. Stop nitpicking syntax and start building autonomous developers. Focus on architectural patterns, ask guiding questions instead of giving orders, and eliminate multi-team approval bottlenecks that delay delivery. Good reviews create learning opportunities that scale your team鈥檚 expertise. Code reviews shouldn鈥檛 be about catching syntax errors or enforcing personal preferences. They鈥檙e your best tool for spreading architectural knowledge and building stronger development teams. But most teams get this wrong, creating bureaucratic bottlenecks instead of learning opportunities. ...

September 16, 2025 路 7 min

ASP.NET Core: Auth with Middleware or Filters?

Discover how using custom middleware for authentication in ASP.NET Core SaaS APIs leads to cleaner, faster, and more maintainable code compared to traditional authorization filters.

September 12, 2025 路 Last modified: September 19, 2025 路 3 min

12 SOLID Interview Questions for Experienced Developers

Master SOLID principles with real C# examples, interview questions, common pitfalls, and clean architecture tips for maintainable, testable code.

September 8, 2025 路 Last modified: September 19, 2025 路 31 min

JS Closures: Real Production Use Cases Beyond Interviews

TL;DR: Most developers only encounter closures during interview prep or basic counter examples. This post dives into how closures power real-world frontend scenarios: event listeners, encapsulation, memoization, and reactive programming. Walk away with patterns you can use today. Every JavaScript developer has seen the classic closure examples: counters that increment, multiplier functions that return other functions. These textbook cases teach the concept but leave you wondering when you鈥檇 actually reach for closures in real frontend work. ...

September 5, 2025 路 6 min

From Code Contributor to System Thinker: The Senior Developer’s Shift

A senior developer鈥檚 perspective on writing less code, focusing on architecture, mentorship, and team productivity.

August 30, 2025 路 7 min

Why Middleware Beats DI for SaaS Extension Points

In multi-tenant SaaS applications, custom middleware gives you the earliest hook in the request pipeline, even before dependency injection kicks in. Middleware runs at the very beginning of your pipeline, providing access to raw request data before any transformations occur.

August 24, 2025 路 Last modified: August 28, 2025 路 9 min

3 Signs Your Code Needs Middleware

TL;DR Repeating logic across controllers (like logging or header checks)? Move it to middleware. Modifying requests/responses in controllers? Middleware handles that cleanly and early. Your services use HttpContext? Extract that logic into middleware for cleaner, testable code. If your services are bloated or you鈥檙e duplicating logic across controllers, middleware might be the extension point you actually need. Many developers reach for filters or services first, when middleware would鈥檝e been faster, simpler, and more maintainable. ...

August 21, 2025 路 2 min

Why Constructor Injection Matters in Clean Architecture

Constructor injection is your first clean architecture decision. Learn how to write testable, decoupled ASP.NET Core code using built-in DI, scoped lifetimes, and mocking techniques.

August 18, 2025 路 Last modified: September 19, 2025 路 8 min