14th of September, 2020 · Updated on 14th of April, 2021 · Tagged with dev
My Blog Just Got Faster: Cloudflare Workers and AVIF Support
Did I mention that this website is fast? Oh yeah, I did, multiple times. It's never fast enough, so today I go one step further by adding support for the new AVIF image format to the blog. The results were suprising. More »
21st of August, 2020 · Tagged with oss, business
Launching a Side Project Backed by Github Sponsors
Yesterday we launched analysis-tools.dev. It's a project about comparing static analysis tools. What's best about the project is that it's completely open-source and backed by sponsors. If you like to do the same, keep reading! More »
2nd of July, 2020 · Updated on 11th of October, 2021 · Tagged with culture, dev
What Happened To Programming In The 2010s?
How has programming changed in the 2010s? You'd roughly need a decade to talk about all of it, but let me pick out some of the highlights. More »
21st of June, 2020 · Updated on 21st of June, 2023 · Tagged with rust
Tips for Faster Rust Compile Times
When it comes to runtime performance, Rust is one of the fastest guns in the west. 🔫 It is on par with the likes of C and C++ and sometimes even surpasses those. Compile times, however? That’s another story. Below is a list of tips and tricks on how to make your Rust project compile faster today. Th… More »
29th of May, 2020 · Tagged with dev
Gravity
Here's a test to check your age: Do you still remember that funny JavaScript gravity effect, which Google used on their homepage ten years ago? More »
24th of April, 2020 · Updated on 3rd of February, 2025 · Tagged with culture
Hacker Folklore
Some computer terms have a surprising legacy. Many of them are derived from long-obsolete technologies. This post tries to dust off the exciting history of some of these terms that we use every day but aren’t quite sure about their origins. Let’s jump right in! Bike-Shed… More »
4th of February, 2020 · Tagged with oss
A Timelapse of Timelapse
Timelapse is a little open-source screen recorder for macOS. It takes a screenshot every second and creates a movie in the end. To celebrate its unlikely 1.0 release today, I present here a timelapse of this project's journey. It just took ten years to get here. More »
17th of October, 2019 · Updated on 15th of February, 2022 · Tagged with dev, oss, rust
A Tiny, Static, Full-Text Search Engine using Rust and WebAssembly
I wrote a basic search module that you can add to a static website. It’s very lightweight (50kB-100kB gzipped) and works with Hugo, Zola, and Jekyll. Only searching for entire words is supported. Try the search box on the left for a demo. The code is on Github. Static site generators are magica… More »
21st of March, 2019 · Tagged with business, culture, dev, oss
Maybe You Don't Need Kubernetes
Kubernetes is the 800-pound gorilla of container orchestration. It powers some of the biggest deployments worldwide, but it comes with a price tag... More »
2nd of December, 2018 · Tagged with dev, rust
What Is Rust Doing Behind the Curtains?
Rust allows for a lot of syntactic sugar, that makes it a pleasure to write. It is sometimes hard, however, to look behind the curtain and see what the compiler is really doing with our code. More »