Skip to content

Instantly share code, notes, and snippets.

View weshford's full-sized avatar
💭
what if we all just kill ourselves

weshford

💭
what if we all just kill ourselves
View GitHub Profile
@weshford
weshford / lottikarotti.md
Last active May 20, 2026 12:52
git repo code leaderboard

leaderboard of who wrote the most lines of code in a git repo

git ls-tree --name-only -z -r HEAD | xargs -0 -n1 git blame --line-porcelain | grep "^author " | sort | uniq -c | sort -nr

the below can be used to filter by file extension

git ls-tree --name-only -z -r HEAD|egrep -z -Z -E '\.(cc|h|cpp|hpp|c|txt)$' \ |xargs -0 -n1 git blame --line-porcelain | grep "^author " | sort | uniq -c | sort -nr
@weshford
weshford / links.md
Last active May 20, 2026 12:55
useful links