Colin McMillen 2020-03-06 23:56:19 +00:00
parent e4d8760663
commit eec22d64e4

@ -5,6 +5,10 @@
* translate mp3 to ogg: `ffmpeg -i file.mp3 file.ogg`
* pngcrush everything: `for file in **/*.png ; do pngcrush -brute -ow $file; done`
* pngcrush everything that's changed:
```shell
for file in $(git status --porcelain --untracked=all | cut -b 4- | grep "\.png$") ; do pngcrush -brute -ow $file; done
```
* sizes of things in C#:
```