With 6.0 one of our web checks started failing with `regexp_exec() failed with error -8` when looking for a required string. This basically means “maximum recursion exceeded” (so something went into a loop). Turns out the site in question had a duplicated `</head>` tag which makes the HTML invalid.

So apparently something changed with the RegEx check and valid HTML is now required as well 🧐

Today I got called out on the internet for wearing a mask because I go as Beko _Pharm_ 😷.

I laughed hard, shared this insight with my peer group and watched their amused responses trickle in. Now that I’m found out I can probably tell you all.

Here writes the Big “beko” Pharm (or the B.B.P. – someone add me to Wikipedia already!). And what my Murican friends probably don’t know: “beko” is not only a [legit] name with all sorts of fun meanings (according to the interwebz) but also the brand of an electronics company mostly known for their washing machines. Imagine how happy I was about that when I found out!

Anyway, @RobinSohn@chaos.social seized the opportunity and created a highly professional new profile picture for me – generously released as CC-0 – a photo featuring a washing machine and an ampulla typically used for medicine.

And I love every bit of it – especially the “ProSmartInverter” 🧠

So there you have it. Buy masks and washing machines. For every sale on one of those items I get 0 dot 00 and zero 💵

Make me rich! 🤑

Random trivia: I added the “Pharm” to not be mistaken with e.g. said electronics company – how the hell was I supposed to know that a pandemic would be next on the agenda???

Your Website is Useless (kiriska.com)
Most artist websites are bad. They either fail at their purpose, don’t have a purpose, or their only purpose is to point visitors to more active social media. It is impossible to follow or keep up many artists’ work if you don’t want to look at Twitter or Instagram (nevermind that there’s al...

Heh, “nobody does this any more” is far fetched but yes, basically this.

Hat tip Jan Boddeze

Oj Western tech bros, remember when we complained about outsourcing? Well, we came full circle. Got contacted for a job opportunity from an Eastern Systems House.

(This post may contain traces of sarcasm or irony. No kitten were hurt.)

So apparently the URL for changed. Sadly the new one makes the same old mistake by sending the _wrong_ Content-Type making my reader trying to parse it as JSON feed. Proxy rewrite it is again *sigh

For nginx this could look like this:

location /fds-nina-feed {
    proxy_pass https://warnung.bund.de/api31/mowas/rss/082370000000.rss;
    proxy_set_header Accept "application/rss+xml;q=0.9,image/webp,*/*;q=0.8";
    proxy_hide_header Content-Type;
    add_header Content-Type "application/rss+xml; charset=utf-8";
}

Find more broken feeds at https://warnung.bund.de/meldungen

Was ist eine Webmention und wie nutze ich sie in WordPress? by hagengrafhagengraf (blog.novatrend.ch)
Gerade im World Wide Web ist die Verlinkung von Inhalten eines der stärksten Features. Auch heute noch ist bei Suchmaschinen die Menge an Links, die auf eine Website zeigen einer der wichtigsten Parameter, der darüber Auskunft gibt, wie beliebt diese Website ist. Wenn du einen Link auf eine andere...

Prima. Wir brauchen mehr von solchen Artikeln 👏 Webmentions können natürlich noch viel mehr. So taugen sie auch dafür Brücken in andere Netzwerke zu schlagen – ein Feature welches ich gerne und oft nutze 😀

Been wondering for weeks why needed that much CPU and “lost” the sinks on occasion. Turns out that the media-session was started twice due to a leftover from my fiddlings in /etc/pipewire/pipewire.conf. Two different pids in journal should have given this away. Thanks Peter for not pulling a here https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/1969#note_1205730 😀