Skip to content

Instantly share code, notes, and snippets.

View thepigeonoftime's full-sized avatar

The Pigeon Of Time thepigeonoftime

  • Berlin
View GitHub Profile
@thepigeonoftime
thepigeonoftime / ProtectAndInfectPt2
Created May 15, 2018 15:47
To Protect And Infect Pt II
“Merkelphone (Passive Set of Sensors)”
https://youtu.be/vtQ7LNeC8Cs?t=10m18s
“Turmoil Dragnet System”
https://youtu.be/vtQ7LNeC8Cs?t=11m50s
“It’s not clear if it even exists because it’s not clear to me a judge would understand anything I just said”
https://youtu.be/vtQ7LNeC8Cs?t=12m13s
“Lists”
@thepigeonoftime
thepigeonoftime / direnv.zsh
Created February 4, 2022 15:57
ZSH .direnv
autoload -U add-zsh-hook
load-dir-env() {
if [[ -f .direnv && -r .direnv ]]; then
if [[ $(history | tail -n1 | awk '{print $2}') == *"cd"* ]]; then
print -P "%F{red}.direnv loaded: $(head -n1 .direnv | sed 's/#\s//')%f"
fi
source .direnv
fi
}
add-zsh-hook chpwd load-dir-env