REST Servers in Go: Part 5 – middleware This is the fifth post in a series about writing REST servers in Go. Here…
Life of an HTTP request in a Go server Go is a common and well-suited tool for writing HTTP servers. This post discusses the…
Using the Google search #API in C# If you are looking to automate some SEO / SERP processing in Google, it’s not…
#ZIP file decompression from first principles in C# TL;DR; here is the Github repo: https://github.com/infiniteloopltd/Zip First off, if you’re just looking to unzip…
High performance extraction of unstructured text from a #PDF in C# There are a myriad of tools that allow the extraction of text from a PDF,…
Updating a Windows Service via a batch file If you’ve written a Windows service, and you need to update it, perhaps with a…
Generate video from collection of images in C# #FFMPEG You want to create a dynamic video, from a collection of images – Here is…
Searching available community pharmacies for #COVID vaccinations in Northern Ireland using C# In northern Ireland, the over 40s should now go through the community pharmacy network to…
Securing multiple Auth0 APIs in ASP.NET Core using OAuth Bearer tokens This article shows a strategy for security multiple APIs which have different authorization requirements but…
Securing Blazor Web assembly using Cookies and Auth0 The article shows how an ASP.NET Core Blazor web assembly UI hosted in an ASP.NET…
Secure an Angular SPA and an ASP.NET Core API using Auth0 This article shows how to implement an Angular single page application with an ASP.NET Core…
Securing OAuth Bearer tokens from multiple Identity Providers in an ASP.NET Core API This article shows how to secure and use different APIs in an ASP.NET Core API…
Present and Verify Verifiable Credentials in ASP.NET Core using Decentralized Identities and MATTR This article shows how use verifiable credentials stored on a digital wallet to verify a…
Create an OIDC credential Issuer with MATTR and ASP.NET Core This article shows how to create and issue verifiable credentials using MATTR and an ASP.NET…
Securing an ASP.NET Core app and web API using windows authentication This post shows how an ASP.NET Core Web API and an ASP.NET Core Razor page…
Sign-in using multiple clients or tenants in ASP.NET Core and Azure AD The article shows how an ASP.NET Core application could implement a sign in and a…
Integration Testing for ASP.NET Core using EF Core Cosmos with XUnit and Azure DevOps This article shows how integration tests could be implemented for an ASP.NET Core application which…
Verify vaccination data using Zero Knowledge Proofs with ASP.NET Core and MATTR This article shows how Zero Knowledge Proofs ZKP verifiable credentials can be used to verify…
I Wish I Knew About Debugger.Launch Earlier It was only a couple of years ago, that I learned about Debugger.Launch(), and since…
PriorityQueue In .NET/C# It’s somewhat surprising in the 20 years .NET (And C#) has been out, there hasn’t…