mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 01:42:32 +00:00
Wesley Moore
40907c48fb
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. |
||
---|---|---|
.. | ||
content | ||
sass | ||
static | ||
syntaxes | ||
templates | ||
.gitignore | ||
config.toml | ||
Justfile | ||
README.md |
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