by Enrico Bencivenga | Aug 31, 2021 | Blog
In the last article about Actor Model, we have shown how to implement this pattern by using Akka Actors. Today we will see how to use Coyote, a framework implementing the Actor Model pattern but mainly used for testing. Deterministic programs are easy to test because...
by Francesco Vastarella | Jun 29, 2021 | Blog
In the previous article, we analyzed the Positional Records that are the real innovation of this new functionality of C# 9. We discovered that behind the scenes a record is nothing but a class with specific default behaviors, including the immutability and equality of...
by Antonio Venditti | Apr 13, 2021 | Blog
One of the goals of the milestone we are managing for one of our customers is the migration from .NET Core 3.1 to .NET 5. Let’s see together the steps we have taken and analyze the corrective measures adopted to mitigate some breaking changes. The project in...
by Francesco Vastarella | Mar 23, 2021 | Blog
In a previous article, I have talked about the probable innovations that would be introduced with the new version of the Microsoft language C# 9. Among these, the one that seems to be the most interesting for many developers is the introduction of Records. A Record...
by Enrico Bencivenga | Mar 10, 2021 | Blog
One of our clients working in the gaming field has commissioned us a platform for managing a virtual football championship, with both team and individual rankings. After analyzing the problem, we wonder how to create a platform that would keep updated rankings and...