

I encounter this mostly with manga. (I’ll not rehash what others have said).
FWIW, and in that use case, I deal with it by renaming x5 to x5.0 so it will sort before x5.5. And then usually put both into an x5 directory and then zip that into a CBZ.
I encounter this mostly with manga. (I’ll not rehash what others have said).
FWIW, and in that use case, I deal with it by renaming x5 to x5.0 so it will sort before x5.5. And then usually put both into an x5 directory and then zip that into a CBZ.
TIL that version appears to be on the AUR: MicroEMACS/PK 4.0.15 customized by Linus Torvalds.
Last updated in 2014, it probably has serious cobwebs now. Even the upstream hasn’t been touched in 6 years.
Had no idea about this. Very useful, thanks!
I second this, as it’s my use case.
Providing you lay out each note correctly with appropriate frontmatter, Dataview’s DQL and DataviewJS give you all the SQL-like functionality you could want.
Plus a load of useful functionality beyond a plain DB.
TIL this is a thing. I started doing that over 30 years ago with SLS and Slackware when that was the only choice.
This was pre-PnP (also pre-JPEG!), so you had to know all the addresses, IRQs, DMA info, etc, of your hardware or you’d get… unexpected results. make
it and they will come…
After countless distros and flavours over the years, I still use Debian for servers and now use EndeavourOS for desktop/laptops.
This is, sadly, accurate. Telling someone to use an OS/platform that isn’t connected with a brand they recognise seems to send many people into a tailspin.
I’ll refrain from the obvious “They Live” cynicism…
You may be right, but I worked around this using https://wiki.archlinux.org/title/NetworkManager#Network_services_with_NetworkManager_dispatcher
I added the CIFS shares to my fstab with the
_netdev
option and created /etc/NetworkManager/dispatcher.d/30-nas-shares.sh containing (got the WiFi UUID usingnmcli con show
):#!/bin/sh WANTED_CON_UUID="UUID-OF-MY-WIFI" if [ "$CONNECTION_UUID" = "$WANTED_CON_UUID" ]; then case "$2" in "up"|"vpn-up") mount -a -t cifs ;; esac fi
This waits for my WiFi to come up, ensures it’s my home WiFi, and then mounts my shares.
There are probably other and better ways to do it, but it works.