Introducing TOON: An Optimized Serialization Format for AI and LLM WorkloadsHey there, readers! I’m NIZZOLA, a developer and AI enthusiast. Today, I’m excited to share a project I built specifically to optimize…Nov 11Nov 11
Running Testcontainers on Github Actions When Making Pull RequestsAfter the article about Testcontainers (if you missed it, here’s the link), a question arises: why don’t we validate our tests when…Sep 24Sep 24
Use Testcontainers for Repository Integration Testing in .NETTesting the implementation of a repository by validating the saving of elements in the database is not a very easy task, and working with…Sep 22Sep 22
Sorting with GUID? Meet the New UUID v7 Now Available in .NET 9When we use Guid to define unique non-numeric keys in .NET with the Guid.NewGuid command, which generates a UUID v4, there’s an issue…Sep 19Sep 19
Had trouble mocking ILogger in unit tests? Use FakeLoggerFor those who write unit tests using NSubstitute and .NET, it’s quite common to face challenges when testing log messages, since the Logger…Apr 4Apr 4
Simplify Dependency Injection to Services and RepositoriesHow many times are we writing code and come across that old implementation of dependency injection in the application, defining interface x…Mar 28A response icon1Mar 28A response icon1
Resolving “Cannot load library libgssapi_krb5.so.2” in .NET 8 Linux ContainersWhen developing .NET applications in a containerized environment, you might encounter the error “Cannot load library libgssapi_krb5.so.2”…Nov 6, 2024Nov 6, 2024
Creating and Running a .NET API in DockerIn this post, I will demonstrate something quite simple that will greatly facilitate the development and testing of .NET applications on…Sep 15, 2024Sep 15, 2024
How to solve: JsonException: A possible object cycle was detected.Who has never encountered this error when returning a response from the Entity Framework directly to an API and gets this message:Dec 15, 2023A response icon4Dec 15, 2023A response icon4
How to use dependency injection in a Console App with .NET elegantlyMany times we need to construct console applications who need to use Dependency Injection, but console template from .NET is very simple…Sep 15, 2023Sep 15, 2023