How to customize Swagger UI with custom CSS in .NET 7 2022-12-16 4 min read Blog 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
PriorityQueues on .NET 7 and C# 11 2022-12-12 5 min read Blog 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
Book Review: C# 11 and .NET 7 - Modern Cross-Platform Development Fundamentals 2022-12-01 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
C# Tip: Raise synchronous events using Timer (and not a While loop) 2022-11-29 2 min read CSharp Tips When you need to fire synchronous events, don’t use a while(true) loop: use a Timer! Continue reading
How to create an API Gateway using Azure API Management 2022-11-22 5 min read Blog In a microservices architecture, an API Gateway hides your real endpoints. We will create one using Azure API Management Continue reading
Clean Code Tip: Methods should have a coherent level of abstraction 2022-11-15 2 min read Clean Code Tips Don’t let the reader get lost in the code details! Continue reading
How to deploy .NET APIs on Azure using GitHub actions 2022-11-08 7 min read Blog Building APIs with .NET is easy. Deploying them on Azure is easy too, with GitHub Actions! Continue reading