seidnerj
seidnerj
with some additional tidying up for the code styling/language.
This excerpt from the log below: [11/15/2021, 3:12:30 PM] [homebridge-neato] This plugin generated a warning from the characteristic 'Spot ↔': characteristic was supplied illegal value: number 0 exceeded minimum of...
When using show() for an animated GIF with version 9.2.0, Pillow converts to image to PNG by default thus eliminating the animation. I suggest the following change in "ImageShow.py" to...
I have an animated GIF that has about 60 frames, some of the frames are encoded in 'L' mode and others are in 'RGB' mode. Many actions, including a simple...
1. Use math.ceil instead of ldata when calculating ldata, otherwise encryption could sometimes result in invalid output, decryption could sometimes fail as well. 2. Use math.floor instead of int in...
### What do you need help with? I'd like to be able to count the total playing time for certain apps per Apple TV user. I can get the play...
It says "no data points", also under "http request duration". Download/Upload/Ping/Speedtest graph all look good. No error in Prometheus. No issues seen when running docker-compose logs. Advice?
If you could point me in the right direction I might be able to implement this myself and add a PR. Thanks in advance
There haven't been commits for over a year...?
I have the following code: @retry(retry=retry_if_exception_type(SomeException), stop=stop_after_attempt(5), before_sleep=before_sleep_log(logging.getLogger(), logging.ERROR), wait=wait_exponential(multiplier=1, min=1, max=10), before=before_retry_handler) async def async_wrapper(param): .... async def before_retry_handler(retry_state): .... Trouble is before_retry_handler has to be async because it...