wezm.net/v2
2024-08-25 09:56:30 +10:00
..
content Add chimera mirror post 2024-08-25 09:56:30 +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