Tor E Hagemann
Tor E Hagemann
Tested node versions: - v5.9.0: works as per your message - v6.0.0: same - v6.2.2: same - v6.3.0 (current): throws `TypeError` Looks like a node regression sometime between 6.2.2 and...
FWIW, looks like this was fixed by 6.4.0: ``` > process.versions { http_parser: '2.7.0', node: '6.4.0', v8: '5.0.71.60', uv: '1.9.1', zlib: '1.2.8', ares: '1.10.1-DEV', icu: '57.1', modules: '48', openssl: '1.0.2h'...
Thanks!
A fast hack (important to understand what it does) is as follows: ``` sudo chown 0:0 footswitch sudo chmod 6711 footswitch ``` This makes the executable always run as `root`,...
+1 for this user's question, esp. we might be able to help: 1) add test coverage, 2) harden, 3) contribute documentation. Context: I'm interested in trying to start-up something soon,...
I could try at a PR for fixing the $schema inclusion reported in #48, for example. * Do you think that's a worthwhile endeavour @danielgtaylor, or do you have any...
tl;dr: If you're doing a quick script and want to avoid: ``` Exception ignored in: ... RuntimeError: Event loop is closed ``` One can: ``` import pywizlight # in main:...
From https://developers.meethue.com/support/: > You can send commands to the lights too fast. If you stay roughly around 10 commands per second to the /lights resource as maximum you should be...
+1 for implementing list-tubes, or: would you have time to review a PR if I were to open one? We're looking for an easy way to get started here, if...
I'm in favor of #67059 (this proposal) over #65562 because I am often generating keys with crypto/ed25519 for tests. I want the key to be from a potentially-random seed, but...