jerch

Results 548 comments of jerch

@mobiware Are you still interested in the signal feature? Ive found another use case with django-solo, which might benefit from update signals (it caches a single instance to reduce db...

@goenning 2500 cols? :scream: Not sure where to start here - maybe lets make it blunt: this sort of perf degradation is kinda to be expected with canvas renderer for...

Hmm thats interesting, xterm.js does not do anything different for different col sizes, maybe thats some sort of cache thrashing in the browser/JS engine? Do other browser engines (webkit/Firefox) show...

@Tyriar Whats the right way to scale a canvas to operate on real device pixels instead of css pixels? Should that be done on width/height attribute level of the canvas...

I just looked into this and well - thats quite involved to solve correctly, conceptually and technically. The basic conceptual issue here is, that the atomic information of images are...

I am not very deep into the browser side of the code, @Tyriar has more insights here. Still I think it is not possible to move an already DOM-attached terminal...

@ckarli Thx for the PR. Before we can do a new release - could you also change the tests to include 5.1 here? https://github.com/netzkolchose/django-computedfields/blob/f32279873b0a72189ac7d9cb830cda9e01fca232/.github/workflows/build.yml#L70

Glad to see a move back to npm - it is not only the official package installer, it also got much better lately, but more importantly we encountered issues with...

@verschmelzen Thx for finding this one - yes you are right, it currently does not decouple data across threads correctly. The issue is line 31-34, were the dict objects get...

Just benchmarked it - fully decoupling is actually the fastest here: ```python STORAGE = local() def get_DELETES(): try: return STORAGE.DELETES except AttributeError: STORAGE.DELETES = {} return STORAGE.DELETES def get_M2M_REMOVE(): try:...