wezm.net/v2
Wesley Moore 40907c48fb
Enable bottom footnotes
This automatically inserts them after a hr at the bottom of the post and
also adds links to return to the place the footnote was used. Finally
this should enable inline footnotes in some RSS readers like Feedbin and
NetNewsWire.
2024-08-02 17:31:28 +10:00
..
content Enable bottom footnotes 2024-08-02 17:31:28 +10:00
sass Add Feedlynx post 2024-07-29 09:44:58 +10:00
static Add Feedlynx post 2024-07-29 09:44:58 +10:00
syntaxes Add Gleam syntax highlighting 2024-02-20 20:46:22 +10:00
templates Add Feedlynx post 2024-07-29 09:44:58 +10:00
.gitignore Initial v2 commit 2020-01-29 09:04:25 +11:00
config.toml Enable bottom footnotes 2024-08-02 17:31:28 +10:00
Justfile Update Fediverse accoun 2023-01-30 10:37:40 +10:00
README.md Add Yoga 7x post 2024-07-16 10:05:07 +10:00

wezm.net v2

Build with the Zola static site compiler:

zola serve

Dates

Generate dates in front-matter from vim:

:r! date +\%Y-\%m-\%dT\%H:\%M:\%S\%:z
:r! date -Iseconds

Terminal screenshots

Resize:

xdotool windowsize $(xdotool selectwindow) 1600 1200

Remove location

exiftool -gps:all= -xmp:geotag= *.JPEG

Video poster images

for m in *.m4v; do ffmpeg -i $m -vf "select=1" -vframes 1 $m.png; done
for f in *.m4v.png; do convert "$f" -quality 60 ${f%.png}.jpg ; done