💾 Archived View for envs.net › ~jupy › minihacks › random.gmi captured on 2024-08-18 at 18:27:07. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2024-07-09)

-=-=-=-=-=-=-

Some LaTeX stuff:

- write "et al." as `et~al.\`, or `et~al.` if it's followed immediately by punctuation such as a comma or bracket.

Handy bash thingies:

DU things (directory sizes)

view size of directories within current directory with

- `du -hs ./*` (-h for human readable, -s for summary, ./* because otherwise it just tells you size of current dir), or

- `du -hd 1` (-d for depth to search down, with 1 being that depth).