Results 49 comments of 박현우

OK everything else is quite optimized, and if I replace the polling thread's `Thread.sleep` to `Thread.yield`. I can easily achieve 8k polling rate. I'm not sure whether this is the...

I've used this patch for about a month and hadn't had any issues on mordernchic skin.

This is weird... It should definitely be fixed. https://github.com/gelldur/luaj/blob/master/examples/jse/SampleSandboxed.java

Hello, this issue was found in accident. I encountered an occasional frame drops, and I trird to profile the application. The profiling code created a lot of logs (less than...

Some tricky case you might wanna consider? https://www.gdcdental.com/files/product/Westcott-Curved-%23-S35.jpg because `Editor._retrieveURL` correctly downloads the URL but unquotes `%23` to `#` upon return, and just assigning `Westcott-Curved-#-S35.jpg` to `img['src']` won't work, as...

Hope one day we get a pure electron-based webapp of Anki that we can also access on https://ankiweb.net/

If this code moves all editor-related code to typescript, what API's will be exposed to allow custom buttons? ```py def add_buttons(buttons: List[str], editor: Editor) -> None: shortcut = "Ctrl+Alt+Shift+H" def...

This looks like the old Anki window. I guess this PR is to resolve future technical debt, but I think this could be re-implementing some other WYSIWYG toolkits like [summernote](https://summernote.org/)...

vscode has options of specifying extensions to enable on restricted modes. ``` "extensions.supportUntrustedWorkspaces": { "ms-vscode.sublime-keybindings": { "supported": true } } ```