❯ find . -name "requirements.in" -print0 | xargs -0 sh -c 'for arg in "$@"; do echo "awscli" >>"$arg"; done' read more →
I use Tmux and Vim for most of my workflow, but I end up with a lot of dangling tmux sessions that dont' really need to persist... but killing them one at a time is a pain so I wrote a little script-kitty nonsense to pipe multiple choices from fzf i ... read more →
I started my homelab journey being super naive about ZFS and how to manage the filesystem... that bit me in the butt when transfering a ton of files out of folders and into datasets because ZFS is copy on write so I was essentially duplicating my st ... read more →
Check out stow for a brief introduction to stow What if I want to stow a package somewhere else? Boom, that's where -t comes in... Maybe I don't like having my dotfiles repo at $HOME and instead I want it in ~/git or ~/personal just to stay organize ... read more →
Stow is a great tool for managing dotfiles. My usage looks like cloning my dotfiles to my home directory, setting some environment variables via a script, then stowing relevant packages and boom my config is good to go... cd ~ git clone <my dotfi ... read more →