Eric Severance
Eric Severance
@alderete I've sent a PR for randomizing the webhook_id by default. https://github.com/home-assistant/frontend/pull/11568 Could you take a look, and update the docs if you think there is anything needed for that?...
I'm putting together a PR to: 1. Add an option to allow webhook triggers to be accessed from the internet, and making the default False. 2. Make all HTTP methods...
I added three PRs to move this forward. Please take a look and give feedback on the individual PRs. 1. Core: https://github.com/home-assistant/core/pull/66494 2. Frontend: https://github.com/home-assistant/frontend/pull/11680 3. Docs: https://github.com/home-assistant/home-assistant.io/pull/21637 ```yaml automation:...
> Are we saying that it's better to strip ability and responsibility rather than give someone an opt-in feature (which could have like 3 warning popups if you're that concerned...
This would be a nice feature to have. For those that use the crypt remote with filename_encryption it's hard to find the right file via the GCS interface (gsutil/web).
> Q) What about the case where someone is configuring a device for use elsewhere, such as a remote site or a restricted network? They may not be able to...
The version string looks too large ```python >>> len('2.5.22.9b46cb4ef086') 19 ``` https://github.com/meshtastic/protobufs/blob/068646653e8375fc145988026ad242a3cf70f7ab/meshtastic/mesh.options#L72 ``` *DeviceMetadata.firmware_version max_size:18 ``` What is the output of this command? `git rev-parse --short HEAD`
I think the version string gets generated here: https://github.com/meshtastic/firmware/blob/9b46cb4ef08688a2f424c76d8425561e4f5db844/bin/readprops.py#L33 And here: https://github.com/meshtastic/firmware/blob/9b46cb4ef08688a2f424c76d8425561e4f5db844/bin/platformio-custom.py#L117
I think nanopb is looking for a null terminated C-style string. 17 bytes plus the null terminator at the end could make sense. ```python >>> len(b'2.5.22.9b46cb4ef0\0') 18 ``` What you...
One thing I'm still not clear on: Is extraNonce intended to be interpreted as an integer value by clients, or is it intended to be treated as 4 raw/opaque bytes....