I hereby claim:
- I am dedan on github.
- I am dedan (https://keybase.io/dedan) on keybase.
- I have a public key whose fingerprint is 2656 E66A 9C5B 94BA 33EE 8B88 1F41 872C F8E0 9F14
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| test |
| Your OS X is ripe for brewing. | |
| Any troubles you may be experiencing are likely purely psychosomatic. |
| My PRP$ B-NP O - B-A0 O | |
| brother NN E-NP O - E-A0 O | |
| has VBZ S-VP O has S-V O | |
| a DT B-NP O - B-A1 B-A0 | |
| dog NN E-NP O - I-A1 E-A0 | |
| that WDT S-NP O - I-A1 S-R-A0 | |
| has VBZ S-VP O has I-A1 S-V | |
| a DT B-NP O - I-A1 B-A1 | |
| cat NN E-NP O - E-A1 E-A1 |
| import subprocess | |
| import sys | |
| import time | |
| try: | |
| p = subprocess.Popen([sys.executable, '-m', 'Pyro4.naming'], | |
| stdout=subprocess.PIPE, | |
| stderr=subprocess.STDOUT) | |
| time.sleep(5) |
| 1 My my my PRP$ PRP$ _ _ 0 0 NMOD NMOD _ _ | |
| 1 brother brother brother NN NN _ _ 0 0 ROOT ROOT _ _ | |
| 1 has have have VBZ VBZ _ _ 0 0 ROOT ROOT _ _ | |
| 1 a a a DT DT _ _ 0 0 ROOT ROOT _ _ | |
| 1 dog dog dog NN NN _ _ 0 0 ROOT ROOT _ _ |
| In [109]: from neo.io.neuroexplorerio import NeuroExplorerIO | |
| --------------------------------------------------------------------------- | |
| ImportError Traceback (most recent call last) | |
| /Users/dedan/projects/fu/unmixpain/<ipython-input-109-f477c5eea2d3> in <module>() | |
| ----> 1 from neo.io.neuroexplorerio import NeuroExplorerIO | |
| /Users/dedan/.virtualenvs/neo/lib/python2.7/site-packages/neo/io/neuroexplorerio.py in <module>() | |
| 19 from .baseio import BaseIO | |
| 20 from ..core import * | |
| ---> 21 from .tools import create_many_to_one_relationship |
| import numpy as np | |
| import pylab as plt | |
| import time | |
| living_cells = set([(1, 0), (1, 1), (1, 2)]) | |
| counting = {} |
| #!/usr/bin/env python | |
| # encoding: utf-8 | |
| class Life(object): | |
| """docstring for Life""" | |
| def __init__(self, init=None): | |
| super(Life, self).__init__() | |
| self.cells = init |
| #!/usr/bin/env python | |
| # encoding: utf-8 | |
| class Life(object): | |
| """docstring for Life""" | |
| def __init__(self, initial_cell_coordinates): | |
| super(Life, self).__init__() | |
| self.cells = set(initial_cell_coordinates) |