now self-hosted at git.brainbaking.com

This commit is contained in:
Wouter Groeneveld 2022-07-06 11:10:57 +02:00
parent d9b4a3e2f3
commit ae9612a669
1 changed files with 14 additions and 3 deletions

View File

@ -1,7 +1,18 @@
Brainbaking.com hugo site.
# Brainbaking.com hugo site.
Source now self-hosted at `git.brainbaking.com`!
### Screenshot png - jpg conversion
1. find . -name "*.png" -exec convert {} -sampling-factor 4:2:0 -strip -quality 85 -interlace JPEG -colorspace sRGB {}.jpg \;
2. find ./ -name "*.png.jpg" -exec sh -c 'mv $0 `basename "$0" .png.jpg`.jpg' '{}' \;
```
find . -name "*.png" -exec convert {} -sampling-factor 4:2:0 -strip -quality 85 -interlace JPEG -colorspace sRGB {}.jpg \;
find ./ -name "*.png.jpg" -exec sh -c 'mv $0 `basename "$0" .png.jpg`.jpg' '{}' \;
```
Using montage to stick together two screenshots:
```
montage TMHT\ FOOT\ CLAN-1.png TMHT\ FOOT\ CLAN-5.png -tile 2x1 -geometry +2+2 boss-still.png
convert -filter box -resize x400 boss-still.png boss-still.png
```