
Articles
Comparing and Sorting in Elm
Matt Furness - 15 April, 2020In this short post we will take a peek at how values can be compared and sorted in Elm, with the goal of sorting a of records using…
Classification and De-Identification of Free-Text Health Information via Machine Learning
Ben Tefay - 09 September, 2019At Stacktrace, we believe that Machine Learning (ML) will be critical to improving healthcare delivery. One area that is ripe for…
Incrementally solving the Applicative instance for Compose
Ben Tefay - 04 February, 2019Here at Stacktrace, our team have been working our way through the incredible (and incredibly challenging) Haskell data61 course . Last…
Let's learn about lenses
Brad Parker - 21 August, 2018Before we begin: in order to understand a lot of the following you’ll first need some familiarity with Haskell syntax and be somewhat…
console.log to victory!
Keiran O'Leary - 13 July, 2018A colleague of mine was investigating a peculiar bug within a separate company’s codebase. They needed to observe the bug in staging, and…
Easy JS bundles with Parcel
Rowan Hogan - 22 June, 2018I recently had the need to host a script separately from the bundle of the main app I was working on. This script was to be included on any…
Extensibility in Elixir Using Behaviours
Matt Furness - 22 May, 2018The last post dug into protocols and how they can be used to define implementations for new or different data types. This post will cover…