1
0
Fork 0
forked from wezm/wezm.net
wezm.net/v2
2023-09-22 11:57:16 +10:00
..
content Fix typos in OpenBSD crash post 2023-09-22 11:57:16 +10:00
sass Add new classic Mac OS Rust post 2023-03-31 20:59:03 +10:00
static Update projects and about info 2021-01-04 07:37:22 +10:00
templates Add new classic Mac OS Rust post 2023-03-31 20:59:03 +10:00
.gitignore Initial v2 commit 2020-01-29 09:04:25 +11:00
config.toml Compatibility with newer Zola 2021-08-26 09:11:44 +10:00
Justfile Update Fediverse accoun 2023-01-30 10:37:40 +10:00
README.md Add garage-door-monitor post 2022-04-20 06:48:54 +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

Terminal screenshots

Resize:

xdotool windowsize $(xdotool selectwindow) 1600 1200

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