├── .github └── workflows │ └── sphinx.yml ├── .gitignore ├── CITATION.cff ├── LICENSE ├── Makefile ├── README.md ├── content ├── conf.py ├── examples.md ├── exercises.md ├── extra-features.md ├── first-notebook.md ├── guide.md ├── img │ ├── JupyterDownload.png │ ├── JupyterInterface.png │ ├── activity_inequality.png │ ├── binder.jpg │ ├── code_example1.png │ ├── code_example_jupyter.png │ ├── git.jpg │ ├── github-upload.png │ ├── github-with-rich-diff.png │ ├── github-without-rich-diff.png │ ├── gravity.jpg │ ├── launching-python.png │ ├── medicean-stars.png │ ├── notebook_components.png │ ├── pi_with_darts.png │ └── ‎Jupyter_Pandas_demo.png ├── index.rst ├── interface.md ├── license.md ├── motivation.md ├── sharing.md ├── summary.md └── version-control.md ├── data ├── abyss.dat ├── isles.dat ├── last.dat ├── nobels.csv └── sierra.dat ├── example ├── darts.ipynb └── darts.svg ├── make.bat └── requirements.txt /.github/workflows/sphinx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/.github/workflows/sphinx.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .jupyter_cache/ 2 | _build/ 3 | venv/ 4 | *.DS_Store 5 | -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/README.md -------------------------------------------------------------------------------- /content/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/conf.py -------------------------------------------------------------------------------- /content/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/examples.md -------------------------------------------------------------------------------- /content/exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/exercises.md -------------------------------------------------------------------------------- /content/extra-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/extra-features.md -------------------------------------------------------------------------------- /content/first-notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/first-notebook.md -------------------------------------------------------------------------------- /content/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/guide.md -------------------------------------------------------------------------------- /content/img/JupyterDownload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/JupyterDownload.png -------------------------------------------------------------------------------- /content/img/JupyterInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/JupyterInterface.png -------------------------------------------------------------------------------- /content/img/activity_inequality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/activity_inequality.png -------------------------------------------------------------------------------- /content/img/binder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/binder.jpg -------------------------------------------------------------------------------- /content/img/code_example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/code_example1.png -------------------------------------------------------------------------------- /content/img/code_example_jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/code_example_jupyter.png -------------------------------------------------------------------------------- /content/img/git.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/git.jpg -------------------------------------------------------------------------------- /content/img/github-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/github-upload.png -------------------------------------------------------------------------------- /content/img/github-with-rich-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/github-with-rich-diff.png -------------------------------------------------------------------------------- /content/img/github-without-rich-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/github-without-rich-diff.png -------------------------------------------------------------------------------- /content/img/gravity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/gravity.jpg -------------------------------------------------------------------------------- /content/img/launching-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/launching-python.png -------------------------------------------------------------------------------- /content/img/medicean-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/medicean-stars.png -------------------------------------------------------------------------------- /content/img/notebook_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/notebook_components.png -------------------------------------------------------------------------------- /content/img/pi_with_darts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/pi_with_darts.png -------------------------------------------------------------------------------- /content/img/‎Jupyter_Pandas_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/img/‎Jupyter_Pandas_demo.png -------------------------------------------------------------------------------- /content/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/index.rst -------------------------------------------------------------------------------- /content/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/interface.md -------------------------------------------------------------------------------- /content/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/license.md -------------------------------------------------------------------------------- /content/motivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/motivation.md -------------------------------------------------------------------------------- /content/sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/sharing.md -------------------------------------------------------------------------------- /content/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/summary.md -------------------------------------------------------------------------------- /content/version-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/content/version-control.md -------------------------------------------------------------------------------- /data/abyss.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/data/abyss.dat -------------------------------------------------------------------------------- /data/isles.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/data/isles.dat -------------------------------------------------------------------------------- /data/last.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/data/last.dat -------------------------------------------------------------------------------- /data/nobels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/data/nobels.csv -------------------------------------------------------------------------------- /data/sierra.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/data/sierra.dat -------------------------------------------------------------------------------- /example/darts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/example/darts.ipynb -------------------------------------------------------------------------------- /example/darts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/example/darts.svg -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/make.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderefinery/jupyter/HEAD/requirements.txt --------------------------------------------------------------------------------