Recent Posts

VB.NET Is Not Verbose — Your Code Is

VB.NET has a reputation for verbosity, but that's a library design problem, not a language problem. With the right abstractions — and a little cross-pollination from JavaScript and Python — it can be as concise and declarative as anything else.


Extending FastAPI for Dynamic Routing

FastAPI's routing assumes every path is known at startup. But what if your URLs unfold dynamically — tenant slugs, project lookups, type-dependent branching? I built a small package to handle this with a new return type called Deferred