"The dog had fallen through a hole in the net of events. We leave so many of them, lacerations of negligence, when we put together cause and effect."

"The dog had fallen through a hole in the net of events. We leave so many of them, lacerations of negligence, when we put together cause and effect."
Note: Started Couch to 5k in 2016. Finally managed a sub-20 5k today. Never going that fast again.
But actually the last three months and more. God. Why did I decide to do this in quarters this year?
There are more September entries I just haven’t had enough time for yet:
I might come and update this post or this might end up in December’s post.
But how did they make you feel? Ugh… Yeah, that was the whole point of this. It wasn’t meant to just be a list. I used “the best” too many times, that’s for sure.
"Then the void of the weekend opened and I felt as if I were standing, precariously balanced on the rim of a well."
I meant to publish this on the weekend, but it wasn’t a void so I forgot and I’m doing it today instead.
"I stretched a taught wire that pierced the days and I slid swiftly along it..."
"The circle of an empty day is brutal, and at night it tightens around your neck like a noose."
"At that moment I didn't recognise her. I was frightened because she had taken my heart, which was now beating in her chest."
"But I've always had a low voice, I can't yell, the words fall a short distance away like a handful of pebbles thrown by a child."
Probably going to have a few from this book - I really liked it. Also interesting, after Butter, that this is a translation too. I actually picked up the italian version whilst in Italy and I’m going to attempt to read it sometime soon and see if I can tell how much of the prose is as beautiful originally - I will probably fail miserably at this.
Back dating this as was too busy being on holiday at the time, but got one decent run in whilst in Siena; Did manage another run a few days before this, but that was after three beers, whereas this was just after one and so I managed to do ok.
Whilst we were there also witnessed a bit of Cross dei Rioni happening.
Some nice hill climbs in Siena.
Finally! Took me just over three years to save up for a old Thinkpad X270 (~£85). It seems to be in excellent condition and interestingly, despite being a bit more chunky than my work’s Macbook Pro M1 14”, it feels a lot lighter. And arguably has a better keyboard. Also, it might be a seven year old machine, but for a progression in NetBSD hardware for me that has gone from Pentium III, to Pentium D this thing feels like the future!
My plan was that I’d get a X270 or T470 (but not anything newer) as that way I could put the SSD I’d pulled from my old Optiplex into it and immediately have a working NetBSD machine that I could then upgrade. But after three years that SSD was unlikely to work and things had moved on a fair bit. So I opted for a fresh NetBSD 10.1 install (after a final boot into the Windows OS it came with to update the BIOS). I mostly followed this approach (encrypted swap comes free with NetBSD 10), but with these changes (these notes are more for me than anything):
gpt add -l efi -t efi -s 128m ld0
gpt add -l netbsd -t ffs -s 20g ld0
gpt add -l swap -t swap -s 8g ld0
gpt add -l netcgd -t cgd ld0
On my NetBSD server I have 5Gi /root
and 10Gi /usr
. Here I want /usr
unencrypted (because I just do), so I’ve opted for 20Gi so I have a bit of breathing room. For cgd I have:
/dev/cgd0b /tmp mfs rw,-s=132m 0 0
/dev/cgd0e /var ffs rw 1 2
/dev/cgd0f /home ffs rw 1 2
(I set a
to unused).
I have 2Gi for /tmp
and 10Gi for /var
. I kind of wish I’d done a bigger /tmp
directory as I’ve already maxed it out with some cargo
builds (but hopefully only because it didn’t clean up some previous attempts); Have to be honest that I don’t fully understand the /tmp
changes with NetBSD 10. I seem to have both a /tmp
and a /var/shm
tmpfs - I don’t know if that’s intentional or I’ve just done something wrong. Maybe some day I could change this, but probably not any time soon.
I used to use dwm and st, but since I was setting up from scratch I decided to give leftwm a whirl to go with alacritty which I’ve been using on macOS for the past few years. I do like that dwm is “self-contained”, whereas with leftm you have to worry about status bars, etc. I’ve opted for lemonbar after making a small sed
change (sed -rg '/^\s*$/d'
) in the script for NetBSD. I’m showing battery usage based on this approach (I have two batteries though!) and built this little status script:
#!/bin/sh
# file:~/bin/leftwmstatus
while true; do
load=$(cat /proc/loadavg | awk '{print $1, $2, $3}')
# Memory Free / Swap Free
mem=$(cat /proc/meminfo | awk 'FNR==5{printf ("%.1f/", $2/1024/1024)};FNR==10{printf ("%.1f GB", $2/1024/1024)}')
cal=$(date +"%a %b %d %Y %H:%M")
batt1=$(envstat -s acpibat0:charge | grep charge | sed 's/.*(\(.*\)%)/\1/')
batt2=$(envstat -s acpibat1:charge | grep charge | sed 's/.*(\(.*\)%)/\1/')
charge=$(if envstat | grep -Eq 'connected.*TRUE'; then echo ^; fi)
printf "S$batt1%%+$batt2%% $charge | $load | $mem | $cal\n"
sleep 2
done
A few random “issues” I’ve had:
XDG_RUNTIME_DIR
for leftwmfsck
issue on boot I have no clue about because it’s moaning about fsck_home
being missing (which doesn’t seem to be a thing).pkg_add
. I can’t actually remember how I resolved this. I think I first of all had to set pkg_path
to use http to get the Mozilla root certs and then I could switch it to https./etc/powerd/scripts/acadapter
script working to lower the frequency when on battery (sometimes it doesn’t trigger, I don’t know why; Not a massive deal).At the time I set this up the Pkgsrc version of Helix was set as broken, but building it outside of Pkgsrc was easy; I am going to see if I can get Pkgsrc Helix updated now I actually have NetBSD hardware to do that on.
I’ve got it setup enough that I can use it, but still need to tweak a few things:
I’m very happy to have NetBSD hardware again!
"The gentle melody of the chimes signalling the start of fourth period drifted in from the nearby primary school. This neighbourhood was steeped in the rhythms of people's lives, which she found soothing."
There are lots of spoken passages I could quote (like the one on the back cover), but these two were my favourite non-spoken bits. Also, interestingly, neither of them about food.
These are the ten most recent posts (not counting any note drivel), for older posts see the Archive.