Kuba Ciechowski
Kuba's space

Kuba's space

Follow
Follow
home
Tag

Functional Programming

#functional-programming

More content

Read more stories on Hashnode


Articles with this tag

Http call using F# and HttpClient

Oct 24, 20211 min read

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...

Http call using F# and HttpClient

Partial application using delegates in C#

Sep 25, 20212 min read

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...

Partial application using delegates in C#

Starting with SAFE Stack

Aug 25, 20211 min read

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...

Starting with SAFE Stack

Domain modeling in F#

Apr 22, 20212 min read

How often do you see an email represented as a string? Or a currency field being a decimal type? Did you ever consider that something is wrong with...

Domain modeling in F#

Abstract current time using function in C#

Apr 9, 20212 min read

I've seen many ways to deal with date and time. Hiding it behind an interface, a static class with a single property, ambient context, you name it. I...

Abstract current time using function in C#

Using collections with MemberData attribute in F#

Feb 21, 20212 min read

Working with collections of custom types in xUnit always felt clumsy. To pass such a set of data, you had either create a property or a whole...

Using collections with MemberData attribute in F#