Ruben De Smet

Results 120 comments of Ruben De Smet

0.2.0 is out, including an additional vulnerability fix (https://github.com/whisperfish/blurhash-rs/security/advisories/GHSA-cxvp-82cq-57h2)

> I was also wondering if this supports WASM? I don't see an immediate reason why it wouldn't be rather simple to get it compatible, so patches (including CI!) are...

@Baldhor downgrading with `pacman -U /var/cache/pacman/pkg/python-voluptuous-0.14.1-1-any.pkg.tar.zst` worked fine for me too, but partial upgrades are notoriously unsupported on Arch. I'd rather not have my OS eat my cat! :-)

> This should be fixed on the next release. > This [commit](https://github.com/esphome/esphome/pull/6181/commits/846d738a6928f0468366f61a8c952def48a894b7) will fix it @zeirix That would mean that the next workaround for Arch is to use `esphome-dev` from...

> Trying to install `esphome-dev` ended with some dependency trouble. Removing `esphome` and `platformio-core` first should handle that. There's currently a comment on the AUR to ask set `Provides =...

I think this is basically a duplicate of #46; i.e., the national number format does not parse. I just tried to parse this on #52, and it still does not.

Some initial patch that I tried against current `develop`: ```diff diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 94e28619e..8e93753fd 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 +FROM --platform=${BUILDPLATFORM:-linux/amd64} ubuntu:22.04...

Update: the above actually worked as I expected (precision, instead of width) in tag `v0.4.2`! This sounds like a regression to me. Potentially since the introduction of exponential notation in...

> > because I was using BigDecimal to work with monetary units > > ❗ Hope the change wasn't discovered after it was too late 😬 I'm not using BigDecimal...

First, I am personally not invested in exponential notation, so please feel free to disregard whatever I say about this. I would take inspiration from how `phonenumber-rs` does formatting, with...