Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 426 Bytes

File metadata and controls

25 lines (17 loc) · 426 Bytes

Technical notes

See the 5 most recently modified posts:

git ls-files | xargs -I{} git log -1 --format="%aI {}" {} | sort -nr | head -n 5

See tags:

jq -r '.tags[]' .tags

Filter notes by tag:

jq -r '.notes[] | select(.tags[] == "concurrency") | .path' .tags

Find notes that do not have tags:

comm -23 <(ls *.py *.md *.ipynb | sort) <(jq -r '.notes[].path' .tags | sort)