by Joshua Harms
Implementing custom sorting algorithms is easy in C#, but not as straightforward in F#. This article covers the implementation of two custom sorting algorithms, including the "sort by X and then by Y" function we all wish F# had.
by Joshua Harms
Sometimes it can be difficult to translate SQL concepts over to document-style databases like CouchDB. In this post you'll learn how to select only documents with a specific set of property values while leaving out all other documents.
by Joshua Harms
Ever forget to set up data volumes for a Docker container, and then wondered how the heck you're supposed to back up the data inside? It's as easy as running a docker exec and a docker cp command!
by Joshua Harms
A quick post showing you how to get up and running with Dapper in F#, including functions for getting, listing, deleting, updating and creating an object.
by Joshua Harms
A short post on the fastest way to find the smallest difference between any two numbers in a list or array of numbers. Presented in C#, TypeScript, F# and Dart.