Violet Shreve

Results 44 comments of Violet Shreve

The project is for the most part, abandoned. It's still available on IPFS, though. Just know the index is about 1 year old now. https://cloudflare-ipfs.com/ipfs/QmQjsKamNFZRvCMXDvZXQmRYjsmSkmZG5pBCTY4LtMj8hs/

There is a kind of interesting question about the right way to do this. The way it exists in the PR, we add all the classes from `exchange.abc`, then all...

Rebased to get the windows timeout fix

@perllaghu > Would this pull in all the classes from `exchange.myExchange` - which is what the whole `exchange.abc` thing is there to enable? No, traitlets only traverses up the inheritance...

As mentioned in my reply, I want to rename the classes in `nbgrader.exchange.abc`. This is what the config would look like after this change for ExchangeList, for example. Traitlets doesn't...

Related to and likely solved by https://github.com/jupyter/nbgrader/pull/1761

This `ImportError` based on a regression that shipped in 0.8.4, but is now fixed in 0.8.5: https://github.com/jupyter/nbgrader/commit/7079e6af82abb4baeda4fcca4cbcab238cfe32d1

I'm not really concerned about getting `[[` and `]]` to work. I think they're already defined to work like `gg` and `G`. I was able to get what I really...

1. Your JupyterHub server doesn't need nbgrader. It will likely need some config to make sure that it launches Jupyter singleuser servers have access to the exchange directory. 2. Your...

nbgrader is built on top of a whole ecosystem, which includes some stuff that you may find helpful. For example, [IPython's %%capture](https://ipython.readthedocs.io/en/stable/interactive/magics.html#cellmagic-capture) may do exactly what you want. ```python %%capture...