Skip to content
#

live-coding

Here are 286 public repositories matching this topic...

sonic-pi
sandpack
danilowoz
danilowoz commented Feb 18, 2022

Currently, a lot of operations are being done in the componentDidUpdate, and as Dan mentioned on #377 this is a pattern that must be avoided, in order to prevent nested updates. So, we need to find out how to improve this method and address other performances issues that this might be causing.

I haven't gone any further and haven't collected evidence of any performance issues, but as the curr

good first issue feature:request triage
donkirkby
donkirkby commented Jan 6, 2022

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', (100, 100)))
differ = LiveImageDiffer()
differ.compare(a, b)

What happened

It complained about the missing alpha channel.

/home/don

Improve this page

Add a description, image, and links to the live-coding topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the live-coding topic, visit your repo's landing page and select "manage topics."

Learn more