Ned Konz

Results 23 comments of Ned Konz

See Mark Butcher's µTasker (https://www.uTasker.com); he has a port of his uTasker operating system that includes a CanOpenNode port for the i.MXRT series MCUs.

Despite having locked `pry` to 0.13.0, `pry-byebug` still gives me the `UncaughtThrowError: uncaught throw :breakout_nav` error. @thomaswuensche said: > As a hacky fix, `Pry.load_rc_files` can be added to `pry/lib/pry.rb`. This...

OK, so I made my own version of the `pry` command that `require`d `pry-byebug` early. I still get the same `:breakout_nav` error upon executing a `pry-byebug` command, despite having `start_with_pry_byebug`...

I just ran into this bug, which is making several days worth of my work unusable. While I can use @DvdGiessen's work (which also adds hashing) for a local branch,...

In 1.21, bound methods now have different hash values. So (for instance) storing them in a `set` for use as callbacks will result in multiple callbacks to the same method...

There is a problem with the I2S handling in micropython if you're using the HUB75 support from pimoroni: the HUB75 handler uses both DMA complete interrupts, which means that the...

The SSL socket's allocated memory is freed after the stream is closed (via an ioctl), then the ioctl is passed to the wrapped socket, which also frees its allocated memory....

Actually, directly creating a `package.json` from a `manifest.py` doesn't really cover the entire requirement. As a package developer, I want to ignore `.mpy` files and other intermediate/implementation details, concentrating on...

OK, I tested some additional cases and found that I was getting OSError -113 (and/or 118?) from time to time. I added retries around these errors after a `gc.collect()` and...

I would like to add an optional third field for the contents of `urls` that would allow for secondary `github:` URLs (those not from the same repo as the `package.json`)...