├── .gitignore ├── .mailmap ├── .update-copyright.conf ├── CONDUCT.md ├── CONTRIBUTING.md ├── CUSTOMIZATION.md ├── DESIGN.md ├── FAQ.md ├── LICENSE.md ├── README.md ├── _config.yml ├── _includes ├── banner.html ├── footer.html ├── github-ribbon.html ├── header.html └── javascript.html ├── _layouts ├── page.html └── workshop.html ├── css ├── badge.css ├── book.css ├── bootstrap │ ├── bootstrap-js │ │ └── bootstrap.js │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── deckjs-js │ └── deckjs-custom.js ├── slideshow.css ├── swc-print.css └── swc.css ├── etherpad_day1.html ├── index.html ├── python ├── 00-python-intro-w-solutions.html ├── 00-python-intro-w-solutions.ipynb ├── 00-python-intro.html ├── 00-python-intro.ipynb ├── 01-numpy.html ├── 01-numpy.ipynb ├── 01-numpy.md ├── 02-loop.html ├── 02-loop.ipynb ├── 02-loop.md ├── 03-lists.html ├── 03-lists.ipynb ├── 03-lists.md ├── 04-files.html ├── 04-files.ipynb ├── 04-files.md ├── 05-cond.html ├── 05-cond.ipynb ├── 05-cond.md ├── 06-func.html ├── 06-func.ipynb ├── 06-func.md ├── 07-errors.html ├── 07-errors.ipynb ├── 07-errors.md ├── 08-defensive.html ├── 08-defensive.ipynb ├── 08-defensive.md ├── 09-debugging.html ├── 09-debugging.ipynb ├── 09-debugging.md ├── 10-cmdline.html ├── 10-cmdline.ipynb ├── 10-cmdline.md ├── AUTHORS ├── CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.html ├── LICENSE.md ├── Makefile ├── README.md ├── _includes │ ├── banner.html │ ├── footer.html │ ├── header.html │ └── javascript.html ├── _layouts │ └── page.html ├── code │ ├── argv-list.py │ ├── count-stdin.py │ ├── gen-inflammation.py │ ├── readings-01.py │ ├── readings-02.py │ ├── readings-03.py │ ├── readings-04.py │ ├── readings-05.py │ ├── readings-06.py │ ├── rectangle.py │ └── sys-version.py ├── css │ ├── book.css │ ├── bootstrap │ │ ├── bootstrap-js │ │ │ └── bootstrap.js │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ ├── swc-print.css │ └── swc.css ├── data │ ├── inflammation-01.csv │ ├── inflammation-02.csv │ ├── inflammation-03.csv │ ├── inflammation-04.csv │ ├── inflammation-05.csv │ ├── inflammation-06.csv │ ├── inflammation-07.csv │ ├── inflammation-08.csv │ ├── inflammation-09.csv │ ├── inflammation-10.csv │ ├── inflammation-11.csv │ ├── inflammation-12.csv │ ├── small-01.csv │ ├── small-02.csv │ └── small-03.csv ├── discussion.html ├── discussion.md ├── errors_01.py ├── errors_02.py ├── fig │ ├── 01-numpy_71_0.png │ ├── 01-numpy_73_0.png │ ├── 01-numpy_75_1.png │ ├── 01-numpy_75_3.png │ ├── 01-numpy_80_0.png │ ├── 03-loop_2_0.png │ ├── 03-loop_49_1.png │ ├── 03-loop_49_3.png │ ├── 03-loop_49_5.png │ ├── 03-loop_4_0.png │ ├── ave-inflammation-over-time.png │ ├── color-cube.png │ ├── combined-inflammation-2.png │ ├── combined-inflammation-per-day.png │ ├── initial-heat-map.png │ ├── ipythonblocks_show_color_example.png │ ├── loop-inflammation-01.png │ ├── loop-inflammation-02.png │ ├── loop-inflammation-03.png │ ├── max-inflammation-over-time.png │ ├── min-inflammation-per-day.png │ ├── python-call-stack-01.odg │ ├── python-call-stack-01.png │ ├── python-call-stack-01.svg │ ├── python-call-stack-02.odg │ ├── python-call-stack-02.png │ ├── python-call-stack-02.svg │ ├── python-call-stack-03.odg │ ├── python-call-stack-03.png │ ├── python-call-stack-03.svg │ ├── python-call-stack-04.odg │ ├── python-call-stack-04.png │ ├── python-call-stack-04.svg │ ├── python-call-stack-05.odg │ ├── python-call-stack-05.png │ ├── python-call-stack-05.svg │ ├── python-call-stack-06.odg │ ├── python-call-stack-06.png │ ├── python-call-stack-06.svg │ ├── python-call-stack-07.odg │ ├── python-call-stack-07.png │ ├── python-call-stack-07.svg │ ├── python-flowchart-conditional.odg │ ├── python-flowchart-conditional.png │ ├── python-flowchart-conditional.svg │ ├── python-flowchart-nested-loops.odg │ ├── python-flowchart-nested-loops.png │ ├── python-flowchart-nested-loops.svg │ ├── python-operations-across-axes.odg │ ├── python-operations-across-axes.png │ ├── python-operations-across-axes.svg │ ├── python-overlapping-ranges.odg │ ├── python-overlapping-ranges.png │ ├── python-overlapping-ranges.svg │ ├── python-sticky-note-variables-01.odg │ ├── python-sticky-note-variables-01.png │ ├── python-sticky-note-variables-01.svg │ ├── python-sticky-note-variables-02.odg │ ├── python-sticky-note-variables-02.png │ ├── python-sticky-note-variables-02.svg │ ├── python-sticky-note-variables-03.odg │ ├── python-sticky-note-variables-03.png │ └── python-sticky-note-variables-03.svg ├── img │ ├── grid-01.png │ ├── grid-02.png │ ├── grid-03.png │ ├── ipython-notebook.png │ └── software-carpentry-banner.png ├── index.html ├── index.md ├── instructors.html ├── instructors.md ├── js │ ├── jquery.min.js │ └── modernizr.custom.js ├── pages │ ├── grid-01.txt │ ├── grid-02.txt │ ├── grid-03.txt │ ├── grid-04.txt │ ├── grid-05.txt │ ├── grid-06.txt │ ├── grid-07.txt │ ├── grid-08.txt │ ├── grid-09.txt │ └── grid-10.txt ├── python-novice-inflammation-data.zip ├── reference.html ├── reference.md ├── requirements.txt └── tools │ ├── check.py │ ├── chunk-options.R │ ├── filters │ ├── blockquote2div.py │ └── id4glossary.py │ ├── gen_inflammation.py │ ├── setup-labels │ ├── test_check.py │ └── validation_helpers.py ├── requirements.txt ├── scientific_python ├── .gitignore ├── NumPy Solutions.ipynb ├── NumPy.ipynb ├── Pandas Solutions.ipynb ├── Pandas.ipynb ├── Plotting Solutions.ipynb ├── Plotting.ipynb ├── Save Mean CA Precip.ipynb ├── mean_ca_precip.npz ├── pandas work.ipynb ├── precip_monthly.csv ├── precip_yearly.csv └── slides │ ├── Makefile │ ├── Scientific Python Tools.ipynb │ ├── Scientific Python Tools.slides.html │ ├── custom.css │ ├── custom.tpl │ ├── reveal.js │ ├── .gitignore │ ├── .travis.yml │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.min.css │ │ └── theme │ │ │ ├── README.md │ │ │ ├── beige.css │ │ │ ├── blood.css │ │ │ ├── default.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── blood.scss │ │ │ ├── default.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ └── solarized.scss │ │ │ └── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ ├── index.html │ ├── js │ │ ├── reveal.js │ │ └── reveal.min.js │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league_gothic-webfont.eot │ │ │ ├── league_gothic-webfont.svg │ │ │ ├── league_gothic-webfont.ttf │ │ │ ├── league_gothic-webfont.woff │ │ │ └── league_gothic_license │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ ├── package.json │ ├── plugin │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── leap │ │ │ └── leap.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── master.js │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── postmessage │ │ │ ├── example.html │ │ │ └── postmessage.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── remotes │ │ │ └── remotes.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ └── test │ │ ├── examples │ │ ├── assets │ │ │ ├── image1.png │ │ │ └── image2.png │ │ ├── barebones.html │ │ ├── embedded-media.html │ │ ├── math.html │ │ └── slide-backgrounds.html │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test.html │ │ └── test.js │ ├── reveal.tpl │ └── scipy.png ├── setup ├── index.md ├── swc-installation-test-1.py └── swc-installation-test-2.py ├── slides-collaborating_using_git.html ├── slides-git_branching.html ├── slides-local_version_control.html └── tools ├── check.py ├── clean ├── preview ├── test_check.py ├── update └── users /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/.mailmap -------------------------------------------------------------------------------- /.update-copyright.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/.update-copyright.conf -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CUSTOMIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/CUSTOMIZATION.md -------------------------------------------------------------------------------- /DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/DESIGN.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/_includes/banner.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/github-ribbon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/_includes/github-ribbon.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/_includes/javascript.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/workshop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/_layouts/workshop.html -------------------------------------------------------------------------------- /css/badge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/badge.css -------------------------------------------------------------------------------- /css/book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/book.css -------------------------------------------------------------------------------- /css/bootstrap/bootstrap-js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/bootstrap/bootstrap-js/bootstrap.js -------------------------------------------------------------------------------- /css/bootstrap/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/bootstrap/bootstrap-theme.css -------------------------------------------------------------------------------- /css/bootstrap/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/bootstrap/bootstrap-theme.css.map -------------------------------------------------------------------------------- /css/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/bootstrap/bootstrap.css.map -------------------------------------------------------------------------------- /css/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /css/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /css/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /css/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /css/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /css/deckjs-js/deckjs-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/deckjs-js/deckjs-custom.js -------------------------------------------------------------------------------- /css/slideshow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/slideshow.css -------------------------------------------------------------------------------- /css/swc-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/swc-print.css -------------------------------------------------------------------------------- /css/swc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/css/swc.css -------------------------------------------------------------------------------- /etherpad_day1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/etherpad_day1.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/index.html -------------------------------------------------------------------------------- /python/00-python-intro-w-solutions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/00-python-intro-w-solutions.html -------------------------------------------------------------------------------- /python/00-python-intro-w-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/00-python-intro-w-solutions.ipynb -------------------------------------------------------------------------------- /python/00-python-intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/00-python-intro.html -------------------------------------------------------------------------------- /python/00-python-intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/00-python-intro.ipynb -------------------------------------------------------------------------------- /python/01-numpy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/01-numpy.html -------------------------------------------------------------------------------- /python/01-numpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/01-numpy.ipynb -------------------------------------------------------------------------------- /python/01-numpy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/01-numpy.md -------------------------------------------------------------------------------- /python/02-loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/02-loop.html -------------------------------------------------------------------------------- /python/02-loop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/02-loop.ipynb -------------------------------------------------------------------------------- /python/02-loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/02-loop.md -------------------------------------------------------------------------------- /python/03-lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/03-lists.html -------------------------------------------------------------------------------- /python/03-lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/03-lists.ipynb -------------------------------------------------------------------------------- /python/03-lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/03-lists.md -------------------------------------------------------------------------------- /python/04-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/04-files.html -------------------------------------------------------------------------------- /python/04-files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/04-files.ipynb -------------------------------------------------------------------------------- /python/04-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/04-files.md -------------------------------------------------------------------------------- /python/05-cond.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/05-cond.html -------------------------------------------------------------------------------- /python/05-cond.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/05-cond.ipynb -------------------------------------------------------------------------------- /python/05-cond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/05-cond.md -------------------------------------------------------------------------------- /python/06-func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/06-func.html -------------------------------------------------------------------------------- /python/06-func.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/06-func.ipynb -------------------------------------------------------------------------------- /python/06-func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/06-func.md -------------------------------------------------------------------------------- /python/07-errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/07-errors.html -------------------------------------------------------------------------------- /python/07-errors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/07-errors.ipynb -------------------------------------------------------------------------------- /python/07-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/07-errors.md -------------------------------------------------------------------------------- /python/08-defensive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/08-defensive.html -------------------------------------------------------------------------------- /python/08-defensive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/08-defensive.ipynb -------------------------------------------------------------------------------- /python/08-defensive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/08-defensive.md -------------------------------------------------------------------------------- /python/09-debugging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/09-debugging.html -------------------------------------------------------------------------------- /python/09-debugging.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/09-debugging.ipynb -------------------------------------------------------------------------------- /python/09-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/09-debugging.md -------------------------------------------------------------------------------- /python/10-cmdline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/10-cmdline.html -------------------------------------------------------------------------------- /python/10-cmdline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/10-cmdline.ipynb -------------------------------------------------------------------------------- /python/10-cmdline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/10-cmdline.md -------------------------------------------------------------------------------- /python/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/AUTHORS -------------------------------------------------------------------------------- /python/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/CONDUCT.md -------------------------------------------------------------------------------- /python/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/CONTRIBUTING.md -------------------------------------------------------------------------------- /python/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/LICENSE.html -------------------------------------------------------------------------------- /python/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/LICENSE.md -------------------------------------------------------------------------------- /python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/Makefile -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/README.md -------------------------------------------------------------------------------- /python/_includes/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/_includes/banner.html -------------------------------------------------------------------------------- /python/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/_includes/footer.html -------------------------------------------------------------------------------- /python/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/_includes/header.html -------------------------------------------------------------------------------- /python/_includes/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/_includes/javascript.html -------------------------------------------------------------------------------- /python/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/_layouts/page.html -------------------------------------------------------------------------------- /python/code/argv-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/code/argv-list.py -------------------------------------------------------------------------------- /python/code/count-stdin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/code/count-stdin.py -------------------------------------------------------------------------------- /python/code/gen-inflammation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/code/gen-inflammation.py -------------------------------------------------------------------------------- /python/code/readings-01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/code/readings-01.py -------------------------------------------------------------------------------- /python/code/readings-02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/code/readings-02.py -------------------------------------------------------------------------------- /python/code/readings-03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/code/readings-03.py -------------------------------------------------------------------------------- /python/code/readings-04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/code/readings-04.py -------------------------------------------------------------------------------- /python/code/readings-05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/code/readings-05.py -------------------------------------------------------------------------------- /python/code/readings-06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/code/readings-06.py -------------------------------------------------------------------------------- /python/code/rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/code/rectangle.py -------------------------------------------------------------------------------- /python/code/sys-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/code/sys-version.py -------------------------------------------------------------------------------- /python/css/book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/book.css -------------------------------------------------------------------------------- /python/css/bootstrap/bootstrap-js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/bootstrap/bootstrap-js/bootstrap.js -------------------------------------------------------------------------------- /python/css/bootstrap/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/bootstrap/bootstrap-theme.css -------------------------------------------------------------------------------- /python/css/bootstrap/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/bootstrap/bootstrap-theme.css.map -------------------------------------------------------------------------------- /python/css/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /python/css/bootstrap/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/bootstrap/bootstrap.css.map -------------------------------------------------------------------------------- /python/css/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /python/css/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /python/css/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /python/css/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /python/css/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /python/css/swc-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/swc-print.css -------------------------------------------------------------------------------- /python/css/swc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/css/swc.css -------------------------------------------------------------------------------- /python/data/inflammation-01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/data/inflammation-01.csv -------------------------------------------------------------------------------- /python/data/inflammation-02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/data/inflammation-02.csv -------------------------------------------------------------------------------- /python/data/inflammation-03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/data/inflammation-03.csv -------------------------------------------------------------------------------- /python/data/inflammation-04.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/data/inflammation-04.csv -------------------------------------------------------------------------------- /python/data/inflammation-05.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/data/inflammation-05.csv -------------------------------------------------------------------------------- /python/data/inflammation-06.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/data/inflammation-06.csv -------------------------------------------------------------------------------- /python/data/inflammation-07.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/data/inflammation-07.csv -------------------------------------------------------------------------------- /python/data/inflammation-08.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/data/inflammation-08.csv -------------------------------------------------------------------------------- /python/data/inflammation-09.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/data/inflammation-09.csv -------------------------------------------------------------------------------- /python/data/inflammation-10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/data/inflammation-10.csv -------------------------------------------------------------------------------- /python/data/inflammation-11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/data/inflammation-11.csv -------------------------------------------------------------------------------- /python/data/inflammation-12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/data/inflammation-12.csv -------------------------------------------------------------------------------- /python/data/small-01.csv: -------------------------------------------------------------------------------- 1 | 0,0,1 2 | 0,1,2 3 | -------------------------------------------------------------------------------- /python/data/small-02.csv: -------------------------------------------------------------------------------- 1 | 9,17,15 2 | 20,8,5 3 | -------------------------------------------------------------------------------- /python/data/small-03.csv: -------------------------------------------------------------------------------- 1 | 0,2,0 2 | 1,1,0 3 | -------------------------------------------------------------------------------- /python/discussion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/discussion.html -------------------------------------------------------------------------------- /python/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/discussion.md -------------------------------------------------------------------------------- /python/errors_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/errors_01.py -------------------------------------------------------------------------------- /python/errors_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/errors_02.py -------------------------------------------------------------------------------- /python/fig/01-numpy_71_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/01-numpy_71_0.png -------------------------------------------------------------------------------- /python/fig/01-numpy_73_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/01-numpy_73_0.png -------------------------------------------------------------------------------- /python/fig/01-numpy_75_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/01-numpy_75_1.png -------------------------------------------------------------------------------- /python/fig/01-numpy_75_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/01-numpy_75_3.png -------------------------------------------------------------------------------- /python/fig/01-numpy_80_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/01-numpy_80_0.png -------------------------------------------------------------------------------- /python/fig/03-loop_2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/03-loop_2_0.png -------------------------------------------------------------------------------- /python/fig/03-loop_49_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/03-loop_49_1.png -------------------------------------------------------------------------------- /python/fig/03-loop_49_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/03-loop_49_3.png -------------------------------------------------------------------------------- /python/fig/03-loop_49_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/03-loop_49_5.png -------------------------------------------------------------------------------- /python/fig/03-loop_4_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/03-loop_4_0.png -------------------------------------------------------------------------------- /python/fig/ave-inflammation-over-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/ave-inflammation-over-time.png -------------------------------------------------------------------------------- /python/fig/color-cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/color-cube.png -------------------------------------------------------------------------------- /python/fig/combined-inflammation-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/combined-inflammation-2.png -------------------------------------------------------------------------------- /python/fig/combined-inflammation-per-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/combined-inflammation-per-day.png -------------------------------------------------------------------------------- /python/fig/initial-heat-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/initial-heat-map.png -------------------------------------------------------------------------------- /python/fig/ipythonblocks_show_color_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/ipythonblocks_show_color_example.png -------------------------------------------------------------------------------- /python/fig/loop-inflammation-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/loop-inflammation-01.png -------------------------------------------------------------------------------- /python/fig/loop-inflammation-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/loop-inflammation-02.png -------------------------------------------------------------------------------- /python/fig/loop-inflammation-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/loop-inflammation-03.png -------------------------------------------------------------------------------- /python/fig/max-inflammation-over-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/max-inflammation-over-time.png -------------------------------------------------------------------------------- /python/fig/min-inflammation-per-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/min-inflammation-per-day.png -------------------------------------------------------------------------------- /python/fig/python-call-stack-01.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-01.odg -------------------------------------------------------------------------------- /python/fig/python-call-stack-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-01.png -------------------------------------------------------------------------------- /python/fig/python-call-stack-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-01.svg -------------------------------------------------------------------------------- /python/fig/python-call-stack-02.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-02.odg -------------------------------------------------------------------------------- /python/fig/python-call-stack-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-02.png -------------------------------------------------------------------------------- /python/fig/python-call-stack-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-02.svg -------------------------------------------------------------------------------- /python/fig/python-call-stack-03.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-03.odg -------------------------------------------------------------------------------- /python/fig/python-call-stack-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-03.png -------------------------------------------------------------------------------- /python/fig/python-call-stack-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-03.svg -------------------------------------------------------------------------------- /python/fig/python-call-stack-04.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-04.odg -------------------------------------------------------------------------------- /python/fig/python-call-stack-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-04.png -------------------------------------------------------------------------------- /python/fig/python-call-stack-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-04.svg -------------------------------------------------------------------------------- /python/fig/python-call-stack-05.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-05.odg -------------------------------------------------------------------------------- /python/fig/python-call-stack-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-05.png -------------------------------------------------------------------------------- /python/fig/python-call-stack-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-05.svg -------------------------------------------------------------------------------- /python/fig/python-call-stack-06.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-06.odg -------------------------------------------------------------------------------- /python/fig/python-call-stack-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-06.png -------------------------------------------------------------------------------- /python/fig/python-call-stack-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-06.svg -------------------------------------------------------------------------------- /python/fig/python-call-stack-07.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-07.odg -------------------------------------------------------------------------------- /python/fig/python-call-stack-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-07.png -------------------------------------------------------------------------------- /python/fig/python-call-stack-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-call-stack-07.svg -------------------------------------------------------------------------------- /python/fig/python-flowchart-conditional.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-flowchart-conditional.odg -------------------------------------------------------------------------------- /python/fig/python-flowchart-conditional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-flowchart-conditional.png -------------------------------------------------------------------------------- /python/fig/python-flowchart-conditional.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-flowchart-conditional.svg -------------------------------------------------------------------------------- /python/fig/python-flowchart-nested-loops.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-flowchart-nested-loops.odg -------------------------------------------------------------------------------- /python/fig/python-flowchart-nested-loops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-flowchart-nested-loops.png -------------------------------------------------------------------------------- /python/fig/python-flowchart-nested-loops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-flowchart-nested-loops.svg -------------------------------------------------------------------------------- /python/fig/python-operations-across-axes.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-operations-across-axes.odg -------------------------------------------------------------------------------- /python/fig/python-operations-across-axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-operations-across-axes.png -------------------------------------------------------------------------------- /python/fig/python-operations-across-axes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-operations-across-axes.svg -------------------------------------------------------------------------------- /python/fig/python-overlapping-ranges.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-overlapping-ranges.odg -------------------------------------------------------------------------------- /python/fig/python-overlapping-ranges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-overlapping-ranges.png -------------------------------------------------------------------------------- /python/fig/python-overlapping-ranges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-overlapping-ranges.svg -------------------------------------------------------------------------------- /python/fig/python-sticky-note-variables-01.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-sticky-note-variables-01.odg -------------------------------------------------------------------------------- /python/fig/python-sticky-note-variables-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-sticky-note-variables-01.png -------------------------------------------------------------------------------- /python/fig/python-sticky-note-variables-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-sticky-note-variables-01.svg -------------------------------------------------------------------------------- /python/fig/python-sticky-note-variables-02.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-sticky-note-variables-02.odg -------------------------------------------------------------------------------- /python/fig/python-sticky-note-variables-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-sticky-note-variables-02.png -------------------------------------------------------------------------------- /python/fig/python-sticky-note-variables-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-sticky-note-variables-02.svg -------------------------------------------------------------------------------- /python/fig/python-sticky-note-variables-03.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-sticky-note-variables-03.odg -------------------------------------------------------------------------------- /python/fig/python-sticky-note-variables-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-sticky-note-variables-03.png -------------------------------------------------------------------------------- /python/fig/python-sticky-note-variables-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/fig/python-sticky-note-variables-03.svg -------------------------------------------------------------------------------- /python/img/grid-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/img/grid-01.png -------------------------------------------------------------------------------- /python/img/grid-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/img/grid-02.png -------------------------------------------------------------------------------- /python/img/grid-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/img/grid-03.png -------------------------------------------------------------------------------- /python/img/ipython-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/img/ipython-notebook.png -------------------------------------------------------------------------------- /python/img/software-carpentry-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/img/software-carpentry-banner.png -------------------------------------------------------------------------------- /python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/index.html -------------------------------------------------------------------------------- /python/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/index.md -------------------------------------------------------------------------------- /python/instructors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/instructors.html -------------------------------------------------------------------------------- /python/instructors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/instructors.md -------------------------------------------------------------------------------- /python/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/js/jquery.min.js -------------------------------------------------------------------------------- /python/js/modernizr.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/js/modernizr.custom.js -------------------------------------------------------------------------------- /python/pages/grid-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/pages/grid-01.txt -------------------------------------------------------------------------------- /python/pages/grid-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/pages/grid-02.txt -------------------------------------------------------------------------------- /python/pages/grid-03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/pages/grid-03.txt -------------------------------------------------------------------------------- /python/pages/grid-04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/pages/grid-04.txt -------------------------------------------------------------------------------- /python/pages/grid-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/pages/grid-05.txt -------------------------------------------------------------------------------- /python/pages/grid-06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/pages/grid-06.txt -------------------------------------------------------------------------------- /python/pages/grid-07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/pages/grid-07.txt -------------------------------------------------------------------------------- /python/pages/grid-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/pages/grid-08.txt -------------------------------------------------------------------------------- /python/pages/grid-09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/pages/grid-09.txt -------------------------------------------------------------------------------- /python/pages/grid-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/pages/grid-10.txt -------------------------------------------------------------------------------- /python/python-novice-inflammation-data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/python-novice-inflammation-data.zip -------------------------------------------------------------------------------- /python/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/reference.html -------------------------------------------------------------------------------- /python/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/reference.md -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- 1 | CommonMark 2 | pandocfilters 3 | PyYAML 4 | update-copyright 5 | -------------------------------------------------------------------------------- /python/tools/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/tools/check.py -------------------------------------------------------------------------------- /python/tools/chunk-options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/tools/chunk-options.R -------------------------------------------------------------------------------- /python/tools/filters/blockquote2div.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/tools/filters/blockquote2div.py -------------------------------------------------------------------------------- /python/tools/filters/id4glossary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/tools/filters/id4glossary.py -------------------------------------------------------------------------------- /python/tools/gen_inflammation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/tools/gen_inflammation.py -------------------------------------------------------------------------------- /python/tools/setup-labels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/tools/setup-labels -------------------------------------------------------------------------------- /python/tools/test_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/tools/test_check.py -------------------------------------------------------------------------------- /python/tools/validation_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/python/tools/validation_helpers.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | nose 2 | PyYAML 3 | -------------------------------------------------------------------------------- /scientific_python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/.gitignore -------------------------------------------------------------------------------- /scientific_python/NumPy Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/NumPy Solutions.ipynb -------------------------------------------------------------------------------- /scientific_python/NumPy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/NumPy.ipynb -------------------------------------------------------------------------------- /scientific_python/Pandas Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/Pandas Solutions.ipynb -------------------------------------------------------------------------------- /scientific_python/Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/Pandas.ipynb -------------------------------------------------------------------------------- /scientific_python/Plotting Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/Plotting Solutions.ipynb -------------------------------------------------------------------------------- /scientific_python/Plotting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/Plotting.ipynb -------------------------------------------------------------------------------- /scientific_python/Save Mean CA Precip.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/Save Mean CA Precip.ipynb -------------------------------------------------------------------------------- /scientific_python/mean_ca_precip.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/mean_ca_precip.npz -------------------------------------------------------------------------------- /scientific_python/pandas work.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/pandas work.ipynb -------------------------------------------------------------------------------- /scientific_python/precip_monthly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/precip_monthly.csv -------------------------------------------------------------------------------- /scientific_python/precip_yearly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/precip_yearly.csv -------------------------------------------------------------------------------- /scientific_python/slides/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/Makefile -------------------------------------------------------------------------------- /scientific_python/slides/Scientific Python Tools.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/Scientific Python Tools.ipynb -------------------------------------------------------------------------------- /scientific_python/slides/Scientific Python Tools.slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/Scientific Python Tools.slides.html -------------------------------------------------------------------------------- /scientific_python/slides/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/custom.css -------------------------------------------------------------------------------- /scientific_python/slides/custom.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/custom.tpl -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/.gitignore -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/.travis.yml -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/Gruntfile.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/LICENSE -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/README.md -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/print/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/print/paper.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/print/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/print/pdf.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/reveal.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/reveal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/reveal.min.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/README.md -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/beige.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/beige.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/blood.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/blood.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/default.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/moon.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/night.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/serif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/serif.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/simple.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/sky.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/solarized.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/source/beige.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/source/beige.scss -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/source/blood.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/source/blood.scss -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/source/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/source/default.scss -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/source/moon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/source/moon.scss -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/source/night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/source/night.scss -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/source/serif.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/source/serif.scss -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/source/simple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/source/simple.scss -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/source/sky.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/source/sky.scss -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/source/solarized.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/source/solarized.scss -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/template/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/template/mixins.scss -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/template/settings.scss -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/css/theme/template/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/css/theme/template/theme.scss -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/index.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/js/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/js/reveal.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/js/reveal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/js/reveal.min.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/lib/css/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/lib/css/zenburn.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/lib/font/league_gothic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/lib/font/league_gothic-webfont.eot -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/lib/font/league_gothic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/lib/font/league_gothic-webfont.svg -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/lib/font/league_gothic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/lib/font/league_gothic-webfont.ttf -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/lib/font/league_gothic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/lib/font/league_gothic-webfont.woff -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/lib/font/league_gothic_license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/lib/font/league_gothic_license -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/lib/js/classList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/lib/js/classList.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/lib/js/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/lib/js/head.min.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/lib/js/html5shiv.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/package.json -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/leap/leap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/leap/leap.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/markdown/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/markdown/example.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/markdown/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/markdown/example.md -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/markdown/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/markdown/marked.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/math/math.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/multiplex/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/multiplex/client.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/multiplex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/multiplex/index.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/multiplex/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/multiplex/master.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/notes-server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/notes-server/client.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/notes-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/notes-server/index.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/notes-server/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/notes-server/notes.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/notes/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/notes/notes.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/notes/notes.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/postmessage/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/postmessage/example.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/postmessage/postmessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/postmessage/postmessage.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/print-pdf/print-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/print-pdf/print-pdf.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/remotes/remotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/remotes/remotes.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/search/search.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/plugin/zoom-js/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/plugin/zoom-js/zoom.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/examples/assets/image1.png -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/examples/assets/image2.png -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/examples/barebones.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/examples/barebones.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/examples/embedded-media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/examples/embedded-media.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/examples/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/examples/math.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/examples/slide-backgrounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/examples/slide-backgrounds.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/qunit-1.12.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/qunit-1.12.0.css -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/qunit-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/qunit-1.12.0.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/test-markdown-element-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/test-markdown-element-attributes.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/test-markdown-element-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/test-markdown-element-attributes.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/test-markdown-slide-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/test-markdown-slide-attributes.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/test-markdown-slide-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/test-markdown-slide-attributes.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/test-markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/test-markdown.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/test-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/test-markdown.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/test.html -------------------------------------------------------------------------------- /scientific_python/slides/reveal.js/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.js/test/test.js -------------------------------------------------------------------------------- /scientific_python/slides/reveal.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/reveal.tpl -------------------------------------------------------------------------------- /scientific_python/slides/scipy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/scientific_python/slides/scipy.png -------------------------------------------------------------------------------- /setup/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/setup/index.md -------------------------------------------------------------------------------- /setup/swc-installation-test-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/setup/swc-installation-test-1.py -------------------------------------------------------------------------------- /setup/swc-installation-test-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/setup/swc-installation-test-2.py -------------------------------------------------------------------------------- /slides-collaborating_using_git.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/slides-collaborating_using_git.html -------------------------------------------------------------------------------- /slides-git_branching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/slides-git_branching.html -------------------------------------------------------------------------------- /slides-local_version_control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/slides-local_version_control.html -------------------------------------------------------------------------------- /tools/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/tools/check.py -------------------------------------------------------------------------------- /tools/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/tools/clean -------------------------------------------------------------------------------- /tools/preview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/tools/preview -------------------------------------------------------------------------------- /tools/test_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/tools/test_check.py -------------------------------------------------------------------------------- /tools/update: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Update shared files. 4 | 5 | # FIXME 6 | -------------------------------------------------------------------------------- /tools/users: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiffyclub/2015-07-06-scipy/HEAD/tools/users --------------------------------------------------------------------------------