-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex-2016-2017.html
More file actions
945 lines (945 loc) · 20.5 KB
/
Copy pathindex-2016-2017.html
File metadata and controls
945 lines (945 loc) · 20.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>SLP: UVa Specific Material, fall 2016 and spring 2017</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="../../markdown.css" />
</head>
<body>
<main>
<h1 id="slp-uva-specific-material-fall-2016-and-spring-2017">SLP: UVa
Specific Material, fall 2016 and spring 2017</h1>
<p><a href="../README.html">Go up to the main README file</a> (<a
href="../README.md">md</a>)</p>
<p>Much of the rest of this git repo is meant to be generic to anybody
who has a class such as this one. But this page contains details
specific to the CS 4970/4971 version of the course at the University of
Virginia.</p>
<ul>
<li><a href="daily-announcements.html#/">Spring semester daily
announcements</a> (and from the <a
href="daily-announcements-fall.html#/">fall</a>)</li>
<li>Course introduction from the <a
href="course-introduction-fall.html#/">fall</a> and <a
href="course-introduction-spring.html#/">spring</a></li>
<li><a href="syllabus.html">Course syllabus</a> (<a
href="syllabus.md">md</a>)</li>
<li><a href="legal.html">Legal forms</a> (<a
href="legal.md">md</a>)</li>
<li>The schedule is now at the bottom of this page</li>
<li>The collected <a href="iteration-goals.html#/">iteration
goals</a></li>
<li><a href="old/index.html">Old UVa SLP documents</a> (<a
href="old/index.md">md</a>), including the lectures and schedule from
previous semesters</li>
<li><a href="grades.html">Grading metric</a> (<a
href="grades.md">md</a>)</li>
</ul>
<h2 id="lectures-spring-2017">Lectures (spring 2017)</h2>
<table>
<colgroup>
<col style="width: 1%" />
<col style="width: 2%" />
<col style="width: 4%" />
<col style="width: 10%" />
<col style="width: 8%" />
<col style="width: 35%" />
<col style="width: 37%" />
</colgroup>
<thead>
<tr class="header">
<th>Num</th>
<th>Date</th>
<th>Day of week</th>
<th>Lecture type</th>
<th>Planned topic</th>
<th>Iteration and deliverables</th>
<th>Actual lecture progress (and recording)</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>1</td>
<td>Jan 18</td>
<td>Wednesday</td>
<td>lecture & group meetings</td>
<td><a href="course-introduction-spring.html#/">Course
introduction</a></td>
<td></td>
<td><a href="course-introduction-spring.html#/">Course introduction</a>,
slides <a href="course-introduction-spring.html#/">1</a> to <a
href="course-introduction-spring.html#/17">18</a> (end)</td>
</tr>
<tr class="even">
<td>2</td>
<td>Jan 23</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>3</td>
<td>Jan 25</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="../slides/11-deliverables.html#/">Deliverables</a></td>
<td></td>
<td><a href="../slides/11-deliverables.html#/">Deliverables</a>, slides
<a href="../slides/11-deliverables.html#/">1</a> to <a
href="../slides/11-deliverables.html#/7/2">8.3</a></td>
</tr>
<tr class="even">
<td>4</td>
<td>Jan 30</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td>Iteration 7 ends; deliverable is the <a
href="../slides/11-deliverables.html#/deployment-plan">deployment
plan</a></td>
<td></td>
</tr>
<tr class="odd">
<td>5</td>
<td>Feb 1</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="../slides/11-deliverables.html#/">Deliverables</a></td>
<td></td>
<td><a href="../slides/11-deliverables.html#/">Deliverables</a>, slides
<a href="../slides/11-deliverables.html#/8">9.1</a> to <a
href="../slides/11-deliverables.html#/10/3">11.4</a></td>
</tr>
<tr class="even">
<td>6</td>
<td>Feb 6</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>7</td>
<td>Feb 8</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="../slides/12-testing.html#/">Testing</a></td>
<td></td>
<td><a href="../slides/11-deliverables.html#/">Deliverables</a>, slides
<a href="../slides/11-deliverables.html#/11">12.1</a> to <a
href="../slides/11-deliverables.html#/13/3">14.4</a> (end); <a
href="../slides/12-testing.html#/">Testing</a>, sldies <a
href="../slides/12-testing.html#/">1</a> to <a
href="../slides/12-testing.html#/3/9">4.10</a></td>
</tr>
<tr class="even">
<td>8</td>
<td>Feb 13</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td>Iteration 8 ends; deliverable is the <a
href="../slides/11-deliverables.html#/installation">installation
instructions</a></td>
<td></td>
</tr>
<tr class="odd">
<td>9</td>
<td>Feb 15</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="../slides/12-testing.html#/">Testing</a></td>
<td></td>
<td><a href="../slides/12-testing.html#/">Testing</a>, sldies <a
href="../slides/12-testing.html#/3/9">4.10</a> to <a
href="../slides/12-testing.html#/7/3">8.4</a></td>
</tr>
<tr class="even">
<td>10</td>
<td>Feb 20</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>11</td>
<td>Feb 22</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="../slides/12-testing.html#/">Testing</a></td>
<td></td>
<td><a href="../slides/12-testing.html#/">Testing</a>, sldies <a
href="../slides/12-testing.html#/7/3">8.4</a> to …</td>
</tr>
<tr class="even">
<td>12</td>
<td>Feb 27</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td>Iteration 9 ends; deliverable is the <a
href="../slides/12-testing.html#/mastertestplan">master test
plan</a></td>
<td></td>
</tr>
<tr class="odd">
<td>13</td>
<td>Mar 1</td>
<td>Wednesday</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td></td>
<td>Mar 6</td>
<td>Monday</td>
<td>spring break</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td></td>
<td>Mar 8</td>
<td>Wednesday</td>
<td>spring break</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>14</td>
<td>Mar 13</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td>Iteration 10 ends; deliverable is the <a
href="../slides/12-testing.html#/codecoverage">code coverage
report</a></td>
<td></td>
</tr>
<tr class="odd">
<td>15</td>
<td>Mar 15</td>
<td>Wednesday</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>16</td>
<td>Mar 20</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>17</td>
<td>Mar 22</td>
<td>Wednesday</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>18</td>
<td>Mar 27</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td>Iteration 11 ends; deliverable is the <a
href="../slides/11-deliverables.html#/transition">transition
plan</a></td>
<td></td>
</tr>
<tr class="odd">
<td>19</td>
<td>Mar 29</td>
<td>Wednesday</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>20</td>
<td>Apr 3</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>21</td>
<td>Apr 5</td>
<td>Wednesday</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>22</td>
<td>Apr 10</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td>Iteration 12 ends; deliverables are in the <a
href="iteration-goals.html#/it12goals">iteration goals slide
set</a></td>
<td></td>
</tr>
<tr class="odd">
<td>23</td>
<td>Apr 12</td>
<td>Wednesday</td>
<td>final presentations</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>24</td>
<td>Apr 14</td>
<td>Friday</td>
<td>final presentations</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>25</td>
<td>Apr 17</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>26</td>
<td>Apr 19</td>
<td>Wednesday</td>
<td>final presentations</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>27</td>
<td>Apr 21</td>
<td>Friday</td>
<td>final presentations</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>28</td>
<td>Apr 24</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td>Iteration 13 ends; deliverables are in the <a
href="iteration-goals.html#/it13goals">iteration goals slide
set</a></td>
<td></td>
</tr>
<tr class="odd">
<td>29</td>
<td>Apr 26</td>
<td>Wednesday</td>
<td>final presentations</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>30</td>
<td>Apr 28</td>
<td>Friday</td>
<td>final presentations (possible)</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>31</td>
<td>May 1</td>
<td>Monday</td>
<td>course conclusion</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td></td>
<td>May 8</td>
<td>Monday</td>
<td></td>
<td></td>
<td>Iteration 14 ends; deliverables are in the <a
href="iteration-goals.html#/it14goals">iteration goals slide
set</a></td>
<td></td>
</tr>
</tbody>
</table>
<p> </p>
<h2 id="lectures-fall-2016">Lectures (fall 2016)</h2>
<table>
<colgroup>
<col style="width: 4%" />
<col style="width: 12%" />
<col style="width: 12%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 12%" />
<col style="width: 27%" />
</colgroup>
<thead>
<tr class="header">
<th>Num</th>
<th>Date</th>
<th>Day of week</th>
<th>Lecture type</th>
<th>Planned topic</th>
<th>Iteration and deliverables</th>
<th>Actual lecture progress (and recording)</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>1</td>
<td>Aug 24</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="course-introduction-fall.html#/">Course
introduction</a></td>
<td></td>
<td><a href="course-introduction-fall.html#/">Course introduction</a>,
slides <a href="course-introduction-fall.html#/">1</a> to <a
href="course-introduction-fall.html#/7/1">8.2</a></td>
</tr>
<tr class="even">
<td>2</td>
<td>Aug 26</td>
<td>Friday</td>
<td>lecture</td>
<td><a href="course-introduction-fall.html#/">Course
introduction</a></td>
<td></td>
<td><a href="course-introduction-fall.html#/">Course introduction</a>,
slides <a href="course-introduction-fall.html#/7">8.1</a> to <a
href="course-introduction-fall.html#/9/10">10.11</a> (end) (<a
href="https://collab.itc.virginia.edu/access/content/group/cd4a69a3-3a30-4ea6-b1bc-985ae7eca8bb/lectures/course-introduction-fall/course-introduction.htm">recording</a>)</td>
</tr>
<tr class="odd">
<td>3</td>
<td>Aug 29</td>
<td>Monday</td>
<td>lecture</td>
<td><a href="../slides/01-legal.html#/">Legal issues</a></td>
<td></td>
<td><a href="../slides/01-legal.html#/">Legal issues</a>, slides <a
href="../slides/01-legal.html#/">1</a> to <a
href="../slides/01-legal.html#/4/13">5.14</a></td>
</tr>
<tr class="even">
<td>4</td>
<td>Aug 31</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="../slides/01-legal.html#/">Legal issues</a>, <a
href="../slides/02-development-methods.html#/">Development
methods</a></td>
<td><a href="../docs/hw-git.html">HW 1: git</a> (<a
href="../docs/hw-git.md">md</a>), <a href="http://goo.gl/Vjn3Yx">github
survey</a></td>
<td><a href="../slides/01-legal.html#/">Legal issues</a>, slides <a
href="../slides/01-legal.html#/5">6.1</a> to <a
href="../slides/01-legal.html#/6/9">7.10</a> (end) (<a
href="https://collab.itc.virginia.edu/access/content/group/cd4a69a3-3a30-4ea6-b1bc-985ae7eca8bb/lectures/01-legal/01-legal.htm">recording</a>);
<a href="../slides/02-development-methods.html#/">Development
methods</a>, slides <a
href="../slides/02-development-methods.html#/">1</a> to <a
href="../slides/02-development-methods.html#/3/4">4.5</a></td>
</tr>
<tr class="odd">
<td>5</td>
<td>Sep 2</td>
<td>Friday</td>
<td>lecture</td>
<td><a href="../slides/02-development-methods.html#/">Development
methods</a></td>
<td></td>
<td><a href="../slides/02-development-methods.html#/">Development
methods</a>, slides <a
href="../slides/02-development-methods.html#/3/4">4.5</a> to <a
href="../slides/02-development-methods.html#/7/5">8.6</a> (end) (<a
href="https://collab.itc.virginia.edu/access/content/group/cd4a69a3-3a30-4ea6-b1bc-985ae7eca8bb/lectures/02-dev-methods/02-dev-methods.htm">recording</a>)</td>
</tr>
<tr class="even">
<td>6</td>
<td>Sep 5</td>
<td>Monday</td>
<td>lecture</td>
<td><a href="../slides/03-frameworks.html#/">Frameworks</a></td>
<td>CakePHP part of <a href="../docs/hw-frameworks.html">HW 2</a> (<a
href="../docs/hw-frameworks.md">md</a>)</td>
<td><a href="../slides/03-frameworks.html#/">Frameworks</a>, slides <a
href="../slides/03-frameworks.html#/">1</a> to <a
href="../slides/03-frameworks.html#/4/7">5.8</a></td>
</tr>
<tr class="odd">
<td>7</td>
<td>Sep 7</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="../slides/03-frameworks.html#/">Frameworks</a></td>
<td></td>
<td><a href="../slides/03-frameworks.html#/">Frameworks</a>, slides <a
href="../slides/03-frameworks.html#/5">6.1</a> to <a
href="../slides/03-frameworks.html#/7/7">8.8</a> (end) (<a
href="https://collab.itc.virginia.edu/access/content/group/cd4a69a3-3a30-4ea6-b1bc-985ae7eca8bb/lectures/03-frameworks/03-frameworks.htm">recording</a>);
<a href="../slides/04-requirements.html#/">Requirements</a>, slides <a
href="../slides/04-requirements.html#/">1</a> to <a
href="../slides/04-requirements.html#/2/6">3.7</a></td>
</tr>
<tr class="even">
<td>8</td>
<td>Sep 9</td>
<td>Friday</td>
<td>no class</td>
<td></td>
<td>Rails part of <a href="../docs/hw-frameworks.html">HW 2</a> (<a
href="../docs/hw-frameworks.md">md</a>)</td>
<td>(no class today)</td>
</tr>
<tr class="odd">
<td>9</td>
<td>Sep 12</td>
<td>Monday</td>
<td>lecture</td>
<td><a href="../slides/04-requirements.html#/">Requirements</a>, survey
& project discussion</td>
<td>Django part of <a href="../docs/hw-frameworks.html">HW 2</a> (<a
href="../docs/hw-frameworks.md">md</a>)</td>
<td></td>
</tr>
<tr class="even">
<td>10</td>
<td>Sep 14</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="../slides/04-requirements.html#/">Requirements</a></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>11</td>
<td>Sep 16</td>
<td>Friday</td>
<td>class optional</td>
<td></td>
<td>Year-start surveys due</td>
<td></td>
</tr>
<tr class="even">
<td>12</td>
<td>Sep 19</td>
<td>Monday</td>
<td>group meetings</td>
<td><a href="../slides/05-project-start.html#/">Project start</a></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>13</td>
<td>Sep 21</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="../slides/06-customer-meetings.html#/">Customer
meetings</a></td>
<td>Iteration 1 begins (yesterday)</td>
<td></td>
</tr>
<tr class="even">
<td>14</td>
<td>Sep 23</td>
<td>Friday</td>
<td>no class</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>15</td>
<td>Sep 26</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>16</td>
<td>Sep 28</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="../slides/07-estimation.html#/">Estimation workday</a></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>17</td>
<td>Sep 30</td>
<td>Friday</td>
<td>no class</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td></td>
<td>Oct 3</td>
<td>Monday</td>
<td>no class</td>
<td>(fall break)</td>
<td>Iteration 1 ends</td>
<td></td>
</tr>
<tr class="odd">
<td>18</td>
<td>Oct 5</td>
<td>Wednesday</td>
<td>group meetings</td>
<td></td>
<td>Iteration 2 begins (yesterday)</td>
<td></td>
</tr>
<tr class="even">
<td>19</td>
<td>Oct 7</td>
<td>Friday</td>
<td>no class</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>20</td>
<td>Oct 10</td>
<td>Monday</td>
<td>lecture</td>
<td><a href="../slides/08-wireframing.html#/">Wireframing</a></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>21</td>
<td>Oct 12</td>
<td>Wednesday</td>
<td>group meetings</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>22</td>
<td>Oct 14</td>
<td>Friday</td>
<td>no class</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>23</td>
<td>Oct 17</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td>Iteration 2 ends; <strong>PHASE CHANGE</strong></td>
<td></td>
</tr>
<tr class="odd">
<td>24</td>
<td>Oct 19</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="../slides/09-ci-testing.html#/">Continuous Integration
Testing</a></td>
<td>Iteration 3 begins (yesterday)</td>
<td></td>
</tr>
<tr class="even">
<td>25</td>
<td>Oct 21</td>
<td>Friday</td>
<td>no class</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>26</td>
<td>Oct 24</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>27</td>
<td>Oct 26</td>
<td>Wednesday</td>
<td>lecture</td>
<td><a href="daily-announcements.html#citestingworkday">CI Testing work
day</a></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>28</td>
<td>Oct 28</td>
<td>Friday</td>
<td>no class</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>29</td>
<td>Oct 31</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td>Iteration 3 ends</td>
<td></td>
</tr>
<tr class="odd">
<td>30</td>
<td>Nov 2</td>
<td>Wednesday</td>
<td>lecture</td>
<td>Documentation</td>
<td>Iteration 4 begins (yesterday)</td>
<td></td>
</tr>
<tr class="even">
<td>31</td>
<td>Nov 4</td>
<td>Friday</td>
<td>no class</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>32</td>
<td>Nov 7</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>33</td>
<td>Nov 9</td>
<td>Wednesday</td>
<td>lecture</td>
<td>…</td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>34</td>
<td>Nov 12</td>
<td>Friday</td>
<td>no class</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>35</td>
<td>Nov 14</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td>Iteration 4 ends; <strong>PHASE CHANGE</strong></td>
<td></td>
</tr>
<tr class="odd">
<td>36</td>
<td>Nov 16</td>
<td>Wednesday</td>
<td>lecture</td>
<td>Guest lecturer?</td>
<td>Iteration 5 begins (yesterday)</td>
<td></td>
</tr>
<tr class="even">
<td>37</td>
<td>Nov 18</td>
<td>Friday</td>
<td>no class</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>38</td>
<td>Nov 21</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td></td>
<td>Nov 23</td>
<td>Wednesday</td>
<td>no class</td>
<td>(Thanksgiving break)</td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td></td>
<td>Nov 25</td>
<td>Friday</td>
<td>no class</td>
<td>(Thanksgiving break)</td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>39</td>
<td>Nov 28</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td>Iteration 5 ends</td>
<td></td>
</tr>
<tr class="odd">
<td>40</td>
<td>Nov 30</td>
<td>Wednesday</td>
<td>lecture</td>
<td></td>
<td>Iteration 6 begins (yesterday)</td>
<td></td>
</tr>
<tr class="even">
<td>41</td>
<td>Dec 2</td>
<td>Friday</td>
<td>no class</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td>42</td>
<td>Dec 5</td>
<td>Monday</td>
<td>group meetings</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td></td>
<td>Dec 7</td>
<td>Wednesday</td>
<td>no class</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="odd">
<td></td>
<td>Dec 9</td>
<td>Friday</td>
<td>no class</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td></td>
<td>Dec 12</td>
<td>Monday</td>
<td>no class</td>
<td></td>
<td>Iteration 6 ends; <strong>PHASE CHANGE</strong></td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="iteration-schedule-fall-2016-and-spring-2017">Iteration
Schedule, fall 2016 and spring 2017</h2>
<p>Iterations start on a Tuesday (at 12:01 a.m. on Tuesday morning), and
end at the end of the day on a Monday two weeks later (at 11:59 p.m. on
that Monday). The first 6 iterations are in the fall semester, and the
last 8 iterations are in the spring semester.</p>
<ol type="1">
<li>Iteration 1: Tue, Sep 20 -> Oct 3</li>
<li>Iteration 2: Tue, Oct 4 -> 17</li>
<li>Iteration 3: Tue, Oct 18 -> Oct 31</li>
<li>Iteration 4: Tue, Nov 1 -> 14</li>
<li>Iteration 5: Tue, Nov 15 -> 28</li>
<li>Iteration 6: Tue, Nov 29 -> 12 (note that this iteration ends
during finals week)</li>
<li>Iteration 7: Tue, Jan 17 -> Jan 30</li>
<li>Iteration 8: Tue, Jan 31 -> 13</li>
<li>Iteration 9: Tue, Feb 14 -> 27</li>
<li>Iteration 10: Tue, Feb 28 -> 13 (note that this iteration
contains spring break)</li>
<li>Iteration 11: Tue, Mar 14 -> 27 (note that this is the last
“development” iteration)</li>
<li>Iteration 12: Tue, Mar 28 -> Apr 10</li>
<li>Iteration 13: Tue, Apr 11 -> 24</li>
<li>Iteration 14: Tue, Apr 25 -> May 8 (note that this iteration ends
during finals week)</li>
</ol>
</main>
</body>
</html>