LINQ for beginners: pick the right methods! 2023-01-10 Last updated: 2026-03-04 5 min read CSharp LINQ is a set of methods that help developers perform operations on sets of items. There are tons of methods - do you know which is the one for you? Continue reading
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
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
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
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
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
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