benbro

Results 61 issues of benbro

Hi In the following docs the 6 orientation means rotate left and 8 means rotate right http://sylvana.net/jpegcrop/exif_orientation.html http://www.impulseadventure.com/photo/exif-orientation.html In canvasResize it's the opposite. Am I missing something or is this...

If [get_all_messages](https://github.com/wooga/eredis/commit/b0ff5a9fd41c09155ff928732a413cde97f07a5f) might receive more than one message, I think it should be changed to: ```erlang get_all_messages(Acc) -> receive M -> get_all_messages([M | Acc]) after 0 -> lists:reverse(Acc) end. ```

There is a jitter when using segmentation with a video or camera. Select one of the three videos in the [demo](https://volcomix.github.io/virtual-background/) and notice that the mask isn't stable. Is there...

When compiling a project with typescript 5.0.2 I'm getting the following error in three places: ```Argument of type '9729' is not assignable to parameter of type '9728'``` https://github.com/Volcomix/virtual-background/blob/main/src/pipelines/webgl2/backgroundBlurStage.ts#L125 https://github.com/Volcomix/virtual-background/blob/main/src/pipelines/webgl2/backgroundBlurStage.ts#L133 https://github.com/Volcomix/virtual-background/blob/main/src/pipelines/webgl2/backgroundImageStage.ts#L155...

**Is your feature request related to a problem? Please describe.** Some tools create PDFs with huge images. [optimize.py](https://github.com/ocrmypdf/OCRmyPDF/blob/c1f99c0bd54303d3bb3f9df4daa9a586e08e3ced/src/ocrmypdf/optimize.py#L261) currently doesn't optimize images with SMask. Is there a way to improve...

I'm trying to resize only images with large resolution in a document. I've been told that the attached document has such images. page.images doesn't show me any image. Am I...

Prometheus supports [dynamic service discovery](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#scrape_config). Is there a way Prometheus could automatically discover all registered nodes from a lighthouse? The certificate groups could be returned as labels to help filter...

NeedsDecision

With [libpq](https://www.postgresql.org/docs/current/libpq-connect.html) it is possible to specify multiple hosts and require a read-write connection. The client will connect all hosts until it finds the primary. This is a nice way...

[Describe the issue] Clicking on a formula should let you edit it inline or open the formula tooltip with the existing formula so you can edit it with latex. **Steps...

feature

emonogo turns a list of integers to a binary string. Probably because a string is a list in erlang. Maybe emongo should except strings only as binaries and list of...