Samuel Coleman

Results 9 comments of Samuel Coleman

D'oh, I somehow didn't see https://github.com/NV/CSSOM/pull/113, which does the same thing as this.

For anyone running into this error after upgrading Jest, you're seeing this because Jest 27 [changed its defaults](](https://jestjs.io/blog/2021/05/25/jest-27#flipping-defaults)) to use [the Circus test runner](https://www.npmjs.com/package/jest-circus). You can keep using bdd-lazy-var by...

@decompilercmp, it seems like you uploaded/linked `LocaleUtils.class` instead of `JpegUtils.class`. Do you still have the original? The class files for `JpegUtils$1` and `JpegUtils$Visitor` included in the only version available from...

Another possible solution would be to remove the `stderr` checking, and rely on the error checking of `cmd.Wait()` to catch a non-zero exit status from the `go list` invocation. Conventionally,...

How are you trying to serve the Swagger UI: from a static, standalone web server (e.g., Caddy, nginx); or from within your Go application? If you're trying to expose the...

As a consumer of this library, I'm generally leery of libraries tying themselves to any particular logging library. While most of my applications do depend on Logrus, I'd hate for...

Setting `GO111MODULE=off` to force a global install also disables Go modules, so you can't refer to a module version (in this case, `v2`). You have two options: * If you're...

mpv [does this](https://github.com/mpv-player/mpv/blob/fcb320fd3fd3b1fc5549c009f23fc831bd37a495/DOCS/man/mpv.rst#protocols). Looks like it [calls out to youtube-dl](https://github.com/mpv-player/mpv/blob/9dbab9661c4ed36dca1b655440a02db37cd92af0/player/lua/ytdl_hook.lua) to discover how to make the network request for the content (by parsing the `-J`SON output of the utility), but...

I should've clarified: I left my comment in the hopes that it would be educational for a developer looking to implement this functionality in Quod Libet, not as an alternate...