Jack Wilsdon
Jack Wilsdon
This issue probably belongs in core. It was changed in https://github.com/home-assistant/core/pull/115445 (which also has a bit of discussion on it), the relevant code is here: https://github.com/home-assistant/core/blob/d676169b04cb26c76b3969c3f695e1a981062897/homeassistant/components/media_player/intent.py#L96-L97
I'm seeing this on Linux - it looks like Bandcamp is intentionally blocking the `requests` package (or at least _some_ non-browser clients - cURL still works). https://github.com/easlice/bandcamp-downloader/issues/35 is related. I...
What is the scale of your top-left-most output? sway opens windows at 0, 0 initially before moving them to their correct location (this is a bug in sway, see https://github.com/swaywm/sway/issues/2176)...
@sampsyo looks to me like `util.arg_encoding()` is returning `cp1252` (see third line from the bottom in the stack trace). I can confirm that on my Windows 10 machine, `arg_encoding()` returns...
It's expected that the sources.debian.org URL is down - the archive.org URL is supposed to supplement this: https://github.com/NixOS/nixpkgs/blob/a384cbf926c5d9b1b6798dea46465ec5f8ab6c84/pkgs/tools/archivers/unzip/default.nix#L54-L62 Are you still having this issue? The archive.org URL loads fine for...
Tested that the following start properly: * `quiltServers.quilt-1_19_4` * `quiltServers.quilt-1_20_6` * `quiltServers.quilt-1_21_4` * `fabricServers.fabric-1_19_4` * `fabricServers.fabric-1_20_6` * `fabricServers.fabric-1_21_4` You can verify that Nix knows about the package's runtime dependencies using...
Updated with new formatting from e6e6044e499a9c4a0b98333f79431c0d85f44d17. Tested that the following start properly: * `quiltServers.quilt-1_19_4` * `quiltServers.quilt-1_20_6` * `quiltServers.quilt-1_21_4` * `fabricServers.fabric-1_19_4` * `fabricServers.fabric-1_20_6` * `fabricServers.fabric-1_21_4` Noticed that legacy fabric also wasn't...
If I had to take a guess, it's `UFID` as that's what Picard uses: https://github.com/metabrainz/picard/blob/e17ecfbad066a7019a675a8b201467ed8bbbbe6a/picard/formats/id3.py#L505-L506 https://github.com/metabrainz/picard/blob/e17ecfbad066a7019a675a8b201467ed8bbbbe6a/picard/formats/id3.py#L366-L367 And this reply seems to explain why it's named `mb_trackid`: https://github.com/beetbox/beets/issues/2690#issuecomment-329913930 (it sounds like...
[`beet update`](https://beets.readthedocs.io/en/stable/reference/cli.html#update) might work.
`FreeRTOS.h` imports `portable.h` (which imports `portmacro.h`) before it defines a default for `configASSERT`. ``` In file included from vendor/FreeRTOS-Kernel/include/portable.h:53, from vendor/FreeRTOS-Kernel/include/FreeRTOS.h:107, from src/main.c:1: vendor/FreeRTOS-Kernel/portable/ThirdParty/GCC/RP2040/include/portmacro.h: In function 'vPortRecursiveLock': vendor/FreeRTOS-Kernel/portable/ThirdParty/GCC/RP2040/include/portmacro.h:216:5: warning: implicit...