Jake Teton-Landis

Results 129 comments of Jake Teton-Landis

Here context2 should actually a reference to context1 since they have the same underlying memory pointer address. The issue is there’s a bug in the asyncified runtime’s newContext method where...

Slate should not re-render the DOM or change the DOM’s selection if the HTML produced by the IME matches the HTML or selection that Slate would render after the input...

@dylans if fixes rely on input events, there's no way to port those to Android - Android handles input like a circa 2010 browser; the input events there are not...

Another thing - open_thread_safe wraps every call to a SQLite connection or its derived objects like statements in a mutex, which makes it safe for multiple threads to share a...

The reason the first example fails is because your call to executePendingJobs is re-entering the execution of the WASM module while it is suspended waiting on the name.get native promise,...

Thanks for making the SQLite colab. Is there a way to run these offline? I'm going to be on a plane tomorrow and want to learn Logica. I'll give your...

I think a zero-copy form should be doable - happy to accept a PR for it. I haven't had much time to work on the project myself though

Calling instance.rerender(sameRootNode) will force a synchronous render, after that you can await writing to stdout yourself, once that resolves output should be synchronized. Something like this: ```ts async function flush(instance,...

If you open a PR, I'll merge it if the tests pass :)