Ying LI
Ying LI
@ketor Just wonder whether you will plan to update Dokan to Dokany, if you have evaluated Dokany.
This will be a great feature. I just found that actually the underlying tree-sitter had have a WASM version for years. Please check https://github.com/tree-sitter/tree-sitter/blob/master/lib/binding_web/README.md So, is it possible to build...
I am not familiar with technical detail. I thought Jupyter notebook was a web application and the ability to display any HTML (including the support of Mermaid diagram) was natural....
I succeeded testing a few functions of this extension in Jupyterlab 4. It is wonderful. But I am still waiting for an official upgrade.
I tested solara in Jupyterlite (https://jupyterlite.readthedocs.io/en/stable/_static/lab/index.html) with the following code: ```Python %pip install "solara-ui[all]" import solara # Declare reactive variables at the top level. Components using these variables # will...
I tested in a few environments and met the same issues. The issue "Repository is read only" happened when any of "Pyodide Kernel" or "P5.js Kernel" was started.  Even...
I am looking for a way to call AI APIs, such as OpenAI API, from Pyodide. I understand there is a limit on networking in Pyodide. So instead of calling...
I used kernelspy(https://github.com/jupyterlab-contrib/jupyterlab-kernelspy) to check the messages after the button was clicked, and I saw:  So it seems the messaging system worked well but for some reason the messages...
I put my testing code in the function of async execute(content: any, parent: any) , with an if-else branch near https://github.com/jupyterlite/pyodide-kernel/blob/67a976f0d8c8d21e246f46703c3940bb5f95e187/packages/pyodide-kernel/src/worker.ts#L307. In future, the code will be run in a...
In Jupyterlite with Pyodide kernel, I tried to access the mounted files. ```Python def show_file_contents(file_path): try: with open(file_path, 'r', encoding='utf-8') as file: contents = file.read() print(contents) except FileNotFoundError: print(f"File not...