F#: Function Signature Feb 05, 2020 I always forget how to write Haskell-like function signatures in F#. type AddOne = int -> int let addOne : AddOne = fun i -> i + 1 You can think of AddOne as an interface in OO-languages, for functions. ...
Blog: Update to Hugo Jan 05, 2020 I’ve replaced the static blogging engine of this blog. The previous blogging engine (Octopress) hasn’t been updated in a while, so I switched to Hugo. Old links should still work. ...
Review: Hands-On Domain-Driven Design with .NET Core by Alexey Zimarev Jun 25, 2019 I have updated this post because the author took the time to respond to my review. TL;DR The book Hands-On Domain-Driven-Design with .NET Core by Alexey Zimarev illustrates the pros & cons of different CQRS/ES persistency options in the . ...
F# Linux: mixed feelings Nov 29, 2018 I have been trying to learn F# with .NET Core and Linux for some time. My experience so far are mixed. Let me explain what I mean by “mixed”: First off all: It is great that we can use . ...
IntelliJ and Gnome keyboard shortcut conflict: Ctrl Alt s Aug 21, 2018 I am currenty experimenting with Jetbrains Rider under Linux. Sticking to the default window manager GNOME for my linux distro (Arch Linux), I ran into some problems with conflicting keyboard shortcuts. ...