Plurrrr

Wed 29 Sep 2021

Adventures in Looping

I was recently building a Slack bot in Haskell. The core of the Slack integration was a never-ending loop that read messages from a web socket and performed actions based on the message. But how should I go about looping forever in Haskell?

Source: Adventures in Looping, an article by Drew Olson.

On Multi-Platform Docker images

Until recently, Faktory only supported the x86_64 platform. With the rise of the Apple Silicon chip and AWS Graviton, it was obvious that I would need to roll out ARM64 support soon. This week I spent several days fighting Docker’s support for multi-platform images and wanted to document what I learned.

Source: On Multi-Platform Docker images, an article by Mike Perham.