Soeren Wolfers

Results 62 comments of Soeren Wolfers

@jasongrout That exactly describes what I saw and disliked. I also thought about the solution to pass around widgets that is presented there but didn't like it because it can't...

Do you run your notebook in an environment that has internet access?

In my case, the issue was that the notebook didn't have internet access, which is required by the js part of pivottablejs. Opening this issue for documentation, but also because...

@RRosio not sure but I think it should be changed regardless. If anything, you might argue that it should jump to get the cell output into view, but I can...

Just because I haven't seen it mentioned, this feature would allow matrix multiplication with named axes: ``` public static Matrix operator *(Matrix m1, Matrix m2) ```

One is the first lines of the readme says you have to have nummy preinstalled, although i agree that this would be better handled with an entry in `setup_requires` (not...

It is true that I cannot reproduce this with a regular python script execution. However, I would be surprised if Jupyter wasn't just sending SIGINTs to the kernel. For example,...

Thanks for looking into this, @corwinjoy . I don't think there is a connection of the problem I'm having to the referenced issues: 1. Your first reference is from the...

@corwinjoy Does your unit test replicate dying kernels or only unresponsive queries?

Interesting. Any idea why this wouldn't trigger when I try to interrupt a cell that is just ``` import time for i in range(50): try: time.sleep(1) except KeyboardInterrupt: pass ```