Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
92da1517b5 | ||
|
|
4850ed286f |
|
Before Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 57 KiB |
|
Before Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 62 KiB |
@@ -0,0 +1,13 @@
|
||||
---
|
||||
title: Useful Utilities
|
||||
---
|
||||
|
||||
Here's a small collection of various utilities and recipes I find useful. It's not organized in a particular way, but more as a long-term memory for me.
|
||||
|
||||
## JPEG Optimization
|
||||
|
||||
[jpegoptim](https://github.com/tjko/jpegoptim) is a handy little utility for doing JPEG optimization. I use it to compress files and strip EXIF data. Here's an example that will process all the files in the current directory and compress them to a reasonable 85.
|
||||
|
||||
```bash
|
||||
nix run 'nixpkgs#jpegoptim' -- --max=85 --strip-all *.jpg
|
||||
```
|
||||