Skip to content

Instantly share code, notes, and snippets.

@dkapitan
Last active November 23, 2025 16:35
Show Gist options
  • Select an option

  • Save dkapitan/77aaf574ac60df6189710af72517c3a8 to your computer and use it in GitHub Desktop.

Select an option

Save dkapitan/77aaf574ac60df6189710af72517c3a8 to your computer and use it in GitHub Desktop.
just handy utilities
show-project-size:
uv pip list --format freeze | \
awk -F = {'print $1'} | \
xargs uv pip show | \
grep -E 'Location:|Name:' | \
cut -d ' ' -f 2 | \
paste -d ' ' - - | \
awk '{print $2 "/" tolower($1)}' | \
xargs du -sh 2> /dev/null | \
sort -hr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment