Hacker News new | ask | show | jobs
by ngrilly 3461 days ago
What do you use for the local webserver, spell check and image image compression?
1 comments

`python -m SimpleHTTPServer` for the local server (or if you prefer the python3 variant, `python3 -m http.server`), aspell for the spell check, and OptiPNG for PNG compression.

I didn't found something (yet) for JPEG.

> I didn't found something (yet) for JPEG.

jpegoptim --strip-all

Thanks, exactly what I was looking for!