lsof | grep /tank/nas shows me what is using my nas at any time! read more →
➜ pihole sudo zfs load-key -L file:///path/to/.zfs.tank.key tank/encrypted/vms/arch-sandbox ➜ pihole sudo zfs change-key -o keylocation=file:///path/to/.zfs.tank.key -o keyformat=raw tank/encrypted/vms/arch-sandbox Need to load-key for each individu ... read more →
I've been using paperless-ngx to manage all my documents, but every once in a while I'll get a .docx file to deal with... Turns out Libreoffice has a headless mode a pdf converter built-in! libreoffice --headless --convert-to pdf /path/to/file.docx ... read more →
ChatGPT Prompt: Stable Diffusion is an AI art generation model similar to DALLE-2. Here are some prompts for generating art with Stable Diffusion. Example: A ghostly apparition drifting through a haunted mansion's grand ballroom, illuminated by fli ... read more →
James 2023 study of the book of James BP The Guy Greek: Iakobos (Jacob in English) Jacob is one of Jesus' half-brothers who became a leader of the Jerusalem church post-resurrection The book of James is the legacy of this Jacob's wisdom which was h ... read more →
ffmpeg -i input.mp4 -map 0 -c:v libx264 -vf format=yuv420p -c:a copy output.mp4 read more →
I was introduced to tiling window managers through i3, which I use heavily on one of my machines. I have switched to Pop_OS! at home though, which has a tiling window mode but the keybindings are not what I'm used to for i3. I wanted to at least nav ... read more →
I was getting (publickey denied) when trying to push to GH using ssh. When I tested the connection I saw that a bunch of keys in ``~/.ssh/ were being attempted ✗ ssh [email protected] -vv ... debug1: Will attempt key: /home/nic/.ssh/id_rsa debug1: W ... read more →
Playing around with Modal Labs One of the first things I tried was a regular cron job... @stub.function( schedule=modal.Period(minutes=59), secret=modal.Secret.from_name("my-dummy-secret") ) def say_hi(): now = time.ctime() sec ... read more →
ssh-copy-id -i my.key.pub <hostname probably from tailscale> this makes sure I can run ansible from my desktop against VMs on my server easily if they have tailscale for the hostname - otherwise use the IP read more →