Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nglgzz committed Aug 20, 2017
1 parent b43be9a commit cb768b4
Show file tree
Hide file tree
Showing 8 changed files with 465 additions and 8,252 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"presets": ["es2015", "react"],
"presets": ["env", "react"],
"plugins": ["transform-object-rest-spread"]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
dist
yarn.lock

2 changes: 1 addition & 1 deletion .storybook/index.story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ storiesOf('maps', module)
.add('devops', () => render('programming/devops.json'))
.add('interviews', () => render('programming/programming-interviews.json'))
.add('map', () => render('map.json'))
.add('python', () => render('python.json'));
.add('python-no-coords', () => render('python-no-coords.json'));

storiesOf('editable', module)
.add('true', () => render('python.json', true))
Expand Down
181 changes: 181 additions & 0 deletions .storybook/maps-parsed/python-no-coords.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,181 @@
{
"title": "learn anything - programming - programming languages - python",
"nodes": [
{
"text": "python",
"url": "http://www.wikiwand.com/en/Python_(programming_language)",
"nodes": [
{
"text": "",
"url": "https://www.reddit.com/r/Python/",
"nodes": [],
"category": "reddit",
"color": "rgba(255, 189, 10, 1.0)"
},
{
"text": "source",
"note": "original python implementation in c, compiles python code into byte code and interprets the byte code in a evaluation loop",
"url": "https://github.com/python/cpython",
"nodes": [],
"category": "github",
"color": "rgba(36, 170, 255, 1.0)"
}
],
"category": "wiki"
},
{
"text": "help",
"url": "",
"nodes": [
{
"text": "awesome python",
"url": "https://github.com/vinta/awesome-python",
"nodes": [],
"category": "github",
"color": "rgba(175, 54, 242, 1.0)"
},
{
"text": "awesome asyncio",
"url": "https://github.com/timofurrer/awesome-asyncio",
"nodes": [],
"category": "github",
"color": "rgba(36, 170, 255, 1.0)"
},
{
"text": "python data model",
"url": "https://docs.python.org/3/reference/datamodel.html",
"nodes": [],
"color": "rgba(255, 189, 10, 1.0)"
},
{
"text": "python testing",
"url": "http://pythontesting.net/framework/pytest/pytest-introduction/",
"nodes": [],
"category": "free book",
"color": "rgba(34, 205, 224, 1.0)"
},
{
"text": "scientific python cheat sheet",
"url": "https://ipgp.github.io/scientific_python_cheat_sheet/",
"nodes": [],
"color": "rgba(209, 21, 88, 1.0)"
},
{
"text": "structuring your project",
"url": "http://python-guide-pt-br.readthedocs.io/en/latest/writing/structure/",
"nodes": [],
"color": "rgba(49, 187, 71, 1.0)"
},
{
"text": "style guide for python code",
"url": "https://www.python.org/dev/peps/pep-0008/",
"nodes": [],
"color": "rgba(175, 54, 242, 1.0)"
},
{
"text": "cpython internals ️",
"url": "http://pgbovine.net/cpython-internals.htm",
"nodes": [],
"category": "article",
"color": "rgba(36, 170, 255, 1.0)"
}
]
},
{
"text": "articles",
"url": "",
"nodes": [
{
"text": "16: the history behind the decision to move python to github ️",
"url": "https://snarky.ca/the-history-behind-the-decision-to-move-python-to-github/",
"nodes": [],
"category": "article",
"color": "rgba(175, 54, 242, 1.0)"
},
{
"text": "15: a modern python development toolchain ️",
"url": "http://www.chriskrycho.com/2015/a-modern-python-development-toolchain.html",
"nodes": [],
"category": "article",
"color": "rgba(36, 170, 255, 1.0)"
},
{
"text": "17: python's instance, class, and static methods demystified ️",
"url": "https://realpython.com/blog/python/instance-class-and-static-methods-demystified/",
"nodes": [],
"category": "article",
"color": "rgba(255, 189, 10, 1.0)"
}
]
},
{
"text": "basics",
"note": "",
"url": "",
"nodes": [
{
"text": "1. the python tutorial",
"url": "https://docs.python.org/3/tutorial/",
"nodes": [],
"color": "rgba(255, 189, 10, 1.0)"
},
{
"text": "1. dive into python 3",
"url": "http://www.diveintopython3.net",
"nodes": [],
"category": "free book",
"color": "rgba(175, 54, 242, 1.0)"
},
{
"text": "1. automate the boring stuff with python",
"url": "https://automatetheboringstuff.com/",
"nodes": [],
"category": "free book",
"color": "rgba(36, 170, 255, 1.0)"
}
]
},
{
"text": "package manager",
"url": "http://www.wikiwand.com/en/Package_manager",
"nodes": [],
"category": "wiki"
},
{
"text": "python libraries ️",
"nodes": [],
"category": "mindmap"
},
{
"text": "pip",
"url": "https://pypi.python.org/pypi/pip",
"nodes": []
}
],
"connections": [
{
"source": "python",
"target": "basics"
},
{
"source": "help",
"target": "python"
},
{
"source": "basics",
"target": "python libraries ️"
},
{
"source": "basics",
"target": "package manager"
},
{
"source": "package manager",
"target": "pip"
},
{
"source": "articles",
"target": "help"
}
]
}
Loading

0 comments on commit cb768b4

Please sign in to comment.