Common Caching Pitfalls
We all know and love caching, right? It makes all of our complex algorithms and expensive database or filesystem lookups seem so fast and simple. But there are downsides to caching. For example, how…
C# Overview
We all know and love caching, right? It makes all of our complex algorithms and expensive database or filesystem lookups seem so fast and simple. But there are downsides to caching. For example, how…
ℹ️ OIDC = OpenID Connect The problem This story starts with a dual bug report. When users submit a form, their input is sometimes lost. After a user logs in, they sometimes get the following error…
If you are maintaining or developing an API, you need to make sure it is versioned. This ensures that any (breaking) change you need to make does not force parties that use your API to make changes…
If you want to implement the Mediator pattern in C# you could of course implement the mediator yourself. Another option is to use a standard library for this, a popular choice with us is MediatR…
Buckaroo offers a simple solution for implementing iDeal payments on your website. In order to make use of the Buckaroo implementation, we need to write some code and apply configurations inside the…