I like list expansion: The p switch creates any “missing” parent directories and is idempotent (so if app exists it doesn’t complain and if not creates it). Heck you can…
Tag: Snippet
Code assistants
I’ve Co-pilot enabled while following a book, The Rust Programming Language (Klabnick and Nichols, 2023). Can’t help but notice that I get code recommendations that are identical to the book….
Knulli Bluetooth controller
Anbernic RG35XX H with 8Bitdo SN30 Pro Bluetooth was a bit of trial and error but got an external controller configured with Knulli. Power on the SN30 Pro in “Windows”…
Renew SSL certificate in Plesk with IONOS
Log in to IONOS – you need three files: If you don’t have the private key, Revoke Old Certificate, then Reissue Certificate – on Firefox this is a bit weird…
Python’s with statement
Managing resources usually involves three steps – allocating, using, and releasing. You’re familiar with the try… finally pattern but Python also provides context managers.