Jeremy Tuloup
Jeremy Tuloup
## Elevator Pitch Originally discussed in https://github.com/jupyter-lsp/jupyterlab-lsp/pull/1064. Currently `NodeModuleSpec` specs use the `scripts` field, for example: https://github.com/jupyter-lsp/jupyterlab-lsp/blob/18d5c8c2e068f63141ddba6339c1cb4173c96341/python_packages/jupyter_lsp/jupyter_lsp/specs/typescript_language_server.py#L7 ## Motivation Package maintainers might rename underlying files (as noticed in #1064). Reusing...
Glancing at the code briefly, it looks like the [`ensure_server` method](https://github.com/yuvipanda/hubtraf/blob/982eb53c534c53eaa49448cf215f0bd2d25ebc00/hubtraf/user.py#L80) starts the default user server. Maybe it could be extended to accept an optional `name` that corresponds to the...
It looks like the SRTM endpoints are down or not reachable anymore: http://dds.cr.usgs.gov/srtm/version2_1/SRTM1/ Getting the following error: ``` /srv/conda/envs/notebook/lib/python3.7/site-packages/srtm/data.py in retrieve_or_load_file_data(self, file_name) 143 r = mod_requests.get(url, timeout=5) 144 except mod_requests.exceptions.Timeout:...
Fixes https://github.com/jupyterlite/repo2jupyterlite/issues/17 Using https://github.com/yuvipanda/environment.yml/pull/1 for testing. - [x] Switch to `jupyterlite-xeus` - [x] Document how to install create the `environment.yml` (which can be a note in the README for now)
Currently `repo2jupyterlite` depends on `jupyterlite-xeus-python`: https://github.com/jupyterlite/repo2jupyterlite/blob/5c848e5f21c60297ceff0e2558b9abea3dc705b8/setup.py#L17 However there has been some refactoring lately to make it easier to load xeus kernels more easily in JupyterLite, with the creation of a...
Hey @yuvipanda! This repo is looking really promising. I also just learned about this one as well by @manics: https://github.com/manics/binderlite-builder With some more context in https://discourse.jupyter.org/t/idea-binder-jupyterlite-binderlite/14449/7 I was wondering if...
Similar to #10 It should be possible to choose a different language than English via a query string parameter. For example French or Simplified Chinese. The deployments would need to...
## Description JupyterLab often shows the following warning in the dev tools console:  ## Reproduce Using `4.2.0rc0` on Binder. But this is also reproducible from the latest commit on...
## References https://github.com/jupyterlab/jupyterlab/issues/16113. ## Code changes Implement the suggestion from @krassowski in https://github.com/jupyterlab/jupyterlab/pull/16138#discussion_r1555892452. Still not sure it's the "right" fix, but maybe it can already help limit the amount of...
## References #15035 List of supported webpack plugins: https://www.rspack.dev/plugins/webpack/ ## Code changes - [x] Use `rspack` instead of `webpack` for bundling - [x] Update various `webpack.config.js` to `rspack.config.js`. Or keep...