Modeling exceptions is hard. On the surface, it seems easy. Everyone knows what an exception is, right? But when you think deeper about it, there are...
I dig string interpolation in C#. It is concise and easy to use. And even though JetBrains Rider is known for making developers super productive with...
It took me a few tries to finally call an HTTP endpoint using F#.I've ended up with this code: let result = async { let client = new...
I'm a big proponent of using delegates instead of interfaces as described here. Recently I've found out that it works wonderfully with the partial...
using SAFE Dojo · Recently I've finally dug a bit deeper into the SAFE stack.One of the most exciting resources to start with full-stack F# applications...
Regularly I want to await a few tasks and get their result. Surprisingly, there is no obvious way to do that. Task.WhenAll can be helpful, as we see...