Nick Moore

Results 13 issues of Nick Moore

I never really looked into Windows support but sounds (from Tony D's video) like FUSE support is a dead-end. Perhaps there's a native Windows API which could do this, in...

If there's a machine.RTC().init() available, initialize the RTC before upload so that files get meaningful timestamps on them. See https://github.com/micropython/micropython-esp32/issues/87

micropython includes `uzlib` and `ubinascii` so we could get a lot better throughput using a combination of those instead of `repr`. `uzlib` helps quite a lot with source code and...

(another Tony D one) mac's default text editor tries to save files in a way which doesn't work with mpy-fuse, probably versioning or resource forks or something, look into this.

utils should have environment variables to set defaults for the --port and --baud options. export ESP_PORT=/dev/ttyUSB0 export ESP_BAUD=115200

(Tony D pointed this one out in his video) It should really exit raw REPL mode between operations, as being stuck in raw repl mode is confusing.

If you try to socket.connect() to an unreachable TCP/IP address it eventually (~15 seconds) returns with `OSError: [Errno 113] EHOSTUNREACH` However, if you Ctrl-C during this time, the exception is...

#4340 ... Adds a fill() 2D operator much like hull() which gets rid of all the holes in a 2D shape. TODO: - [x] Is it possible/desirable to implement a...

PR: Enhancement

I had a need to get an outline around a 2D geometry created partly from dynamic text. The usual `offset(-n) offset(n)` doesn't follow closely enough around the outline and doesn't...

### Fix foreign key row reporting My previous PR added a 'row' to the FK error, but it turned out to be wrong in many cases as it was actually...