Louis Opter
Louis Opter
Hello, Thank you very much for your libraries, I was recently upgrading my monome Python stack (because Python 3.10 is deprecating some old asyncio stuff) and took the opportunity to...
[`kqueue(2)`](https://www.freebsd.org/cgi/man.cgi?query=kqueue) file descriptors aren't inherited by child processes therefore we need to fork before we call `event_base_new` from libevent. This is pretty annoying because it means we need to rework...
lightsd parses floats manually so they can be stored in integers but fails to support numbers in [E notation](https://en.wikipedia.org/wiki/Scientific_notation#E_notation), which are part of the [JSON standard](http://json.org/). The following functions should...
Equivalent to: ``` prev_color = get_light_state(target) set_light_from_hsbk(target, 0, 0, 0 or 1, temperature, 60 * 1000 * 5) sleep(60 * 5) powerOff(target) set_light_from_hsbk(target, prev_color, 0) # requires firmware >= 1.5...
Hello, I noticed @andrewshadura ended up pulling that patch I wrote last year, which is really cool, thank you. The reason why I didn't submit my patch back then was...
Hello, I'm here to say a couple things. First, I'd like to say thanks for all the initial reverse engineering work that was done here. Second, and I'm sorry if...
Hello, I need so start by saying that this is somewhat a duplicate of #15, though this was actually written last week. I think two different issues make sense but...
Hello, cc: @Pawka Thank you for maintaining that library (and @jpoehls for the original implementation), I found it very useful while implementing a project at my company! I had to...
At least as an option, in order to avoid a sensitive value from being leaked in the process list?
I lost an unreasonable amount of time on this. ## Pull Request Checklist - [x] The Certbot team has recently expressed interest in reviewing a PR for this. If not,...