Skip to content

Commit 832928e

Browse files
committed
updates
0 parents  commit 832928e

38 files changed

+13778
-0
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
*.py,cover
51+
.hypothesis/
52+
.pytest_cache/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
target/
76+
77+
# Jupyter Notebook
78+
.ipynb_checkpoints
79+
80+
# IPython
81+
profile_default/
82+
ipython_config.py
83+
84+
# pyenv
85+
.python-version
86+
87+
# pipenv
88+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
90+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
91+
# install all needed dependencies.
92+
#Pipfile.lock
93+
94+
# celery beat schedule file
95+
celerybeat-schedule
96+
97+
# SageMath parsed files
98+
*.sage.py
99+
100+
# Environments
101+
.env
102+
.venv
103+
env/
104+
venv/
105+
ENV/
106+
env.bak/
107+
venv.bak/
108+
109+
# Spyder project settings
110+
.spyderproject
111+
.spyproject
112+
113+
# Rope project settings
114+
.ropeproject
115+
116+
# mkdocs documentation
117+
/site
118+
119+
# mypy
120+
.mypy_cache/
121+
.dmypy.json
122+
dmypy.json
123+
124+
# Pyre type checker
125+
.pyre/
126+
mod3_preso.pptx
127+
mod3_preso.pptx

CONTRIBUTING.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Contributing to Learn.co Curriculum
2+
3+
We're really exited that you're about to contribute to the [open
4+
curriculum](https://learn.co/content-license) on [Learn.co](https://learn.co).
5+
If this is your first time contributing, please continue reading to learn how
6+
to make the most meaningful and useful impact possible.
7+
8+
## Raising an Issue to Encourage a Contribution
9+
10+
If you notice a problem with the curriculum that you believe needs improvement
11+
but you're unable to make the change yourself, you should raise a Github issue
12+
containing a clear description of the problem. Include relevant snippets of
13+
the content and/or screenshots if applicable. Curriculum owners regularly review
14+
issue lists and your issue will be prioritized and addressed as appropriate.
15+
16+
## Submitting a Pull Request to Suggest an Improvement
17+
18+
If you see an opportunity for improvement and can make the change yourself go
19+
ahead and use a typical git workflow to make it happen:
20+
21+
* Fork this curriculum repository
22+
* Make the change on your fork, with descriptive commits in the standard format
23+
* Open a Pull Request against this repo
24+
25+
A curriculum owner will review your change and approve or comment on it in due
26+
course.
27+
28+
# Why Contribute?
29+
30+
Curriculum on Learn is publicly and freely available under Learn's
31+
[Educational Content License](https://learn.co/content-license). By
32+
embracing an open-source contribution model, our goal is for the curriculum
33+
on Learn to become, in time, the best educational content the world has
34+
ever seen.
35+
36+
We need help from the community of Learners to maintain and improve the
37+
educational content. Everything from fixing typos, to correcting
38+
out-dated information, to improving exposition, to adding better examples,
39+
to fixing tests—all contributions to making the curriculum more effective are
40+
welcome.
93.3 KB
Binary file not shown.
Binary file not shown.

LICENSE.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Learn.co Educational Content License
2+
3+
Copyright (c) 2018 Flatiron School, Inc
4+
5+
The Flatiron School, Inc. owns this Educational Content. However, the Flatiron
6+
School supports the development and availability of educational materials in
7+
the public domain. Therefore, the Flatiron School grants Users of the Flatiron
8+
Educational Content set forth in this repository certain rights to reuse, build
9+
upon and share such Educational Content subject to the terms of the Educational
10+
Content License set forth [here](http://learn.co/content-license)
11+
(http://learn.co/content-license). You must read carefully the terms and
12+
conditions contained in the Educational Content License as such terms govern
13+
access to and use of the Educational Content.
14+
15+
Flatiron School is willing to allow you access to and use of the Educational
16+
Content only on the condition that you accept all of the terms and conditions
17+
contained in the Educational Content License set forth
18+
[here](http://learn.co/content-license) (http://learn.co/content-license). By
19+
accessing and/or using the Educational Content, you are agreeing to all of the
20+
terms and conditions contained in the Educational Content License. If you do
21+
not agree to any or all of the terms of the Educational Content License, you
22+
are prohibited from accessing, reviewing or using in any way the Educational
23+
Content.

0 commit comments

Comments
 (0)