Trevor Paley

Results 6 comments of Trevor Paley

I created [`use-dnd`](https://github.com/TheUnlocked/use-dnd) to allow this if anyone is interested in a pre-built solution. Unfortunately it's HTML5 DND-only (so no touch support) but if that's all you need then it...

I think that either 2 or 3 is the best one. 2 is certainly the least verbose (which is nice), but 3 looks more complete and full. I don't think...

Now that Racket's version of Chez Scheme supports compilation to WASM via emscripten, are there any plans to extend that to full Racket? I've tried to coerce Racket to compile...

Complications with zlib were the problems I was facing, though I wasn't aware of that flag so I was just compiling zlib with emscripten and linking to that. Created #4180...

Inspired by the workaround in https://github.com/grafana/grafana/pull/60172 which mentioned this issue, here's a more distilled workaround: ```ts function bindAddCommandContext(editor: editor.IStandaloneCodeEditor, context: string): { dispose(): void } { const addCommand = editor.addCommand;...

Rather than have `readonly` by default (which seems dangerous for interacting with libraries), I think it would make more sense for the flag to just disallow unannotated array/object types (and...