git config --add --local core.sshCommand 'ssh -i <<<PATH_TO_SSH_KEY>>>' read more →
I moved a computer to a remote location for an off-site backup but when it was powered on it wouldn't show up on any networks. A solution that got me back in was a friend restarting the dhcp client for me: sudo dhclient -r -v <interface> & ... read more →
https://forum.opnsense.org/index.php?topic=8783.0 read more →
Exec in as www-data and run ./occ groupfolders:scan folder_id -v (the -v to see what it's doing) read more →
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 →
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 →