Don Kirkby

Results 60 issues of Don Kirkby

I couldn't see how to link to an individual item. If someone wants to reference something from an answer on Stack Overflow, for example, it would be nice to link...

Fixes a problem with Django 4.1, refs #8587. This is the smallest change, just removing the two `sourceMappingURL` lines from the minified CSS files. One downside, however, is that someone...

The new code vision inlay feature is very nice to see who wrote each method, but it adds extra lines to the source code. That breaks the alignment with the...

bug

The browser lessons from #262 are a good start, but they could be improved. Ideas: * [ ] The [Python tutorial] isn't very approachable for new programmers, try to find...

enhancement

The browser version's turtle graphics support has all the same features as PyCharm, except `create_image`. * [x] package matplotlib with deployment * [x] implement `create_image` on canvas * [ ]...

Make `Image.show()`, or [`ImageShow.show()`] display the image on the live canvas. It looks like you can [register] a new display method. Also look for some tutorial ideas. * [realpython.com tutorial]...

In the browser version, a long code sample with a canvas goal leaves a big gap between the output canvas and the goal canvas. * [x] Cap code sample's length...

## What I did Tried to compare two images without alpha channels. ``` from PIL import Image from space_tracer import LivePillowImage, LiveImageDiffer a = LivePillowImage(Image.new('RGB', (100, 100))) b = LivePillowImage(Image.new('RGB',...

bug
good first issue

Implement the `mode()` method on the screen class. Looks like there's already support in `TNavigator`, you just have to call `t._setmode()` for all active mock turtles. Check whether the module...

good first issue

Add support for the `Screen.bgpic()` method. One challenge is that the PyCharm canvas only supports PNG graphics, not sure about the browser. The turtle module supports at least GIF and...

good first issue