Contact Me

My Latest Post

Using Authenticated Nuget Feeds from WSL

Mar 21, 2025 • 2 min read

So, you have a dotnet project that you used to develop on Windows. And now you want to see how it’ll work on Linux via WSL. Just type dotnet run and that’s it, right? Yes, but no. In case you have a Nuget feed that uses authentication (e.g. at work) you’ll need to work around it for a bit.

Keep reading →

Building Reliable Systems From Unreliable Parts

Oct 13, 2024 • 6 min read

Service-oriented architecture is a great architectural style, but it comes at a price. The more (micro)services you have, the more remote requests you'll have to send across them to have a working system. The more requests you make, the more failures you get. But don't panic yet! Even though you can't avoid failed requests, you can deal with them.

Keep reading →