Kyle Kelley

Results 147 issues of Kyle Kelley

While trying to pick an adjective for [an nteract release](https://github.com/nteract/nteract/issues/2653), I opted to use this package instead of my usual `grep` through `/usr/share/dict/words`. I was surprised to not find many...

This may probably come as a no brainer but the more achievements someone earns the larger that `unlockedAchievements` object gets, which in turn gets serialized, which will increase the time...

My first thought here (other than installing the package), is to add achievements for some of the holidays. ![screen shot 2014-03-18 at 2 01 16 am](https://f.cloud.github.com/assets/836375/2445140/4ee604cc-ae6b-11e3-9e39-475132da31cb.png) ![screen shot 2014-03-18 at...

When building this, I thought it was saving state per user. Turns out it's actually per project. You'll get achievements all over again once you open an editor in a...

Looking over one of the Python implementations (pywin32-ctypes), they're getting [access through advapi](https://github.com/enthought/pywin32-ctypes/blob/master/win32ctypes/core/ctypes/_advapi32.py#L46-L50) by way of `CredReadW`. This is outside my domain, but it seems like the credui interface may...

Rather than the position reported from the frontend. This leads to interesting behavior: Totally valid: ✅ Also valid, deeper in: ✅ My cursor is at the bottom, yet it's "completing"...

bug

This is somewhat of a cross project issue, as I badly want to improve support across all the Jupyter kernels. However, for my current language of choice, javascript, I want...

discussion

The node repl lets you load a local file by using `.load filename`: ``` $ echo 'x = 2' > f.js $ node > .load f.js > x = 2...

enhancement

I've got some users that would like to be able to do cleanup within a notebook when it receives a certain signal, using the standard python library's `signal` package: ```python...

enhancement

We're having an issue where cleanup of subprocesses of our kernel is taking longer than `shutdown_wait_time`, a configurable from within the `AsyncKernelManager`. What are some ways we can delay shutdown...

enhancement