C# Tip: Improve memory allocation by initializing collection size
Sometimes just a minor change can affect performance. Here’s a simple trick: initialize your collections by specifying the initial size! Continue readingFeature Flags 101: A Guide for ASP.NET Core Developers
Feature Flags are a technique that allows you to control the visibility and functionality of features in your software without changing the code. They enable you to experiment with new features, perform gradual rollouts, and revert changes quickly if needed. Continue readingDavide's Code and Architecture Notes - CAP Theorem: it's not just «Pick two»
«Consistency, Availability, and Partition tolerance. Pick two». Is it really THAT simple? Let’s learn a bit more about the CAP theorem. Continue readingAdvanced Integration Tests for .NET 7 API with WebApplicationFactory and NUnit
Integration Tests are incredibly useful: a few Integration Tests are often more useful than lots of Unit Tests. Let’s learn some advanced capabilities ofWebApplicationFactory
.
Continue reading