William Stein
William Stein
Motivation: It does not seem to just work with the default minikube, due to lack of nfs support.
Right now we suggest this in the README.md: ``` kubectl create rolebinding cocalc-kubernetes-server-binding --clusterrole=admin --serviceaccount=default:cocalc-kubernetes-server ``` However: - The account doesn't need admin for the entire namespace, but we should...
There is something called WASIX that is "an effort to port legacy POSIX APIs (including many with questionable design such as fork()) to WASM." This is a relevant issue in...
Currently the sqlite in cowasm works fine when used *in memory*. However, if you instead try to use it with the filesystem, there are problems. I noticed that [this post](https://wasmlabs.dev/articles/python-wasm32-wasi/)...
After many years, mpmath is now at version 1.3! (Instead of 1.0.) It would be nice to upgrade cowasm to use it. Installing it is fine, but the test suite...
I started on this, but it's not done yet: https://github.com/sagemathinc/cowasm/tree/main/python/py-matplotlib It's actually VERY important for this project to be actually useful for, e.g., Jupyter notebooks.
See https://github.com/pyodide/pyodide/tree/main/benchmark and https://pyodide.org/en/stable/project/roadmap.html#improve-performance-of-python-code-in-pyodide
The Jpython python parser strips 0's from the end of numeric literals. This is annoying and means that, e.g., "2.0" can't be a "constructor for a floating point number". Example:...
This is presumably just some state involving /sys/stdout, /sys/stdin, etc. with our "run a subprocess" functionality. It happened in this session using https://cowasm.sh ```sh Type 'ls /usr/bin' for a list...
We finally have service workers working, e.g., at https://python-wasm.org. However, they just use the / scope. This would presumably conflict with embedding python-wasm into sites that have their own service...