How to customize Swagger UI with custom CSS in .NET 7 2022-12-16 Last updated: 2024-11-25 4 min read dotnet Exposing Swagger UI is a good way to help developers consume your APIs. But don’t be boring: customize your UI with some fancy CSS Continue reading Share it on
PriorityQueues on .NET 7 and C# 11 2022-12-12 Last updated: 2026-03-04 5 min read dotnet A PriorityQueue represents a collection of items that have a value and a priority. Now this data structure is built-in in dotNET! Continue reading Share it on
Book Review: C# 11 and .NET 7 - Modern Cross-Platform Development Fundamentals 2022-12-01 Last updated: 2026-03-04 2 min read Book Are you interested in C# 11 and .NET 7 - Modern Cross-Platform Development Fundamentals by Mark J. Price? Here’s my review! Continue reading Share it on
C# Tip: Raise synchronous events using Timer (and not a While loop) 2022-11-29 Last updated: 2024-11-25 2 min read CSharp When you need to fire synchronous events, don’t use a while(true) loop: use a Timer! Continue reading Share it on
How to create an API Gateway using Azure API Management 2022-11-22 Last updated: 2026-03-04 5 min read Azure API Gateway Azure API Management In a microservices architecture, an API Gateway hides your real endpoints. We will create one using Azure API Management Continue reading Share it on
Clean Code Tip: Methods should have a coherent level of abstraction 2022-11-15 Last updated: 2023-10-04 2 min read Clean Code Don’t let the reader get lost in the code details! Continue reading Share it on
How to deploy .NET APIs on Azure using GitHub actions 2022-11-08 Last updated: 2026-03-04 7 min read dotnet Azure GitHub Building APIs with .NET is easy. Deploying them on Azure is easy too, with GitHub Actions! Continue reading Share it on