Philipp Rudiger

Results 1206 comments of Philipp Rudiger

Yup scroll arrows. That's quite unfortunate, although I'm surprised this flew under the radar until now.

This seems very surprising, a significant fraction of our test suite uses a threaded server to run the tests.

This appears to be a CPython bug/regression, see https://github.com/python/cpython/issues/113964. I think the solution for now is to add a time.sleep after starting the thread to ensure the thread is fully...

I think you are simply unaware where we get these icons from: what is supported comes from sphinx-design, here is the list of supported icons: https://sphinx-design.readthedocs.io/en/latest/badges_buttons.html#octicon-icons The ones you are...

JupyterLite test execution is failing the UI tests, which is unrelated. Will merge.

Really nice, will review this week!

My main question surrounds `RemoteFileProvider`. I like the idea that this is extensible but I also wonder if we can provide a generic wrapper that supports `s3fs`, `gcfs`, `adlfs` etc....

Thanks for digging into this, I'd be very happy to see a PR with your fix.

Seems like a nice addition, I'd probably implement it as a parameter with something like this: ```python value_label = param.String(readonly=True) ... @param.depends('value', watch=True, on_init=True) def _update_value_label(self): idx = indexOf(self.value, self.values)...