Peter Parente

Results 259 comments of Peter Parente

@rblcoder Thanks for the quick look and for spotting that it's an OpenSearch Serverless specific issue.

@prudhvigodithi 👍 We're using `~> 2.3` and can confirm the problem has been resolved.

Happy to review a pull request if you'd like to implement support and the implementation works when the user doesn't have git installed or has multiple git repositories cloned under...

Another problem is that `url.parse('http://something.com/foo/bar?next_url=http://something.com/baz')` results in: ``` { protocol: 'http:', slashes: true, auth: null, host: 'something.com', port: null, hostname: 'something.com', hash: null, search: '?next_url=http://something.com/baz', query: 'next_url=http://something.com/baz', pathname: '/foo/bar', path:...

I'll take a crack at a test. I do need to amend my comment above, however: the code does special case the correction of `://` in the query string after...

@dclong The scan operation is only performed when a get is performed: https://github.com/parente/jupyterlab-quickopen/blob/ca55830e460be6f934d83642425c073d3e2fc284/jupyterlab_quickopen/handler.py#L81 I've not seen the slow down when jupyterlab opens myself. I'll be happy to review a pull...

Happy to review a pull request if you'd like to implement pattern support and the implementation turns out to be simple enough to maintain.

In practice, will IPython or other common kernels be able to field a `resource_info_request` and respond with `resource_info_reply` while busy doing other work? For example, information like dynamically allocated Spark...

The SVG image is referenced in markdown with `![](spiral.svg)`. The img tag gets put in the DOM with a simple `src="spiral.svg"` in both views. In notebook view, this resolves to...