Joost Molenaar

Results 10 comments of Joost Molenaar

It turned out to be pretty easy to do this with sbupdate; it takes care of generating the EFI Unified Kernel Image, with firmware included, and then signing it using...

I think pacman hooks are run alphabetically, so `90-booster-install.hook` and `90-mkinitcpio-install.hook` run before `95-sbupdate.hook`. All of these trigger when `/usr/lib/*/vmlinuz` is installed or upgraded. There is [foxboron/sbctl](/foxboron/sbctl) which is already...

I would like to run Unbound on the host as caching DNS forwarder, to resolve names under some subdomains at a specific resolver, for example resolvers reachable over Wireguard or...

Update: I found out that Aardvark is serving names under the `dns.podman.` domain, this already makes it possible to forward requests for names in that domain from the system resolver...

ANSI escape codes were specified in 1976 in the ECMA-48 standard, that's nearly 48 years ago, it's a pretty safe bet that it will be easy to support them for...

Update: After patching the code to prevent the warnings, the build fails on other warnings, a -Wformat in `plugins/kubernetes_events/kubernetes_events.c`. I can't build 3.0.2 either, this used to work before, but...

Yes, that must be it! My last successful builds were on GCC 13.2.

It's pretty easy to do this without pipx-in-pipx: ``` python -m venv /tmp/bootstrap /tmp/bootstrap/bin/pip install pipx /tmp/bootstrap/bin/pipx install pipx rm -rf /tmp/bootstrap ```

You need to configure Git to not break on old, broken commits by passing `fetch.fsck.badTimezone=warn` (or `ignore`) to the git clone command: ``` git -c fetch.fsck.badTimezone=warn clone https://github.com/vimwiki/vimwiki ``` Or...