- Owning my reading log
- Indie Bookshelves
- BookWyrm - Social Reading and Reviewing
- Indieweb - Personal Library
- Microformats
Book metadata sources:
- Bookbrainz
- Open Library by the Internet Archive
Book metadata sources:
AI developers think about their bit of code, but with AI Flame Graphs they can now see the entire stack for the first time, including the HW, and many layers they don't usually think about or don't know about. It basically looks like a pile of gibberish with their code only a small part of the flame graph.
This reaction is similar to people's first experiences with CPU flame graphs, which show parts of the system that developers and engineers typically don't work on, such as runtime internals, system libraries, and kernel internals.
Need bash scripts? Already have too many? I'm available to help.
1git rev-list --objects --all \
2| git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' \
3| sed -n 's/^blob //p' \
4| sort --numeric-sort --key=2 --reverse \
5| head -n 150 \
6| cut -c 1-12,41- \
7| $(command -v gnumfmt || echo numfmt) --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest