Thread

Just presented my 2 hr hackathon project at #btcpp privacy edition, Riga! With the recent attacks on developers of cypherpunk software bythe state and other malicious actors, developer privacy is becoming more important. So I developed a command-line tool to fuzz location and time information from your unpublished git commit messages before you push your commits to a public branch. Comments and suggestions welcome :)

Replies (6)

This project ended up winning, I'm overwhelmed! ๐Ÿ˜ฌ
once_aphysicist's avatar once_aphysicist
Just presented my 2 hr hackathon project at #btcpp privacy edition, Riga! With the recent attacks on developers of cypherpunk software bythe state and other malicious actors, developer privacy is becoming more important. So I developed a command-line tool to fuzz location and time information from your unpublished git commit messages before you push your commits to a public branch. Comments and suggestions welcome :)
View quoted note →
This is cool. A few years ago l, all my commits had a start of day timestamps but pgp signing yubikey and qubes proxy got in the way so I stopped.
once_aphysicist's avatar once_aphysicist
Just presented my 2 hr hackathon project at #btcpp privacy edition, Riga! With the recent attacks on developers of cypherpunk software bythe state and other malicious actors, developer privacy is becoming more important. So I developed a command-line tool to fuzz location and time information from your unpublished git commit messages before you push your commits to a public branch. Comments and suggestions welcome :)
View quoted note →
here were my shell aliases: ``` shellAliases = { git-today = '' env GIT_AUTHOR_DATE="`date -I`T00:00:00" env GIT_COMMITTER_DATE="`date -I`T00:00:00" git''; git-month = '' env GIT_AUTHOR_DATE="`date +%Y-%m-01`T00:00:00" env GIT_COMMITTER_DATE="`date +%Y-%m-01`T00:00:00" git''; git-last-month = '' env GIT_AUTHOR_DATE="`date +%Y-%m-01 -d '-1month'`T00:00:00" env GIT_COMMITTER_DATE="`date +%Y-%m-01 -d '-1month'`T00:00:00" git''; }; ```