Andrew Berry

Results 82 issues of Andrew Berry

Currently debugging invalid ready code is pretty tricky. For example, it's possible for `waitForSelector` to timeout, but there's no easy way to determine what test case actually caused the error....

It's kind of painful trying to watch your browser when 10s of popups keep spawning!

Fixes the issue discussed at https://github.com/merbanan/rtl_433/issues/2105. To do: - [ ] Tests

This PR replaces #1665 . Currently, the significant difference is that it removes some of the protocol / model mapping the prior PR was doing, and also resolves conflicts against...

I recently set up an Acurite 0899 rain gauge, and I am getting spurious readings every few days from it: > [weather_station] time : 2022-07-07T01:19:57-0400 > [weather_station] model : Acurite-Rain899...

The latest Home Assistant 2021.12 release has made time parsing stricter, and now the bridge is throwing errors for time fields: ```log 2021-12-11 23:49:43 ERROR (MainThread) [homeassistant.components.sensor] Error adding entities...

bug

I've been maintaining an [addon for Home Assistant](https://github.com/pbkhrv/rtl_433-hass-addons/issues/31) to integrate rtl_433. It looks like there's interest in recently added protocols, as seen at https://github.com/pbkhrv/rtl_433-hass-addons/issues/31 and https://github.com/pbkhrv/rtl_433-hass-addons/issues/33. Currently, we're building the...

This PR upgrades to cheerio 1.x. I had difficulties switching to the new HTML parser, so I switched back to `HtmlParser2` as used in cheerio 0.20.0. Otherwise, replaceText() was failing...

Honkit uses cheerio 0.20.0, which has some child dependencies that throw security notices. While I imagine none of these are exploitable, it's still noise in security scans given they've been...

dependencies
Type: Security

CsvReader accepts an `\SplFileObject` as it's first parameter, while CsvWriter accepts a stream as it's third parameter. https://github.com/portphp/csv/blob/master/src/CsvReader.php#L82 https://github.com/portphp/csv/blob/master/src/CsvWriter.php#L43 Ideally, these should both be the same type, as well as...