Others
BFCache
Back/forward cache (or bfcache) is a browser optimization that enables instant back and forward navigation. It significantly improves the browsing experience for users-especially those with slower networks or devices.
Back/Forward Cache: What It Is and How to Use It to Serve Content Immediately
Image Compression / Compress Image / Image Tools
- https://imgix.com
- https://squoosh.app/
- Birme - https://www.birme.net
- TinyPNG - Compress WebP, PNG and JPEG images intelligently
- AI Image Upscaler - Enlarge & Enhance Your Photos for Free - Upscale.media
- Image Resizer - Crop & Resize Image Online | RedKetchup
brew install imagemagick
mogrify -format jpg -quality 50% /path/to/folder/abc.png
mogrify -format jpg /path/to/folder/*.png
mogrify -format jpg -quality 20% *.png
mogrify -quality 20% /path/to/folder/*.jpg
mogrify -quality 10% *.jpg
# convert pdf to images
convert input.pdf output.jpg
# For good quality use these parameters
convert -density 300 -quality 100 in.pdf out.jpg
# [ImageMagick - Command-line Tools: Convert](https://www.imagemagick.org/script/convert.php)
GitHub - kornelski/pngquant: Lossy PNG compressor - pngquant command based on libimagequant library