I have a simple CSS minifier which... all it does is removes whitespace and comments. I'm rather happy with it but if there is something better - let me know.
Now for JS minifiers, I have this beast of a thing here: https://github.com/rgrove/jsmin-php/blob/master/jsmin.php of course, I have some pretty long JS scripts. I want something long, to minify rather quickly. Minifying jQuery (I know it's already got a minified) takes 2 seconds, sometimes even 4 or more! I won't have files as large of jQuery, but I may get some half as large and I doubt 1-2 seconds to load a single JS file is very attractive.
I'm wondering if there is some quick minifiers out there? I only need a minifier, I don't need something that combines, caches etc.