Skip to content

Commit a46b88a

Browse files
authored
Merge pull request #2 from hetland/master
Merging in Rob's changing from last time he taught.
2 parents 914077a + 5d2650e commit a46b88a

File tree

8 files changed

+70050
-94
lines changed

8 files changed

+70050
-94
lines changed

examples/intro.ipynb

+60-50
Large diffs are not rendered by default.

examples/numpy.ipynb

+76-40
Large diffs are not rendered by default.

materials/0_intro.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@
242242
"name": "python",
243243
"nbconvert_exporter": "python",
244244
"pygments_lexer": "ipython3",
245-
"version": "3.6.0"
245+
"version": "3.6.5"
246246
}
247247
},
248248
"nbformat": 4,

scripts/email_passwords.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
2525
See you in class,
2626
27-
Dr Thyng
27+
Rob
2828
'''
2929

3030
subject = 'Python class username and password'

scripts/run.sh

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
#!/bin/bash
22

3-
# rerun this file for all roster csv files
3+
# Run this script with a command like
4+
#
5+
# bash run.sh combined.csv
6+
#
7+
# where combined.csv is the intput file to the script.
8+
# This script is intended to be used on a combined student CSV file.
9+
# To generate this, get the CSV files for all of the students and use a text
10+
# editor to copy the data rows into a common file.
411

512
# put on the right side of the equal sign the name of the roster file to use
6-
roster=grads.csv
13+
roster=$1
714

815
name=${roster%.*} # remove suffix and use for file names
916

0 commit comments

Comments
 (0)