Dr. Juno Woods

Results 166 comments of Dr. Juno Woods

I think I'm having similar problems. Even after setting up nbdime, I have to force it to use nbdime as the mergetool: `git mergetool --tool=nbdime`. When it opens the browser...

I had used `nbdime config-git --enable` without the `--global`. Should this not be sufficient?

Whether global or local, I'm having the same issue as OP. I cannot share the notebooks with you, unfortunately. Here's an example image: ![image](https://user-images.githubusercontent.com/165284/57144401-a141cc80-6d86-11e9-9e6b-27eb08dd72a9.png)

@v0dro I've enabled Travis on the Travis-CI website.

I was wondering what the status of this PR is. I've got two parallel state machines which I want to transition to from some state in a different machine. When...

Sure. Here's an MWE. ``` from transitions.extensions import HierarchicalGraphMachine as BaseMachine class Toggle(BaseMachine): def __init__(self): states = ["a", "b"] transitions = [ {"trigger": "next", "source": "a", "dest": "b"}, {"trigger": "next",...

I'm seeing the same problem, also on Yosemite.

Thanks. I was able to get it to work with move eventually. And yes, I've been experimenting with using green shoes for a plotter GUI. You can find it in...

Oh, nice! I actually implemented something very similar, but which also accepts an RSVG::Handle, in case the image has already been read. The code's pretty similar to yours. http://github.com/mohawkjohn/green_shoes You'll...