├── .gitignore ├── 2014-euroscipy ├── 00_intro.ipynb ├── 01_git_intro.ipynb ├── 02_idiomatic_python.ipynb ├── 03_reusing_and_packaging.ipynb ├── 04_testing.ipynb ├── 05_documenting.ipynb ├── euroscipy_2014 │ └── ABOUT ├── resources │ ├── branching.png │ ├── commit.png │ ├── load_style.py │ ├── merging.png │ ├── tutorial.css │ └── version_control.gif ├── sample_data │ ├── beatles.yaml │ ├── flintstones.yaml │ └── jacksons.yaml └── solutions │ ├── .idiomatic_1.py.swp │ ├── git_exercise.txt │ ├── idiomatic_1.py │ └── idiomatic_2.py ├── COPYING ├── COPYING.LESSER ├── README.md └── euroscipy_2014 ├── mfx83.yaml ├── patrickallo.yaml └── root-11.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .ipynb_checkpoints 3 | tutorial_classroom 4 | -------------------------------------------------------------------------------- /2014-euroscipy/00_intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/00_intro.ipynb -------------------------------------------------------------------------------- /2014-euroscipy/01_git_intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/01_git_intro.ipynb -------------------------------------------------------------------------------- /2014-euroscipy/02_idiomatic_python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/02_idiomatic_python.ipynb -------------------------------------------------------------------------------- /2014-euroscipy/03_reusing_and_packaging.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/03_reusing_and_packaging.ipynb -------------------------------------------------------------------------------- /2014-euroscipy/04_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/04_testing.ipynb -------------------------------------------------------------------------------- /2014-euroscipy/05_documenting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/05_documenting.ipynb -------------------------------------------------------------------------------- /2014-euroscipy/euroscipy_2014/ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/euroscipy_2014/ABOUT -------------------------------------------------------------------------------- /2014-euroscipy/resources/branching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/resources/branching.png -------------------------------------------------------------------------------- /2014-euroscipy/resources/commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/resources/commit.png -------------------------------------------------------------------------------- /2014-euroscipy/resources/load_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/resources/load_style.py -------------------------------------------------------------------------------- /2014-euroscipy/resources/merging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/resources/merging.png -------------------------------------------------------------------------------- /2014-euroscipy/resources/tutorial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/resources/tutorial.css -------------------------------------------------------------------------------- /2014-euroscipy/resources/version_control.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/resources/version_control.gif -------------------------------------------------------------------------------- /2014-euroscipy/sample_data/beatles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/sample_data/beatles.yaml -------------------------------------------------------------------------------- /2014-euroscipy/sample_data/flintstones.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/sample_data/flintstones.yaml -------------------------------------------------------------------------------- /2014-euroscipy/sample_data/jacksons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/sample_data/jacksons.yaml -------------------------------------------------------------------------------- /2014-euroscipy/solutions/.idiomatic_1.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/solutions/.idiomatic_1.py.swp -------------------------------------------------------------------------------- /2014-euroscipy/solutions/git_exercise.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/solutions/git_exercise.txt -------------------------------------------------------------------------------- /2014-euroscipy/solutions/idiomatic_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/solutions/idiomatic_1.py -------------------------------------------------------------------------------- /2014-euroscipy/solutions/idiomatic_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/2014-euroscipy/solutions/idiomatic_2.py -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/README.md -------------------------------------------------------------------------------- /euroscipy_2014/mfx83.yaml: -------------------------------------------------------------------------------- 1 | members: 2 | - mfx83 3 | - laclark 4 | -------------------------------------------------------------------------------- /euroscipy_2014/patrickallo.yaml: -------------------------------------------------------------------------------- 1 | members: 2 | - patrickallo 3 | -------------------------------------------------------------------------------- /euroscipy_2014/root-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelson/lessons_for_a_scientific_programmer/HEAD/euroscipy_2014/root-11.yaml --------------------------------------------------------------------------------