Skip to content

Instantly share code, notes, and snippets.

View Sardonyx001's full-sized avatar
🌻
reading a lot of java

jam Sardonyx001

🌻
reading a lot of java
View GitHub Profile
@Sardonyx001
Sardonyx001 / git-fuckoff.sh
Created August 14, 2025 11:28
git alias to ignore annoying files without putting them in .gitignore
git config --global alias.fuckoff '!git status -s | awk "{printf \$2\"\\n\"}" >> .git/info/exclude'
@Sardonyx001
Sardonyx001 / gopass-get-secret.sh
Created August 22, 2025 04:53
Gopass headlessly return secret
gopass show -o [MY_SECRET] | tr -d '\n'