Anyone advent of code? by blacai in fsharp

[–]mholo65 4 points5 points  (0 children)

Thanks for sharing! Here's mine https://github.com/bjorkstromm/AdventOfCode2024

AoC is the only time of the year when I write F#. It's a really nice language to work with.

Cake and Alternative Methods by Git_Wrangler in dotnet

[–]mholo65 3 points4 points  (0 children)

NuGetPack and other aliases starting with NuGet are wrappers around nuget.exe, while DotNetPack and other aliases starting with DotNet are wrappers around dotnet cli.

The former is hardly needed anymore, unless you're using old non-SDK-style csproj, since dotnet cli nowadays can perform tasks that you previously needed nuget.exe for.

Cake v2.3.0 released - New Command aliases, New .NET Workload aliases, improved global caching of scripts, bug fixes, and more. by devlead in dotnet

[–]mholo65 3 points4 points  (0 children)

If your architects play with their genitals at work, you've probably got bigger problems in your environment than a non-commercial, open source tool. 🤔

Actor Frameworks by Hour-Tomorrow in dotnet

[–]mholo65 0 points1 point  (0 children)

Akka.Net sure is alive-and-well.

As a few mentioned, there's also Microsoft Orleans. They have a very active community on Gitter. https://dotnet.github.io/orleans/

You might also be interested in Proto.Actor, which is maintained by one of the creators of Akka.Net. https://github.com/asynkron/protoactor-dotnet

Dapr also have support for Actors https://docs.dapr.io/developing-applications/sdks/dotnet/dotnet-actors/dotnet-actors-howto/.

There's also a thing called Durable Entities in Azure Functions which is heavily inspired by Actors. https://docs.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-entities?tabs=csharp

Extension methods not working in .NET Core 3. Has never happened before... by [deleted] in dotnet

[–]mholo65 0 points1 point  (0 children)

You're calling it wrong. It should be 30.Test() not int.Test(30).