Dave Hirschfeld
Dave Hirschfeld
This would be useful indeed 😔
People here seem to be conflating `jupyter` with a notebook environment. `jupyter` itself is a protocol for frontends to talk to kernels (repls) for any of the many languages implemented....
This would be a very useful feature! My thoughts on how it could work are as follows: * Manually specify a mapping of "group name" : "LDAP group" for allowed...
You've probably already seen but the latest docs on the debug adapter api are quite good: * https://code.visualstudio.com/docs/extensionAPI/api-debugging * https://code.visualstudio.com/docs/extensions/example-debuggers
[It looks like the docs have moved](https://code.visualstudio.com/blogs/2018/08/07/debug-adapter-protocol-website): https://microsoft.github.io/debug-adapter-protocol/
In the published documentation they specify the `create-table` command as: ```bash aws dynamodb create-table \ --table-name delta_log \ --attribute-definitions AttributeName=tablePath,AttributeType=S AttributeName=fileName,AttributeType=S \ --key-schema AttributeName=tablePath,KeyType=HASH AttributeName=fileName,KeyType=RANGE \ --provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5 ``` *...
Wow! 😍 The UI already looks pretty great - can't wait to be able to use it!
This sounds like the same issue I saw with the `PerspectiveWidget`: https://github.com/widgetti/reacton/issues/6#issuecomment-1358818643 There it was suggested by Maarten Breddels that the `PerspectiveWidget` might not be hooking up the lumino resize...
> Anyone able to get this working? From the linked issue: *I was able to work around that by wrapping the perspective table in an Output widget* Not ideal, but...
The crux of the issue seems to be reusing `str` as the serialialized representation of multiple different types. Might it be possible to, instead of serializing multiple types as `str`,...