last_updated: 2026-04-23

26-04#

TIL: dateutil.relativedelta(day=1)#

The following gets you the first day of this month:

from dateutil.relativedelta import relativedelta

context_today() + relativedelta(day=1)

The Age of the Harness#

Is there still need for (Linux) distributions when software becomes more fluid? If I were to let my agents run rampant on my machine (which I wont), then it would be easy to install different releases from different places. Also: static binding (rust, go) means less dependencies and less complexity, further alleviating the need for distros. What is the element of operation we think about then? Policy and “harnesses” seem to be the current trend. But we have seen where this goes: couch SELinux cough. I believe we will see new aggregate units of software deployment emerge in the near future. Think back before Docker: It was package or box. Then we got containers, but to do something useful, they need to work in concert (they are processes with some sparkles after all), so every tutorial deployment nowadays is a docker-compose.yaml file with commends and lots of configuration docs. This is the zoom level I am talking about here.

As an afterthought: Smalltalk. Those who know know [1].

TL;DR: RTFM FTW!#

Thinking stuff like this heading happens when you spend too much time on the internet. It’s true though.