Daniel G. Taylor
Daniel G. Taylor
Hey @philsturgeon! OpenAPI 3.1 support is currently blocked on https://github.com/getkin/kin-openapi/issues/230, but since only a few things changed in a backward-incompatible way many OpenAPI 3.1 specs may already work with Resitsh...
These look very interesting. I'll take a look soon and see how much effort it would be to switch and whether they have all the features I need. The good...
> 1. can the spec_files array contain urls? Not today. It [reads a local file from disk and simulates an HTTP response with its contents](https://github.com/danielgtaylor/restish/blob/ba45f05bb4e26ae9796be91231de0e0cb05b0415/cli/api.go#L93-L104). > 2. There may be...
@tfsJoe the merge logic is here: https://github.com/danielgtaylor/restish/blob/3e64e178a384a996d2f15810bde1421aca17eb16/cli/api.go#L32-L42 then each operation registers a command with the API root command. I would say right now the behavior is undefined, but I'm open...
I'm willing to add this if someone wants to write the code :+1:
My [jpeg-archive](https://github.com/danielgtaylor/jpeg-archive#jpeg-compare) project includes a utility to compare using SSIM and MS-SSIM which you might find useful. ``` bash $ jpeg-compare --method ssim original.jpg compressed.jpg $ jpeg-compare --method ms-ssim original.jpg...
Author of [jpeg-recompress](https://github.com/danielgtaylor/jpeg-archive) here. I plan to evaluate and switch to using libmozjpeg for encoding in the near future. The problem that I see with adding this functionality to the...
I've added support for libmozjpeg to `jpeg-recompress` in https://github.com/danielgtaylor/jpeg-archive/commit/aa9abe16918fc5421d982b0ccdbb9b2c3f2eeffa and the results so far are promising. Running `jpeg-recompress` now takes about twice as long as it did before, with only...
I had to expose a chroma subsampling command line parameter recently and honestly it's kind of a pain to deal with. I'd _love_ to see this be automatic. :+1:
I believe this is a duplicate of #12, and for algorithms you can take a look at [jpeg-recompress](https://github.com/danielgtaylor/jpeg-archive#jpeg-recompress), which uses mozjpeg in its latest version to compress images. It's possible...