Kyle Kelley
Kyle Kelley
Recently I had a large set of merge conflicts on a branch I was working with another developer after they rebased. I ran `git reset --merge`, and merge-conflicts left funny...
If you leave the eventsource open after "ready" it continues launching more Reproduction steps: * Visit about:blank * Open DevTools Console * Paste: ```js es = new window.EventSource('https://mybinder.org/build/gh/nteract/vdom/master') es.onmessage =...
As mentioned by @gaearon in https://github.com/facebook/react/issues/11315#issuecomment-338469109, we should create an adapter that converts any kwargs to match what React expects exactly (as is also written in our spec).
Since the `style` attribute has to be a dict pure code has to be written like this: ```python div("hello", style={ "border": "red 3px solid", "padding": "10px 20px 10px 20px", "display":...
Since there's a WIP port of React to [Kotlin](https://github.com/lelandrichardson/recoil), we might have ourselves a nice layer for JVM kernels to do `vdom` things. For Scala, we could also write a...
Let's dogfood some documentation for `vdom`! It can be similar to the [vdom notebook in nteract desktop](https://github.com/nteract/nteract/blob/master/packages/desktop/example-notebooks/vdom.ipynb). ## Getting started contributing example notebooks 1. [Install nteract](https://github.com/nteract/nteract/releases/latest) follow instructions there for...
Since https://github.com/nteract/vdom/pull/14, we've started generating documentation on the fly for the component helpers. We could take this another step if we want, changing `createComponent` like this: ```diff diff --git a/vdom/core.py...
In order to help folks understand why landing on the bookstore cloning page (served as `text/html`), we should outline the threat model, security risks, and mitigations. ## Summary Some initial...
To _save_ on saving, let's store the hash of the serialized json before sending on to S3. Then we'll know if we're sending the same again. There may be a...
The documentation lists how a frontend can request to shutdown. What if a kernel wants to inform about exiting? /cc @rdblue