Skip to content

Instantly share code, notes, and snippets.

View callamd's full-sized avatar
💭
🚀👨‍💻

Callam callamd

💭
🚀👨‍💻
View GitHub Profile
Aarhus
Aaron
Ababa
aback
abaft
abandon
abandoned
abandoning
abandonment
abandons
@callamd
callamd / venv.sh
Created August 27, 2024 12:07
Uses fzf to activate the closest matching venv
v() {
source ~/Documents/venv/"$(find ~/Documents/venv/ -maxdepth 1 -type d -exec basename {} \; | fzf --filter="$1" | head -n 1)"/bin/activate
}
alias d='deactivate'