Jim Mussared
Jim Mussared
Rebased and added tests for drawing ellipse/poly out of bounds.
Thanks @fgervais -- I didn't know Espressif were publishing docker images, this looks very useful and it dramatically simplifies the instructions not having to stuff around with checking out at...
My interpretation of https://docs.python.org/3/library/functions.html#open is that by not specifying an encoding to `open()` we get the default encoding. We only support one encoding, so it makes sense that we're implicitly...
> So for MicroPython the default encoding is: No encoding. What would it mean for there to be "no encoding" for a file opened in text mode? MicroPython's default (and...
See https://github.com/micropython/micropython/pull/9083 for a proposed fix.
> With an advertising packet like this: > 020106050318182618 > I think result.services() should yield both 0x1818 and 0x1826, but it only seems to decode the first one. Thanks, this...
Thanks @andrewleech I think maybe this could just be simplified by having `DeviceConnection::__init__` always unconditionally create the event. I'm not sure I can see any code paths now that don't...
@vega1013 > The qr functions seems to calculate wrong values if i'm not totally wrong. QR decomposition isn't unique, and this is a valid QR decomposition. I would guess that...
Note of course that to compute the QR algorithm you need a test of convergence rather than just doing 100 iterations :)
> So, you are, in effect, saying that numpy flips the sign of the matrix entries, if they are negative, aren't you? I'm not sure if it's doing it intentionally,...