andrews05

Results 100 comments of andrews05

Just to add to the above points: - Oxipng uses the separate libdeflate and zopfli libraries for deflate compression, which takes up the vast majority of optimisation time. Libdeflate in...

- The pngwolf genetic filter is slow because it tries a huge number of combinations, compressing each one to see which one is best. It's a lot *like* brute force,...

Of interest regarding AI: https://cloudinary.com/blog/jpeg-xl-and-automatic-image-quality

+1, most jpegs are still able to be optimized by mozjpeg even if they don't actually get recompressed. This would save me having to run images through jpegtran if jpeg-recompress...

Are you able to use the oxipng API in your CLI tool?

Hm, you may like to check this out: https://pypi.org/project/pyoxipng/

I'm getting the same error in Xcode 14.2. Trivial example ```swift struct TestParser: Parser { var body: AnyParser { Word("D") IntLiteral() } } try? TestParser().parse("D 1") ```

I've found the cause of the problem: https://api.jquery.com/selector/ Doesn't look like a quick fix.

My suggestion would be to specify the "selector" in the options and the user would initialise by targeting (e.g.) the body rather than the links, like `$(body).swipebox({selector:'.swipebox'})`. This would only...

Yes it is, but only if you're working with dynamic content where elements may be added on the fly and you don't want to reinitialise Swipebox. Otherwise just carry on...