🕖︎ - 2025-02-14

GNU Emacs, Debian GNU/Linux, Linux, Gnus, X.Org, Postfix, GHC, PostgreSQL, OpenSSH, Firefox, Apache, ejabberd, Dovecot, git, GnuPG, XMonad, jabber.el, Magit, rdiff-backup, LaTeX, Gimp, VLC, Syncthing, Sakura, chrony, Fail2ban, WeeWX, DejaVu fonts, ripgrep, lirc, MPD Flameshot, lots of GNU, the list goes on and on - thanks everybody!
🕗︎ - 2024-11-15
A couple of days ago I used the details
HTML element in anger for the first time, yay.
Recently I learned about the datalist
element as well - both quite useful.
So, what other elements and attributes have been added to HTML during the past 10-15 odd years I looked away and didn't read the specifications?
🕛︎ - 2024-11-03

I caught the third in a row sold out Trentemøller concert in Pumpehuset, Copenhagen last night.
I was not that familiar with the music, but it was nevertheless an enjoyable concert - if you get the chance, go see them!
.... and don't let the name of the new album "Dreamweaver" fool you - it's not about Macromedia and late 90s shoddy web-technology, as far as I can tell!
🕦︎ - 2024-11-03

The keynote presentation at RacketCon 14 was given by Hal Abelson and Gerald Sussman of "Structure and Interpretation of Computer Programs"-fame - often the book is just referred to as "SICP", which turned 40 this year.
(I'm sort of ashamed to admit that I never read it, but hey.)
During the questions after the keynote speeches I picked up a set of quotes about Emacs from Sussman:
"If I was starting again, I'm gonna say something nasty, if I was starting again, making the software for SICM, I would probably be using Julia."
"Which is basically a Scheme, with a syntax. I hate syntax, I'd rather use Lisp syntax. But I'd be using Julia, since it's even better at numerical chrunching on very, very large scales."

"Racket is a wonderful thing, but it has one problem for me. It doesn't play well with my most famous and favourite interface in the world, which is Emacs."
"By contrast, I know it does have an Emacs interface, but when I have tried it, it doesn't play well with Emacs. And I live in Emacs. I hardly touch a computer to do anything else than Emacs."
"The real thing I love is Emacs."

The lectures were given remotely, which gave a couple of fun moments reminding me of the Statler & Waldorf Muppet Show videos.
The video ends with a nice surprise gift for the two presenters and authors - check it out - with Abelson telling the surprise party that they are in the middle of a lecture, but do come in and say hello to everybody at the conference.
🕘︎ - 2024-10-11
I have configured PostgreSQL to log queries that take more than some-number of milliseconds, so I can notice which queries are slow and perhaps do something about it.
Recently I have been noticing - in the window I have running tail -F
on various logfiles (using autossh to my various servers, and piping it through ccze for colours) - that sometimes I had queries logged taking around 650 ms.
Last Sunday I finally decided to look at it. It was a whopper of a query coming from illuminant-nntp, when Gnus was fetching an article from illuminant.timeline
by number.
The article numbers are generated by the query, so this had become slower as the number of toots in Illuminant's database has grown. Looking closer at the query, I realized that the sub-query finding the toots matching the article number also did a lot of the processing to get the information to return. Which is sub-optimal (haha) because it was doing that for all toots up until the article number that was actually needed.
So I fought the SQL for a while, changing the sub-query to only fetch/do as much as necessary to get the object id matching the wanted article number, and then moving all the formatting and information gathering "outside", to the top-query that now only had the one object and accompanying activities to get and convert to an article.
With that change the queries went from around 650 ms to around 200-220 ms. A nice improvement.
What's interesting is that I did not feel opening an article in illuminant.timeline in Gnus was slow - I guess the rule of thumb of a second is pretty good. But after making the improvement, opening articles feels snappy - so the preemptive optimization was a boon. And hopefully it will be a while until I have to figure out some other optimization to drop the query time again.
Yay monitoring!
🕢︎ - 2024-10-07

After taking most of August off the annoying Denial of Service
"attack" hit me again (previously: March, May, June), culminating in so many requests yesterday that
my feeble home router was starting to fall over.
So I threw the towel in the ring and moved the DNS for asjo.org to
domæne.shop.

I really like hosting things myself. I think it healthy for me and the
internet in general that people do so - instead of having megacorps
silo everything.
And more often than not, it's really not that complicated. Not even
for email, regardless of what people always say.
So I did not like giving up, but I was growing tired of trying to
block /8
networks and still having my servers receiving several
thousand packets a second.

For looking up asjo.org, for crying out loud: the zone is 36 lines
long:
virgil:/etc/bind$ wc -l db.asjoorg
36 db.asjoorg
Anyway, now it takes several minutes for each of my three DNS-servers
to receive 1000 DNS packets.

It is no 3.8 Tbps DDoS
attack - I don't even know my case is actually an attack, but annoying
nonetheless.
I still have no idea why, who, or what the hell. I guess it is just
one of those things.
🕓︎ - 2024-10-03
My home server has frozen a handful of times since summer, around the
time I switched to a new NVMe.
I was expecting the problem to be the kernel, because it got upgraded
at the same time (yes, wrong move), so I downgraded the kernel package
and went on summer vacation.
When it has frozen there has been nothing in the log file, and the
machine has still been responding to network packets, but access via
ssh has not been possible.
The previous time it froze I happened to have a terminal open, but no
commands could be run, as if the disk disappeared.
When it froze this morning, where I was lucky that I saw some log
2024-10-03T07:51:32.710948+02:00 virgil kernel: [2481125.908216] nvme nvme0: controller is down; will reset: CSTS=0xffffffff, PCI_STATUS=0xffff
2024-10-03T07:51:32.710967+02:00 virgil kernel: [2481125.908240] nvme nvme0: Does your device have a faulty power saving mode enabled?
2024-10-03T07:51:32.710972+02:00 virgil kernel: [2481125.908254] nvme nvme0: Try "nvme_core.default_ps_max_latency_us=0 pcie_aspm=off pcie_port_pm=off" and report a bug
2024-10-03T07:51:32.758943+02:00 virgil kernel: [2481125.957166] nvme0n1: I/O Cmd(0x2) @ LBA 6366795000, 32 blocks, I/O Error (sct 0x3 / sc 0x71)
2024-10-03T07:51:32.758964+02:00 virgil kernel: [2481125.957192] blk_print_req_error: 1 callbacks suppressed
2024-10-03T07:51:32.758969+02:00 virgil kernel: [2481125.957195] I/O error, dev nvme0n1, sector 6366795000 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 2
2024-10-03T07:51:32.780690+02:00 virgil kernel: [2481125.980262] nvme 0000:06:00.0: Unable to change power state from D3cold to D0, device inaccessible
2024-10-03T07:51:32.780706+02:00 virgil kernel: [2481125.980486] nvme nvme0: Removing after probe failure status: -19
which makes more sense than the arbitrary kernel guess.
So I added those parameters to GRUB_CMDLINE_LINUX_DEFAULT
in
/etc/default/grub
, ran update-grub
, and rebooted the machine.
Hopefully that fixes the problem.
This is with 6.1.106-3 on Debian 12 (bookworm) and a Samsung SSD 990
PRO 4TB.