Jeremy Tuloup

Results 2209 comments of Jeremy Tuloup

The [mimetypes](https://docs.python.org/3.7/library/mimetypes.html) module from the standard library could be worth a try: ```python import mimetypes mimetypes.guess_type('https://raw.githubusercontent.com/jupyterlab/jupyterlab-demo/master/data/iris.csv') ``` ``` ('text/csv', None) ``` Not sure how well it would handle more exotic...

I'm having the same problem. Just to be sure, I took the latest version to include the pull request #17. But the issue still seems to be present. When testing...

Ah it looks like there is a Segmentation fault again with the latest releases: https://github.com/jupyterlab/jupyterlab/actions/runs/9500757565/job/26184590724?pr=16005 ![image](https://github.com/jupyterlab/jupyterlab/assets/591645/95a3eebe-670d-4604-bfa2-3874b1013b12)

It looks like `0.7.4` fixed the segmentation fault issue reported above: ![image](https://github.com/jupyterlab/jupyterlab/assets/591645/db940c00-78b3-4486-ad25-35d9ea426765)

For reference, Rspack 1.0 is now available: https://rspack.dev/blog/announcing-1-0

> That said, it initially crashed with a cryptic error messagewhen there was something wrong in my rspack config so there are still some trade-offs. Do you recall what issue...

Thanks @davidbrochart for proposing this. Not being able to run JupyterLab anymore after a single `pip install jupyterlab` sounds a bit disruptive, similar to the previous question about whether to...

Decoupling the frontend from the backend would indeed allow for more flexibility here. Just wondering whether introducing new packages might make the setup more complicated and increase the number of...

@davidbrochart maybe a temporary solution could be to document (in the JupyterLab docs) how to use `jupyverse` as an alternative to `jupyter-server`? It looks like this would otherwise involve more...

Should this work be continued in the [`jupyter-collaboration`](https://github.com/jupyterlab/jupyter_collaboration) repository now that the RTC features have been moved to a separate package?