The notebook
Writing - page 6
iotSetting up your Raspberry PI 4 - Headless mode
When I first got my Raspberry PI 4 (RPI for the rest of the article), I was so excited to get started. However, there was one problem. How do I get…
azureGetting Started with Azure Service Fabric
tl;dr - if you only want to get started quickly, just jump ahead to "Setting up a Development Environment" section I have been experimenting with…
asp.net coreSimple In-Memory Caching in .NET 10 with IMemoryCache
Cache expensive calls in a .NET 10 app with IMemoryCache, then fix the thundering herd the naive version causes by locking around the cache miss.
Updated · originally
c#Understanding Nullable Value Types in C#
I recently started picking out different topics that I like to learn more about. One such thing I wanted to have a closer look at is "Nullable value…
asp.net coreDeploying an ASP.NET Core App on Google Kubernetes Engine
I recently started playing around with the Google Cloud Platform. Since ASP.NET Core now runs on virtually any major OS, I wanted to give it a go with…
c#Demystifying Async & Await in C#
What async and await really do in C#, why a Task is not a thread, and which common misconceptions about the two cause the most trouble.
asp.net coreHow to Pre-Configure Services Before Registering with ASP.NET Core's Built-in Service Container
In ASP.NET, if you are using the default DI service container, registering services is done in the ConfigureServices(IServiceCollection) method in…