soundhunte.rs is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.
This server runs the snac software and there is no automatic sign-up process.
KISS isn't just a design principle — it's already built into your system.
A comprehensive review of every coreutils command, with examples and honest opinions. The lobste.rs discussion is also worth reading.
Article: https://ratfactor.com/slackware/pkgblog/coreutils
Discussion: https://lobste.rs/s/xqf5ex/coreutils_comprehensive_review_2023
Speaking of which: I’ve been back on Debian for a few days now. In the meantime, there have been a few updates—maybe they fixed the keyboard issue? I don’t know. But in any case, it’s working fine now without any problems or keys getting stuck.
I was bad... so damn bad! I went against my own principles! Out of curiosity, I broke my sacred vow NEVER to use something like artificial intelligence. Especially not for meaningless stuff, like most people use it for.
But then... I was looking for a new profile picture for myself.... and then... I got curious to see if all this artificial intelligence hype had any substance... if this AI is really as good in certain areas as many claim... so I tried out an image AI for the first time... and this is what came out: me as a UNIX Viking... I’m ashamed! So, judge me for my weakness!
But on the other hand: it does kind of look cool, doesn’t it?
fish 4.6.0: Shell mit besserer Emoji-Darstellung & Bash-Pipes
Die interaktive Shell fish 4.6.0 bringt verbesserte Emoji-Darstellung, neue Prompt-Optionen und eine Bash-kompatible Pipe-Syntax.
https://git.sr.ht/~r1w1s1/code-notes/blob/main/notes/Using_NVI_in_2026.txt
👉 Dinit, the init system systemd should have been // Unixdigest
「 Besides the fact that the real motivation behind systemd was "political" more than anything, systemd has evolved into a behemoth of a monster with it's tentacles so deeply entrenched into the Linux environment that only few software products haven't been affected by it 」
https://unixdigest.com/articles/dinit-the-init-system-systemd-should-have-been.html
nvi 5184 KB2.6x less RSS neatvi wins without syntax highlighting even in the picture. The difference is likely nvi's Berkeley DB recovery layer allocating upfront regardless of use.
neatvi 1960 KB
New series: FreeBSD Foundationals
Part 1 is about Jails - specifically VNET Jails. What epair interfaces actually are (virtual ethernet cables), how bridges tie them together, why the host is basically a router for your jails, and what devfs rulesets control.
Covers the full lifecycle from jail.conf through pf firewalling with NAT/RDR for IPv4 and direct routing for IPv6. Plus the gotchas that'll cost you hours if nobody warns you.
Not a beginner tutorial, hardcore details. The useful middle.
#Unix #FreeBSD #Networking #Jails #DevOps #SelfHosting #Sysadmin
I even found and reported a small -snap bug in evilwm while testing 🙂
Fresh from the BSDCan program committee - submissions are coming in, but we can still take more!
If you have not made your submission, you have until Saturday, January 17th to get yours in!
Go to https://www.bsdcan.org/2026/papers.html to orient yourself, then submit via the submission link.
BSDCan is in Ottawa, with tutorials June 17-18, 2026, talks June 19-20, 2026
#bsdcan #conference #bsd #unix #development #freebsd #netbsd #openbsd #sysadmin #devops #freesoftware #libresoftware @bsdcan
Example wrapper I’m using:
#!/bin/shnvi protects the session; RCS protects the decision.
#
# safeedit — RCS-backed safe editing with nvi
#set -e
if [ $# -ne 1 ]; then
echo "usage: safeedit <file>" >&2
exit 1
fiFILE="$1"
if [ ! -f "$FILE" ]; then
echo "safeedit: file not found: $FILE" >&2
exit 1
fiDIR=$(dirname "$FILE")
BASE=$(basename "$FILE")
RCS_DIR="$DIR/RCS"
RCS_FILE="$RCS_DIR/$BASE,v"mkdir -p "$RCS_DIR"
chmod 700 "$RCS_DIR"if [ ! -f "$RCS_FILE" ]; then
ci -l "$FILE"
else
ci -u "$FILE" || true
co -l "$FILE"
fiexec nvi "$FILE"
Original post by @mwl@snac.bsd.cafe: https://io.mwl.io/@mwl/115814245521209100