wezm.net/v2
2026-02-03 20:53:40 +10:00
..
content tech-stack 2026: Improve formatting of hardware section 2026-02-03 20:53:40 +10:00
sass Add loongarch-mini-pc post 2026-01-24 16:44:01 +10:00
static Add newsletter-stickers image 2025-07-05 08:40:28 +10:00
syntaxes Add Gleam syntax highlighting 2024-02-20 20:46:22 +10:00
templates Add comments shortcode 2026-02-03 20:45:59 +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