wezm.net/v2
2026-06-01 14:26:31 +10:00
..
content Address some invalid HTML 2026-06-01 14:26:31 +10:00
sass Specify obliqueness of <em> in post body too 2026-05-17 19:56:42 +10:00
static Address some invalid HTML 2026-06-01 14:26:31 +10:00
syntaxes Add Gleam syntax highlighting 2024-02-20 20:46:22 +10:00
templates Address some invalid HTML 2026-06-01 14:26:31 +10:00
.gitignore Initial v2 commit 2020-01-29 09:04:25 +11:00
config.toml Zola v0.22 compatibility 2026-01-19 21:09:45 +10:00
Justfile Update Fediverse accoun 2023-01-30 10:37:40 +10:00
prince.css Add prince.css 2026-02-03 20:47:31 +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