Nils Caspar
Nils Caspar
I only get 480p through this plugin. Would be nice to have an option to force 720p.
Awesome to finally see this merged. Thanks everyone who helped getting it across the finish line! ❤️
I came here to suggest the same thing: It would be great if textract was more lightweight by default. I only need something to extract text from common document formats...
Has anyone had success porting this to Godot 4? I found [this](https://github.com/ShatReal/integer-scaling) but it's a little more cumbersome to use since it requires a very specific (sub)viewport setup.
Any news on this?
I would like to redirect all TCP and UDP traffic through redsocks (v0.4). I came up with the following `iptables` command: ``` bash iptables -t nat -N REDSOCKS iptables -t...
I tried running `infix` with the following rule (to change the tag value of "instance" from "wlan0" to "wl0-ap0" on all measurments): ``` [[rules.update-tag-value]] to="wl0-ap0" [rules.update-tag-value.measurement.pattern] pattern=".*" [rules.update-tag-value.value.strings] equal="wlan0" [rules.update-tag-value.key.strings]...
I just ran into this as well and found this bug report after hours of debugging and questioning my sanity. @deklanw Thank you for sharing the workaround; putting an empty...
I am still experiencing this problem with Celery 5.4.0. I'll do more testing and report back later this week.
Here is an example that causes the duplicate execution behavior: ``` @app.task def dummy_task(out: int | str) -> None: print(out) def run_chained_groups() -> None: chain( chain( group(dummy_task.si(1), dummy_task.si(2), dummy_task.si(3)), group(dummy_task.si(4),...