Bulk thumbnails
Make bulk thumbnails of JPGs with ImageMagick.
#!/bin/bash
directory="./images/"
dimensions="360x360"
for file in "$directory"*.jpg; do
convert "$file" -resize $dimensions "$file" "${file%.*}-thumbnail.jpg"
done
Other notes
- dcss Sane default for Dungeon Crawl Stone Soup Online edition
- Simple presentations with Markdown
- Making cgit look nicer
- Online radio streaming with MPV from terminal
- plan9 Drawing Pixels in Plan9
- Execute not blocking async shell command in C#
- c Calling assembly functions from C
- plan9 Fix bootloader not being written in Plan9
- Previews how man page written in Troff will look like
- Parse RSS feeds with Lua
- plan9 Run 9front in Qemu
- Sane defaults for tmux with more visible statusbar
- Write ISO to USB Key
- vim Personal sane Vim defaults
- Using ffmpeg to combine videos side by side