Joe Marshall

Results 121 comments of Joe Marshall

It occurs to me, if you're willing to restrict yourself to browsers where webworkers work, then you don't really need interrupts for most stuff, you can kill the webworker to...

On https://joemarshall.github.io/websensors/lessons/1.Introduction_to_Web_Python/python_intro1.html if I put ``` while True: print("WOO") ``` or ``` while True: pass ``` into a code box and click start, I can stop the browser. It doesn't...

Phew. Thought I was about to get a million emails from students after the last iOS fix!

Also, I added some up to date readme in case that is useful.

If you make a packages/pyodide folder and then a folder called src below that. Unpack the GitHub into src, and move the meta.yaml up a folder. The current build is...

@kou And these are the python changes

> @joemarshall thanks for the PR! > > We might want to expose `is_threading_enabled()` in pyarrow publicly (it might be useful for downstream packages as well?), in `__init__.py` > >...

Oh and for now I have blocked the auto-setting of PYARROW_* to happen only on emscripten - I don't know if that makes sense or not, but it isn't possible...

> @joemarshall is this blocking https://github.com/pyodide/pyodide/issues/2933? > > Could you please reply to comments, rebase, etc? Thanks Like @kou says, this one is reliant on the c++ library changes for...

If you load it with pyodide.loadPackage from JavaScript it should work. - Or in python call: ``` import pyodide_js pyodide_js.loadPackage(URL) ``` It's because micropip doesn't preload native libraries in the...