Skip to content

Commit 3b65029

Browse files
committed
Fixed the drift between builds
2 parents 8cea92f + ed4af31 commit 3b65029

File tree

3 files changed

+40
-31
lines changed

3 files changed

+40
-31
lines changed

Diff for: README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
UW_python_class_demo.code
22
=========================
33

4-
This is the demonstration software that I created to illustrates points and which is too big to fit on a slide
4+
This is the demonstration software that I created to illustrates points and which is too big to fit on a slide
5+
=======

Diff for: Student_list.csv

+33-25
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,33 @@
1-
y XXXXXXX Angula, Divesh Enrolled (09/28/12)
2-
y XXXXXXX Braam, Jon Thomas Enrolled (08/30/12)
3-
y XXXXXXX Carnevale, Jason T Enrolled (08/27/12)
4-
y XXXXXXX Chou, Eric C Enrolled (08/14/12)
5-
y XXXXXXX Cogswell, Paul M Enrolled (08/20/12)
6-
y XXXXXXX Comstock, John F Enrolled (10/03/12)
7-
y XXXXXXX Diep, Pho Q Enrolled (09/11/12)
8-
y XXXXXXX Gannon, Kristin L Enrolled (08/14/12)
9-
y XXXXXXX Happel, Austin G Enrolled (09/04/12)
10-
y XXXXXXX Hatch, David S Enrolled (09/11/12)
11-
y XXXXXXX Hunt, David B Enrolled (07/13/12)
12-
y XXXXXXX Kenny, Matthew Enrolled (07/27/12)
13-
y  XXXXXXX Korchagin, Maria Enrolled (09/24/12)
14-
y XXXXXXX Langdon, Jesse G Enrolled (10/03/12)
15-
y XXXXXXX Larkin, Phillip S Enrolled (09/21/12)
16-
y XXXXXXX Maley, Larry L Enrolled (05/15/12)
17-
y XXXXXXX Minor, Steve Earl Enrolled (09/27/12)
18-
y XXXXXXX Nelson, Andrew J Enrolled (10/05/12)
19-
y XXXXXXX Nkposong, Edet E Enrolled (09/18/12)
20-
y XXXXXXX Olsen, Matthew E Enrolled (08/07/12)
21-
y XXXXXXX Overly, Christopher Q Enrolled (09/28/12)
22-
y XXXXXXX Ramos, Daniel D Enrolled (10/05/12)
23-
y XXXXXXX Ross, John L Enrolled (09/12/12)
24-
y XXXXXXX Shaw, Carole M Enrolled (06/19/12)
25-
y XXXXXXX Su, Allen Enrolled (09/20/12)
1+
Angula Dives x
2+
Braam Jon X
3+
Bull Wilson X
4+
Carnevale Jason X
5+
Cetina Jason X
6+
Chou Eric X
7+
Cogswell Paul ?
8+
Comstock Joh X
9+
Diep Pho X
10+
Gamponia Albert X
11+
Gannon Kristin X
12+
Happel Austin X
13+
Hartley Tyler X
14+
Hatch David X
15+
Heathcote Conor X
16+
Hunt David X
17+
JauJou Jason X
18+
Kenny Matthew X
19+
Korchagin Maria X
20+
Langdon Jesse X
21+
Larkin Phillip X
22+
Maley Larry X
23+
Minor Steve X
24+
Nelson Andrew X
25+
Nkposong Edet X
26+
Olsen Matthew X
27+
Overly Christopher X
28+
Ramos Daniel X
29+
Ross John X
30+
Shaw Carole X
31+
Su Allen X
32+
Van Eenoo Peter X
33+

Diff for: schedule_speakers.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
import string
99
import csv
1010

11-
date_students = {-1:"Oct 16th", 0:"Oct 23rd", 3:"Oct 30th", 6:"Nov 6th", \
12-
9:"Nov 13th", 12:"Nov 20th", 15:"Nov 27th", 18:"Dec 4th",
13-
21:"Dec 11th" }
11+
date_students = {0:"Oct 16th", 3:"Oct 23rd", 6:"Oct 30th", 9:"Nov 6th", \
12+
12:"Nov 13th", 16:"Nov 20th", 20:"Nov 27th", 24:"Dec 4th",
13+
28:"Dec 11th" }
1414
filename = "Student_list.csv"
1515
f = open(filename,"r")
1616
raw_student_list = csv.reader(f, delimiter='\t', quotechar='"')
1717
student_list = []
1818
for a_line in raw_student_list:
19-
# Column 0 is the UW netID, column 1 is the UW student number, column 2 is
19+
# Column 0 is the student last name, Column 1 is the student first name
2020
# student's name (last name first)
21-
student_list.append( string.strip( a_line[2] ) )
21+
student_list.append( string.strip( a_line[0]+" "+a_line[1] ) )
2222
random.shuffle( student_list, )
2323
counter = 0
2424
for n in student_list :

0 commit comments

Comments
 (0)