David Leen
David Leen
This commit adds functionality to test for build failures during the merge process. The build script is specified via the command line flag: --build-command=make_script. The make_script should return 0 if...
This commit adds the GitConfigStore class. This allows us to easily get and set keys and values in git config. The purpose of this class is to enable commands to...
## Description A bug was reported in https://github.com/jtpio/jupyterlab-system-monitor/issues/87 about the UI lagging with several kernels running. The issue was traced to the system monitor extension as disabling that extension while...
Poor mans fix for #123
Hi Jeremy (@jtpio), Thanks for the really awesome extension! I was wondering if you have the time to cut a new release which includes #80 as I think this is...
Sometimes I use VSCode when editing notebooks. The "intellisense" features (powered by pylance/pyright) work surprisingly well. I really like using `@patch` when adding methods to functions in notebooks as it...
Compared to `nbformat` the outputs field of `execnb` remains as an array of strings (for compatability with json) instead of being squashed to a single string. This prevents `execnb` from...
Following the tutorial notebooks: ``` async def populate_memory(kernel: sk.Kernel) -> None: # Add some documents to the semantic memory await kernel.memory.save_information_async( "aboutMe", id="info1", text="My name is Andrea" ) await kernel.memory.save_information_async(...
## Description I follow the instructions for the Scala Language Server (Metals) integration: https://jupyterlab-lsp.readthedocs.io/en/latest/Configuring.html#example-scala-language-server-metals-integration. There weren't any errors, but the LSP wasn't returning any suggestions aside from the kernel ones....
## Description First off, thanks for the great Jupyter extension! I have a bit of a strange issue and hoping you might be able to give some pointers. When I...