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
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>CS 1300 - UI/UX 2022</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<link rel="stylesheet" type="text/css" href="./css/reset.css" />
<link rel="stylesheet" type="text/css" href="./css/style.css" />
<link rel="icon" href="./images/favicon.png" />
<link rel="stylesheet" type="text/css" href="./CS 1300_files/style.css" />
<link
rel="stylesheet"
type="text/css"
href="./CS 1300_files/convenience.css"
/>
<link rel="stylesheet" type="text/css" href="./CS 1300_files/guest.css" />
<link
rel="shortcut icon"
type="image/png"
href="./CS 1300_files/succulents-02.png"
/>
<!--fonts -->
<link href="./CS 1300_files/css2" rel="stylesheet" />
<script src="./CS 1300_files/jquery.min.js"></script>
<script src="./js/main.js"></script>
<meta name="theme-color" content="" />
<meta property="og:title" content="" />
<meta property="og:description" content="" />
</head>
<body>
<div id="nav">
<div>
<div id="logo-wrapper">
<div class="hide-desktop" style="width: 0.5rem"></div>
<a href="#welcome"><img src="./images/favicon.png" id="logo" /></a
><a
class="hide-desktop"
style="
text-decoration: none;
font-weight: 700;
color: #000;
margin-left: 0.25rem;
font-family: classico-urw, sans-serif;
"
href="#welcome"
><span>CSCI 1300</span></a
>
<div class="hide-desktop" style="flex: 1"></div>
<button
class="hide-desktop"
style="flex: none; margin-right: 1rem"
onclick="toggleNav(!isNavOpen);"
>
Toggle Nav
</button>
</div>
</div>
<hr />
<div id="business-hours">
<h3>Business Hours</h3>
<p>T/Th 1-2:20pm</p>
<p>CIT Room XXX</p>
<div><a class="link" href="https://example.com">Zoom Link</a></div>
</div>
<hr />
<div id="nav-links">
<a class="button" href="#xxx">Weekly Specials</a>
<a class="link" href="#xxx">Course Schedule</a>
<a class="link" href="#xxx">Course Info</a>
<a class="link" href="#xxx">Kitchen Staff</a>
</div>
</div>
<div id="content">
<div id="welcome">
<div>
<p style="font-size: 2rem">Welcome to</p>
<h1>CSCI 1300</h1>
<p style="font-size: 2rem">User Interfaces and User Experience</p>
</div>
</div>
<div id="course-info" class="section" style="background-color: #cde6cb">
<div class="header flex-row">
<img src="./CS 1300_files/succulents-04.png" class="succulent-png" />
<h1 style="color: #a97c50">COURSE INFO</h1>
<img src="./CS 1300_files/succulents-04.png" class="succulent-png" />
</div>
<div class="flex-column">
<div class="content">
<div id="logistics">
<div class="flex-space-between">
<h3 style="color: #2bb673">LOCATION:</h3>
<h4>
<a href="https://brown.zoom.us/j/96200647304">Zoom link</a>
</h4>
</div>
<div class="flex-space-between">
<h3 style="color: #2bb673">TIME:</h3>
<h4 style="width: 200px; text-align: right">
TTh 1:00pm - 2:20pm
</h4>
</div>
</div>
<p>
Have you ever walked into a door thinking that you were supposed
to pull instead of push? Have you ever been stuck on a website,
not sure how to proceed next? Learn when to use different
interfaces, how to model and represent user interaction, how to
elicit requirements and feedback from users, as well as the
principles of user experience design, methods for designing and
prototyping interfaces, and user interface evaluation. Students
interested in both learning the process behind building an
effective interface and gaining hands-on experience designing a
user interface should take this course. There will be assignments,
readings, and studios, where students will have the opportunity to
work alongside TAs and interact with industry guests as they learn
critical tools for interface and web design.
</p>
<a
href="https://docs.google.com/document/d/1XlcD1bA4THmcWBqI607RxwrLY37ZUfIKXdqBBkH2IBc/edit?usp=sharing"
class="green-link"
>
<h3>syllabus</h3>
<svg
class="svg-show"
xmlns="http://www.w3.org/2000/svg"
width="26"
height="26"
viewBox="0 0 21 21"
>
<g
fill="none"
fill-rule="evenodd"
stroke="#2BB673"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(4 6)"
>
<polyline
points="12.329 7.328 12.328 1.67 6.671 1.669"
transform="scale(1 -1) rotate(45 20.36 0)"
></polyline>
<line x1="13.5" x2=".5" y1="4.5" y2="4.5"></line>
</g>
</svg>
<svg
class="svg-hover"
xmlns="http://www.w3.org/2000/svg"
width="26"
height="26"
viewBox="0 0 21 21"
>
<g
fill="none"
fill-rule="evenodd"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(4 6)"
>
<polyline
points="12.329 7.328 12.328 1.67 6.671 1.669"
transform="scale(1 -1) rotate(45 20.36 0)"
></polyline>
<line x1="13.5" x2=".5" y1="4.5" y2="4.5"></line>
</g>
</svg>
</a>
</div>
</div>
</div>
<div id="helpful-links" class="section" style="background-color: #706881">
<div class="header flex-row">
<img src="./CS 1300_files/succulents-05.png" class="succulent-png" />
<h1 style="color: #f5ce5b">helpful links</h1>
<img src="./CS 1300_files/succulents-05.png" class="succulent-png" />
</div>
<div id="helpful-links-box" class="flex-column">
<div class="flex-column" style="margin: 0px 10px">
<h2>important</h2>
<div class="flex-row" style="margin: 0px 10px">
<a
style="margin: 10px"
href="https://piazza.com/class/kcw25izsiei48j"
target="_blank"
class="helpful-link"
>
<img src="./CS 1300_files/piazza.png" class="small-icon" />
<h3>piazza</h3>
</a>
<a
style="margin: 10px"
href="https://canvas.brown.edu/"
target="_blank"
class="helpful-link"
>
<img src="assets/canvas.png" class="small-icon" />
<h3>canvas</h3>
</a>
</div>
<div class="flex-row">
<a
style="margin: 10px"
href="https://docs.google.com/spreadsheets/d/e/2PACX-1vRow8i_X8guQpwU_da4y7rwDBbhTeYsUQ2b33MPkezcz2dLOpQxMBzo_6XBYJFTD6mSnT3-FVUsjh6S/pubhtml?gid=1112663023&single=true"
target="_blank"
class="helpful-link"
>
<svg
class="svg-show"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g fill="none" fill-rule="evenodd" transform="translate(2 2)">
<path
d="m2.5.5h12c1.1045695 0 2 .8954305 2 2v12c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-12c0-1.1045695.8954305-2 2-2z"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path
d="m.5 4.5h16"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<g fill="white">
<g>
<circle cx="8.5" cy="8.5" r="1"></circle>
<circle cx="4.5" cy="8.5" r="1"></circle>
<circle cx="12.5" cy="8.5" r="1"></circle>
</g>
<g>
<circle cx="8.5" cy="12.5" r="1"></circle>
<circle cx="4.5" cy="12.5" r="1"></circle>
<circle cx="12.5" cy="12.5" r="1"></circle>
</g>
</g>
</g>
</svg>
<svg
class="svg-hover"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g fill="none" fill-rule="evenodd" transform="translate(2 2)">
<path
d="m2.5.5h12c1.1045695 0 2 .8954305 2 2v12c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-12c0-1.1045695.8954305-2 2-2z"
stroke="#706881"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path
d="m.5 4.5h16"
stroke="#706881"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<g fill="#706881">
<g>
<circle cx="8.5" cy="8.5" r="1"></circle>
<circle cx="4.5" cy="8.5" r="1"></circle>
<circle cx="12.5" cy="8.5" r="1"></circle>
</g>
<g>
<circle cx="8.5" cy="12.5" r="1"></circle>
<circle cx="4.5" cy="12.5" r="1"></circle>
<circle cx="12.5" cy="12.5" r="1"></circle>
</g>
</g>
</g>
</svg>
<h3>schedule</h3>
</a>
<a
style="margin: 10px"
href="https://script.google.com/a/brown.edu/macros/s/AKfycbw3-4g7pzYS8dgLLu5fHImIXC0Asu7Cqn_DLEGngPdEDRmFgxs/exec"
target="_blank"
class="helpful-link"
>
<svg
class="svg-show"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2 2)"
>
<path d="m5.5.5h6v5h-6z"></path>
<path d="m10.5 11.5h6v5h-6z"></path>
<path d="m.5 11.5h6v5h-6z"></path>
<path d="m3.498 11.5v-3h10v3"></path>
<path d="m8.5 8.5v-3"></path>
</g>
</svg>
<svg
class="svg-hover"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="#706881"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2 2)"
>
<path d="m5.5.5h6v5h-6z"></path>
<path d="m10.5 11.5h6v5h-6z"></path>
<path d="m.5 11.5h6v5h-6z"></path>
<path d="m3.498 11.5v-3h10v3"></path>
<path d="m8.5 8.5v-3"></path>
</g>
</svg>
<h3>ux factor</h3>
</a>
</div>
</div>
<div
class="flex-row"
style="flex-wrap: wrap; align-items: flex-start"
>
<div class="flex-column" style="margin: 25px 10px 0px 10px">
<h2>course docs</h2>
<a
href="https://docs.google.com/document/d/1XlcD1bA4THmcWBqI607RxwrLY37ZUfIKXdqBBkH2IBc/edit?usp=sharing"
target="_blank"
class="no-border-helpful-link"
>
<svg
class="svg-show"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(4 3)"
>
<path
d="m12.5 12.5v-7l-5-5h-5c-1.1045695 0-2 .8954305-2 2v10c0 1.1045695.8954305 2 2 2h8c1.1045695 0 2-.8954305 2-2z"
></path>
<path d="m7.5.5v3c0 1.1045695.8954305 2 2 2h3"></path>
</g>
</svg>
<svg
class="svg-hover"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="#52A25E"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(4 3)"
>
<path
d="m12.5 12.5v-7l-5-5h-5c-1.1045695 0-2 .8954305-2 2v10c0 1.1045695.8954305 2 2 2h8c1.1045695 0 2-.8954305 2-2z"
></path>
<path d="m7.5.5v3c0 1.1045695.8954305 2 2 2h3"></path>
</g>
</svg>
<h3>syllabus</h3>
</a>
<a
href="https://cs.brown.edu/courses/csci1300/fall2020/documents/[cs1300]%20Software%20License%20Guide.pdf"
target="_blank"
class="no-border-helpful-link"
>
<svg
class="svg-show"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2 4)"
>
<path
d="m2.5.48528137h11c.5522847 0 1 .44771525 1 1v8.01471863h-13v-8.01471863c0-.55228475.44771525-1 1-1z"
></path>
<path
d="m1.11803399 9.5h13.76393201c.5522848 0 1 .44771525 1 1 0 .1552451-.0361451.3083582-.1055728.4472136l-1.2763932 2.5527864h-13l-1.2763932-2.5527864c-.24698925-.4939785-.0467649-1.09465154.44721359-1.34164079.13885544-.06942772.2919685-.10557281.4472136-.10557281z"
transform="matrix(1 0 0 -1 0 23)"
></path>
</g>
</svg>
<svg
class="svg-hover"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="#52A25E"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2 4)"
>
<path
d="m2.5.48528137h11c.5522847 0 1 .44771525 1 1v8.01471863h-13v-8.01471863c0-.55228475.44771525-1 1-1z"
></path>
<path
d="m1.11803399 9.5h13.76393201c.5522848 0 1 .44771525 1 1 0 .1552451-.0361451.3083582-.1055728.4472136l-1.2763932 2.5527864h-13l-1.2763932-2.5527864c-.24698925-.4939785-.0467649-1.09465154.44721359-1.34164079.13885544-.06942772.2919685-.10557281.4472136-.10557281z"
transform="matrix(1 0 0 -1 0 23)"
></path>
</g>
</svg>
<h3>software guide</h3>
</a>
<a
href="https://docs.google.com/document/d/10gUVRN74JkL6Iqw3w_XEPcAaQkZFqlXYTRX-XFk51yk/edit?usp=sharing"
target="_blank"
class="no-border-helpful-link"
>
<svg
class="svg-show"
xmlns="http://www.w3.org/2000/svg"
width="21"
height="21"
viewBox="0 0 21 21"
>
<g
fill="none"
fill-rule="evenodd"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2 3)"
>
<line x1="10.5" x2="6.5" y1=".5" y2="14.5"></line>
<polyline
points="7.328 2.672 7.328 8.328 1.672 8.328"
transform="rotate(135 4.5 5.5)"
></polyline>
<polyline
points="15.328 6.672 15.328 12.328 9.672 12.328"
transform="scale(1 -1) rotate(-45 -10.435 0)"
></polyline>
</g>
</svg>
<svg
class="svg-hover"
xmlns="http://www.w3.org/2000/svg"
width="21"
height="21"
viewBox="0 0 21 21"
>
<g
fill="none"
fill-rule="evenodd"
stroke="#52A25E"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2 3)"
>
<line x1="10.5" x2="6.5" y1=".5" y2="14.5"></line>
<polyline
points="7.328 2.672 7.328 8.328 1.672 8.328"
transform="rotate(135 4.5 5.5)"
></polyline>
<polyline
points="15.328 6.672 15.328 12.328 9.672 12.328"
transform="scale(1 -1) rotate(-45 -10.435 0)"
></polyline>
</g>
</svg>
<h3>deployment guide</h3>
</a>
<!-- <a href="https://docs.google.com/document/d/18I11UCHFAhYXajRXMa2aw6wh73hSKrbmSPy_o0z9V0c/edit?usp=sharing" target="_blank" class="no-border-helpful-link">
<svg class="svg-show" height="21" viewBox="0 0 21 21" width="21" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd" stroke="white" stroke-linecap="round" stroke-linejoin="round" transform="translate(2 4)"><path d="m13.5 0 3 4-8 10-8-10 3.009-4z"/><path d="m.5 4h16"/><path d="m5.5 4 3 10"/><path d="m11.5 4-3 10"/><path d="m3.509 0 1.991 4 3-4 3 4 2-4"/></g></svg>
<svg class="svg-hover" height="21" viewBox="0 0 21 21" width="21" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd" stroke="#52A25E" stroke-linecap="round" stroke-linejoin="round" transform="translate(2 4)"><path d="m13.5 0 3 4-8 10-8-10 3.009-4z"/><path d="m.5 4h16"/><path d="m5.5 4 3 10"/><path d="m11.5 4-3 10"/><path d="m3.509 0 1.991 4 3-4 3 4 2-4"/></g></svg>
<h3>style guide</h3>
</a> -->
</div>
<div
class="flex-column"
style="margin: 25px 10px 0px 10px; align-content: flex-start"
>
<h2>forms</h2>
<!-- <a href="https://forms.gle/jpaWjoDhp7LBfVk27" target="_blank" class="no-border-helpful-link">
<h3>waitlist form</h3>
</a> -->
<a
href="https://forms.gle/BCEeyomrUDNbDjin8"
target="_blank"
class="no-border-helpful-link"
>
<svg
class="svg-show"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2.5 1.5)"
>
<path
d="m10 3h2.3406038c.4000282 0 .7615663.23839685.9191451.6060807l2.7402511 6.3939193v4c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-4l2.74025113-6.3939193c.15757879-.36768385.51911692-.6060807.91914503-.6060807h2.34060384"
></path>
<path
d="m10.121 3.964-.06 4.182-4.182.061"
transform="matrix(.70710678 .70710678 -.70710678 .70710678 6.646598 -3.874306)"
></path>
<path d="m8 0v9"></path>
<path
d="m0 10h4c.55228475 0 1 .4477153 1 1v1c0 .5522847.44771525 1 1 1h4c.5522847 0 1-.4477153 1-1v-1c0-.5522847.4477153-1 1-1h4"
></path>
</g>
</svg>
<svg
class="svg-hover"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="#52A25E"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2.5 1.5)"
>
<path
d="m10 3h2.3406038c.4000282 0 .7615663.23839685.9191451.6060807l2.7402511 6.3939193v4c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-4l2.74025113-6.3939193c.15757879-.36768385.51911692-.6060807.91914503-.6060807h2.34060384"
></path>
<path
d="m10.121 3.964-.06 4.182-4.182.061"
transform="matrix(.70710678 .70710678 -.70710678 .70710678 6.646598 -3.874306)"
></path>
<path d="m8 0v9"></path>
<path
d="m0 10h4c.55228475 0 1 .4477153 1 1v1c0 .5522847.44771525 1 1 1h4c.5522847 0 1-.4477153 1-1v-1c0-.5522847.4477153-1 1-1h4"
></path>
</g>
</svg>
<h3>project handin form</h3>
</a>
<a
href="https://forms.gle/5L5CCLRqozXrUnmE8"
target="_blank"
class="no-border-helpful-link"
>
<svg
class="svg-show"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
transform="matrix(-1 0 0 1 20 2)"
>
<path
d="m8.5 2.56534572h2c3.3137085 0 6 2.6862915 6 6v1.93465428c0 3.3137085-2.6862915 6-6 6h-2c-3.3137085 0-6-2.6862915-6-6v-1.93465428c0-3.3137085 2.6862915-6 6-6z"
></path>
<path
d="m3.94265851-.12029102c-1.05323083.28505997-1.86575682 1.17688618-1.86575682 2.30840383 0 1.16606183.73081563 2.21070886 1.78973019 2.50733508"
transform="matrix(.62932039 .77714596 -.77714596 .62932039 2.893856 -1.491094)"
></path>
<path
d="m16.9295345-.10708618c-1.0898445.26224883-1.9419712 1.17003523-1.9419712 2.3284815 0 1.16644061.7312905 2.21138754 1.7907622 2.50762392"
transform="matrix(-.62932039 .77714596 .77714596 .62932039 24.205765 -11.545558)"
></path>
<path d="m9.5 5.5v4h-3.5"></path>
<path d="m15 15 2 2"></path>
<path d="m2 15 2 2" transform="matrix(-1 0 0 1 6 0)"></path>
</g>
</svg>
<svg
class="svg-hover"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="#52A25E"
stroke-linecap="round"
stroke-linejoin="round"
transform="matrix(-1 0 0 1 20 2)"
>
<path
d="m8.5 2.56534572h2c3.3137085 0 6 2.6862915 6 6v1.93465428c0 3.3137085-2.6862915 6-6 6h-2c-3.3137085 0-6-2.6862915-6-6v-1.93465428c0-3.3137085 2.6862915-6 6-6z"
></path>
<path
d="m3.94265851-.12029102c-1.05323083.28505997-1.86575682 1.17688618-1.86575682 2.30840383 0 1.16606183.73081563 2.21070886 1.78973019 2.50733508"
transform="matrix(.62932039 .77714596 -.77714596 .62932039 2.893856 -1.491094)"
></path>
<path
d="m16.9295345-.10708618c-1.0898445.26224883-1.9419712 1.17003523-1.9419712 2.3284815 0 1.16644061.7312905 2.21138754 1.7907622 2.50762392"
transform="matrix(-.62932039 .77714596 .77714596 .62932039 24.205765 -11.545558)"
></path>
<path d="m9.5 5.5v4h-3.5"></path>
<path d="m15 15 2 2"></path>
<path d="m2 15 2 2" transform="matrix(-1 0 0 1 6 0)"></path>
</g>
</svg>
<h3>late pass form</h3>
</a>
<a
href="https://forms.gle/U9mCY3Jxw138ux5M7"
target="_blank"
class="no-border-helpful-link"
>
<svg
class="svg-show"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2 2)"
>
<g transform="matrix(0 -1 1 0 .5 16.5)">
<path
d="m16.25.75v5h-5.5"
transform="matrix(0 1 1 0 10.25 -10.25)"
></path>
<path
d="m16 6c-2.8366699-3.33333333-5.6700033-5-8.5-5-2.82999674 0-5.32999674 1-7.5 3"
></path>
</g>
<g transform="matrix(0 1 -1 0 16 0)">
<path
d="m16.75.25v5h-5.5"
transform="matrix(0 1 1 0 11.25 -11.25)"
></path>
<path
d="m16.5 5.5c-2.8366699-3.33333333-5.6700033-5-8.5-5-2.82999674 0-5.32999674 1-7.5 3"
></path>
</g>
</g>
</svg>
<svg
class="svg-hover"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="#52A25E"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2 2)"
>
<g transform="matrix(0 -1 1 0 .5 16.5)">
<path
d="m16.25.75v5h-5.5"
transform="matrix(0 1 1 0 10.25 -10.25)"
></path>
<path
d="m16 6c-2.8366699-3.33333333-5.6700033-5-8.5-5-2.82999674 0-5.32999674 1-7.5 3"
></path>
</g>
<g transform="matrix(0 1 -1 0 16 0)">
<path
d="m16.75.25v5h-5.5"
transform="matrix(0 1 1 0 11.25 -11.25)"
></path>
<path
d="m16.5 5.5c-2.8366699-3.33333333-5.6700033-5-8.5-5-2.82999674 0-5.32999674 1-7.5 3"
></path>
</g>
</g>
</svg>
<h3>regrade request form</h3>
</a>
<a
href="https://forms.gle/JVDLKSa5Uc8qkfQ2A"
target="_blank"
class="no-border-helpful-link"
>
<svg
class="svg-show"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
transform="matrix(0 -1 1 0 4 19)"
>
<path
d="m15.328 5.672v5.656h-5.656"
transform="matrix(-.70710678 .70710678 .70710678 .70710678 15.328661 -6.349339)"
></path>
<path d="m12.5.5v12"></path>
<path
d="m7.328 1.672h-5.656v5.656"
transform="matrix(-.70710678 .70710678 .70710678 .70710678 4.500028 -1.863972)"
></path>
<path d="m4.5.5v12"></path>
</g>
</svg>
<svg
class="svg-hover"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="#52A25E"
stroke-linecap="round"
stroke-linejoin="round"
transform="matrix(0 -1 1 0 4 19)"
>
<path
d="m15.328 5.672v5.656h-5.656"
transform="matrix(-.70710678 .70710678 .70710678 .70710678 15.328661 -6.349339)"
></path>
<path d="m12.5.5v12"></path>
<path
d="m7.328 1.672h-5.656v5.656"
transform="matrix(-.70710678 .70710678 .70710678 .70710678 4.500028 -1.863972)"
></path>
<path d="m4.5.5v12"></path>
</g>
</svg>
<h3>studio switch form</h3>
</a>
<a
href="https://forms.gle/9F6Ec2wX8Tvtyr2C7"
target="_blank"
class="no-border-helpful-link"
>
<svg
class="svg-show"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2 2)"
>
<path
d="m8.24920737-.79402796c1.17157287 0 2.12132033.94974747 2.12132033 2.12132034v13.43502882l-2.12132033 3.5355339-2.08147546-3.495689-.03442539-13.47488064c-.00298547-1.16857977.94191541-2.11832105 2.11049518-2.12130651.00180188-.00000461.00360378-.00000691.00540567-.00000691z"
transform="matrix(.70710678 .70710678 -.70710678 .70710678 8.605553 -3.271644)"
></path>
<path d="m7.5 15.5h8"></path>
<path d="m13.5 4.5 1 1"></path>
</g>
</svg>
<svg
class="svg-hover"
height="21"
viewBox="0 0 21 21"
width="21"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
stroke="#52A25E"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2 2)"
>
<path
d="m8.24920737-.79402796c1.17157287 0 2.12132033.94974747 2.12132033 2.12132034v13.43502882l-2.12132033 3.5355339-2.08147546-3.495689-.03442539-13.47488064c-.00298547-1.16857977.94191541-2.11832105 2.11049518-2.12130651.00180188-.00000461.00360378-.00000691.00540567-.00000691z"
transform="matrix(.70710678 .70710678 -.70710678 .70710678 8.605553 -3.271644)"
></path>
<path d="m7.5 15.5h8"></path>
<path d="m13.5 4.5 1 1"></path>
</g>
</svg>
<h3>feedback form</h3>
</a>
</div>
</div>
</div>
</div>
<div
id="schedule"
class="flex-column section"
style="background-color: #2b2a2d"
>
<div class="header flex-row">
<img src="./CS 1300_files/succulents-02.png" class="succulent-png" />
<h1 style="color: #a29bba">SCHEDULE</h1>
<img src="./CS 1300_files/succulents-02.png" class="succulent-png" />
</div>
<div class="important-note">
<p>
We <strong>strongly recommend</strong> bookmarking this schedule, as
this contains all information regarding assignments, lectures,
studios, and readings.
</p>
</div>
<a
href="https://docs.google.com/spreadsheets/d/e/2PACX-1vRow8i_X8guQpwU_da4y7rwDBbhTeYsUQ2b33MPkezcz2dLOpQxMBzo_6XBYJFTD6mSnT3-FVUsjh6S/pubhtml?gid=1112663023&single=true"
target="_blank"
class="purple-link"
style="margin-bottom: 40px"
>
<h3>link to schedule</h3>
<svg
class="svg-show"
xmlns="http://www.w3.org/2000/svg"
width="26"
height="26"
viewBox="0 0 21 21"
>
<g
fill="none"
fill-rule="evenodd"
stroke="#A29BBA"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(4 6)"
>
<polyline
points="12.329 7.328 12.328 1.67 6.671 1.669"
transform="scale(1 -1) rotate(45 20.36 0)"
></polyline>
<line x1="13.5" x2=".5" y1="4.5" y2="4.5"></line>
</g>
</svg>
<svg
class="svg-hover"
xmlns="http://www.w3.org/2000/svg"
width="26"
height="26"
viewBox="0 0 21 21"
>
<g
fill="none"
fill-rule="evenodd"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(4 6)"
>
<polyline
points="12.329 7.328 12.328 1.67 6.671 1.669"
transform="scale(1 -1) rotate(45 20.36 0)"
></polyline>
<line x1="13.5" x2=".5" y1="4.5" y2="4.5"></line>
</g>
</svg>
</a>
<iframe
id="schedule-iframe"
src="./CS 1300_files/pubhtml.html"
></iframe>
</div>
<div
id="calendar"
class="flex-column section"
style="background-color: #cde6cb">
<div class="header flex-row">
<img src="./CS 1300_files/succulents-07.png" class="succulent-png" />
<h1 style="color: #f5ce5b">calendar</h1>
<img src="./CS 1300_files/succulents-07.png" class="succulent-png" />
</div>
<div class="important-note">
<p style="color: #2b2a2d; margin-bottom: 10px">
To subscribe to the course gcal, click
<a
href="https://calendar.google.com/calendar?cid=Y19nMXR0M2lpbjZ2ZDJqcTJlbzFpamJxNmJya0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t"
target="_blank"
style="color: #52a25e"
>here</a
>.
</p>
<p style="color: #2b2a2d; margin-bottom: 5px">
To sign up for TA Hours, please go to
<a
href="https://signmeup.cs.brown.edu/"
target="_blank"
style="color: #52a25e"
>SignMeUp</a
>.
</p>
<h4
style="
margin-bottom: 20px;
color: #0e6a3e;
text-transform: uppercase;
font-size: 12px;"
>
(( Zoom links for TA hours will be in the SignMeUp queue ))
</h4>
</div>
<iframe
id="calendar-iframe"
src="./CS 1300_files/embed.html"
style="border: solid 1px #777"
width="800"
height="600"
frameborder="0"
scrolling="no"
></iframe>
</div>
<div
id="staff"
class="flex-column section"
style="background-color: #706881"
>
<div class="header flex-row">
<img src="./CS 1300_files/succulents-06.png" class="succulent-png" />
<h1 style="color: #2bb673">STAFF</h1>
<img src="./CS 1300_files/succulents-06.png" class="succulent-png" />
</div>
<div id="emails" class="flex-row wrap-container">
<div class="email">
<h3 style="color: white">uiuxtas@lists.cs.brown.edu</h3>
<h4>(email all TAs, use this by default)</h4>
</div>
<div class="email">
<h3 style="color: white">uiuxhtas@lists.cs.brown.edu</h3>
<h4>(HTAs, Grad TA, & Jeff)</h4>
</div>
<div class="email">
<h3 style="color: white">jeff@cs.brown.edu</h3>
<h4>(sensitive issues)</h4>
</div>
</div>
<div class="shelf flex-column">
<div class="ta-box-left flex-row">
<div class="img-box">
<img
src="./CS 1300_files/succulents-jeff.png"
class="ta-cactus"
/>
<img src="assets/bio-photos/jeff.jpg" class="ta-img" />
</div>
<div class="flex-column bio-text">
<h3>[PROFESSOR] JEFF</h3>
<h4>
jeff has been teaching cs 1300 for 8 years ever since its
inception. he’s studying cs and is an amateur farmer👨🌾, plays
keyboard in a local band, and holds the world record for tech
internships!
</h4>
</div>
</div>
<img src="assets/shelf.png" class="shelf-png" />
</div>
<div class="shelf flex-column">
<div class="flex-row ta-wrapper">
<div class="ta-box-left flex-row">
<div class="img-box">
<img
src="./CS 1300_files/succulents-sarah.png"
class="ta-cactus"
id="sarah-cactus"
style="margin-bottom: 3px"
/>
<img src="./CS 1300_files/sarah.jpg" class="ta-img" />
</div>
<div class="flex-column bio-text">
<h3>[HTA] SARAH</h3>
<h4>
hiiii, i'm sarah! i'm a senior studying astrophysics and cs. i
love to do crosswords, drink coffee, cook/bake (guess what i
did in quarantine woo), ski, and make art:) can't wait to meet
you all!!
</h4>
</div>
</div>
<div class="ta-box-left flex-row">
<div class="img-box">
<img
src="./CS 1300_files/succulents-laura.png"
class="ta-cactus"
id="laura-cactus"
style="margin-bottom: -20px"
/>
<img src="./CS 1300_files/laura.png" class="ta-img" />
</div>
<div class="flex-column bio-text">
<h3>[HTA] LAURA</h3>
<h4>
Hi there, I'm Laura! I'm a senior studying computer science
and ~unofficially~ design. I'm also a proud Rhode Islander
🌊⚓! When I'm not in line at PVDonuts, I enjoy logic puzzles
and wholesome baking shows :)
</h4>
</div>
</div>
</div>
<img src="assets/shelf.png" class="shelf-png" />
</div>
<div class="shelf flex-column">
<div class="ta-box-left flex-row">
<div class="img-box">
<img
src="./CS 1300_files/succulents-talie.png"
class="ta-cactus"
style="margin-bottom: 5px"
/>
<img src="./CS 1300_files/talie.jpg" class="ta-img" />
</div>
<div class="flex-column bio-text">
<h3>[GRAD TA] TALIE</h3>
<h4>
Hello I'm Talie. I'm a PhD student working with Jeff on building
systems to improve mental health. You are welcome and encouraged
to come ask me for weird bird facts at any time.
</h4>
</div>
</div>
<img
src="assets/shelf.png"
class="shelf-png"
style="margin-top: -35px"
/>
</div>
<div class="shelf flex-column">
<div class="flex-row ta-wrapper">
<div class="ta-box-right flex-row">
<div class="flex-column bio-text">
<h3>MICHAEL</h3>
<h4>
Ciao, I’m Michael. I was raised in Cleveland, and I’m a
sophomore dabbling into CS, physics, music, and Italian. I
used to play video games professionally (Destiny) and still
play casually today!
</h4>
</div>
<div class="img-box">
<img
src="./CS 1300_files/succulents-michael.png"
class="ta-cactus"
id="michael-cactus"
style="margin-bottom: -53px"
/>
<img src="./CS 1300_files/michael.jpg" class="ta-img" />
</div>
</div>
<div class="ta-box-right flex-row">
<div class="flex-column bio-text">
<h3>Felicia</h3>
<h4>
Hi I’m Felicia! I’m a senior studying Cognitive Science from
Long Island. I love anything and everything that has to do
with sharks & a big fan of any food that’s spicy.
</h4>
</div>
<div class="img-box">
<img
src="./CS 1300_files/succulents-felicia.png"
class="ta-cactus"
id="felicia-cactus"
style="margin-bottom: 20px"
/>
<img src="./CS 1300_files/felicia.png" class="ta-img" />
</div>
</div>
</div>
<img src="assets/shelf.png" class="shelf-png" />
</div>
<div class="shelf flex-column">
<div class="flex-row ta-wrapper">
<div class="ta-box-left flex-row">
<div class="img-box">
<img
id="gabby-cactus"
src="./CS 1300_files/succulents-gabby.png"
class="ta-cactus"
style="margin-bottom: -12px"
/>
<img src="./CS 1300_files/gabby.jpg" class="ta-img" />
</div>
<div class="flex-column bio-text">
<h3>gabby</h3>
<h4>
Hi! I'm Gabby and I'm a senior studying CS and Art History.
I'm an Animal Crossing villager (come visit Outside!) and a
big fan of oat milk in coffee.
</h4>
</div>
</div>
<div class="ta-box-left flex-row">
<div class="img-box">
<img
src="./CS 1300_files/succulents-sophia.png"
class="ta-cactus"
/>
<img src="./CS 1300_files/sophia.jpg" class="ta-img" />
</div>
<div class="flex-column bio-text">
<h3>sophia</h3>
<h4>
hi! i'm sophia, a senior studying cs and applied math. im a
big fan of anime, kdramas and cdramas, and pushing my
americano consumption to its daily limits :^).
</h4>
</div>
</div>
</div>
<img src="assets/shelf.png" class="shelf-png" />
</div>
<div class="shelf flex-column">
<div class="flex-row ta-wrapper">
<div class="ta-box-right flex-row">
<div class="flex-column bio-text">
<h3>ifechi</h3>
<h4>
Hi, I'm Ifechi! I'm a junior studying CS & APMA. I enjoy
fitness challenges, binge-watching TV, and eating interesting
foods!
</h4>
</div>
<div class="img-box">
<img
src="./CS 1300_files/succulents-ifechi.png"
class="ta-cactus"
id="ifechi-cactus"
style="margin-bottom: -50px"
/>
<img src="./CS 1300_files/ifechi.png" class="ta-img" />
</div>
</div>
<div class="ta-box-right flex-row">
<div class="flex-column bio-text">
<h3>ndunge</h3>
<h4>
Hi, I'm Ndunge! I'm a junior from Pittsburgh studying CS and
Religious Studies. I love all things music and all things food
(:
</h4>
</div>
<div class="img-box">
<img
src="./CS 1300_files/succulents-ndunge.png"
class="ta-cactus"
id="ndunge-cactus"
style="margin-bottom: 15px"
/>
<img src="./CS 1300_files/ndunge.jpg" class="ta-img" />
</div>
</div>
</div>
<img src="assets/shelf.png" class="shelf-png" />
</div>
<div class="shelf flex-column">
<div class="flex-row ta-wrapper">
<div class="ta-box-left flex-row">
<div class="img-box">
<img
src="./CS 1300_files/succulents-miranda.png"
class="ta-cactus"
id="miranda-cactus"
style="margin-bottom: -10px"
/>
<img src="./CS 1300_files/miranda.jpg" class="ta-img" />
</div>
<div class="flex-column bio-text">
<h3>miranda</h3>
<h4>
Hi guys! I'm Miranda, a junior studying CS. I'm a beginning
pole dancer and Chinese snack enthusiast (latiao anyone?).
</h4>
</div>
</div>
<div class="ta-box-left flex-row">
<div class="img-box">
<img
src="./CS 1300_files/succulents-stanley.png"
class="ta-cactus"
id="stanley-cactus"
style="margin-bottom: -5px"
/>
<img src="./CS 1300_files/stanley.jpg" class="ta-img" />
</div>
<div class="flex-column bio-text">
<h3>stanley</h3>
<h4>
Hey everyone, my name is Stanley and I'm a senior studying CS
and Music! Normally you can find me drinking coffee and
anxious about society, but in my free time, I like to play
video games and watch TV. I'm excited to be a part of your
UI/UX experience! :D
</h4>
</div>
</div>
</div>
<img src="assets/shelf.png" class="shelf-png" />
</div>
<div class="shelf flex-column">
<div class="flex-row ta-wrapper">
<div class="ta-box-right flex-row">
<div class="flex-column bio-text">
<h3>zach</h3>
<h4>Proud parent of a thriving basil plant.🌱</h4>
</div>
<!-- <div class="img-box"> -->
<img
src="./CS 1300_files/succulents-zach.png"
class="ta-cactus"
/>
<!-- <img src="staff/zach.jpg" class="ta-img"> -->
<!-- </div> -->
</div>
<div class="ta-box-right flex-row">
<div class="flex-column bio-text">
<h3>Minna</h3>
<h4>
Hi, I'm Minna! I'm a senior studying APMA & CS. I enjoy
drawing, eating toast with Kalles Kaviar, and knowing nearly
everything there is to know about Pokemon. 😄✌
</h4>
</div>
<div class="img-box">
<img
src="./CS 1300_files/succulents-minna.png"
class="ta-cactus"
id="minna-cactus"
style="margin-bottom: -5px"
/>
<img src="./CS 1300_files/minna.jpg" class="ta-img" />
</div>
</div>
</div>
<img src="assets/shelf.png" class="shelf-png" />
</div>
</div>
<!-- <div class="shelf flex-column">
<div class="flex-row">
<div class="ta-box flex-column">
<div class="flex-column bio-text">
<h3 style="color: white;">TA NAME</h3>
<h4>blah blah blah blah blah</h4>
</div>
<img src="images/succulents-02.png" class="ta-cactus">
</div>
<div class="ta-box flex-column">
<div class="flex-column bio-text">
<h3 style="color: white;">TA NAME</h3>
<h4>blah blah blah blah blah</h4>
</div>
<img src="images/succulents-02.png" class="ta-cactus">
</div>
</div>
<img src="images/shelf.png" class="shelf-png">
</div> -->
<div id="faq" class="section" style="background-color: #2b2a2d">
<div class="header flex-row">
<img src="./CS 1300_files/succulents-03.png" class="succulent-png" />
<h1 style="color: #85c87c">F.A.Q</h1>
<img src="./CS 1300_files/succulents-03.png" class="succulent-png" />
</div>
<div class="content" style="align-self: center">
<div>
<h3>Is this course capped?</h3>
<p>
For Fall 2020 we expect to cap the course at about 100 students
for now, but are looking to see if increasing this cap is
compatible with our current plans. If you have not been contacted
by us, then please wait for the shopping period to sign up for the
waitlist after the first day of class, which is also when we will
announce if we can increase the cap.
</p>
<h3>Is there a waitlist for the course?</h3>
<p>
We will set up a waitlist after the first day of class, which we
will announce in class, and over email to students with the course
in their cart, as well as post on the course website. At that time
we'll know whether we can increase the cap a bit, so will be in a
better position to organize the waitlist. The information about
the waitlist will be sent over email to students with this course
in their cart, announced in the first day of class, and posted on
the website. Decisions about the waitlist will be made within 24
hours of the waitlist deadline.
</p>
<h3>Are there prerequisites for the course?</h3>
<p>
This course requires one of the intro CS sequences (CS15/16,
CS17/18, or CS19); you may request an override for the
prerequisites by sending a link to a github repository of work you
did demonstrating use of object-oriented programming, data
structures, and functional programming concepts. If you are on the
waitlist, then include the link there in the question field that
asks for it. Graduate students that have taken courses that cover
these topics should note that on the waitlist form.
</p>
<h3>Will this course be online or in-person?</h3>
<p>
Online. Lectures will be live online and also available as videos,
and studios will be virtual. Our current plan is to have lecture
videos accessible to any student from Brown (and linked from the
course schedule above) so those not enrolled in the course can
view them. We are planning to have studios at different times
(listed as lab hours), so please select a lab hour suitable for
your time zone.
</p>
<h3>Will this course be synchronous or asynchronous?</h3>
<p>
The course will be synchronous but lectures will be recorded, and
studios will be offered synchronously but at multiple times.
In-class activities can be completed at your convenience later if
you are not in class. There will be a studio (lab) time for remote
students where the time will be determined after registration to
accommodate students from different timezones.
</p>
<h3>What will studios be like?</h3>
<p>
Students sign up for studios by selecting the corresponding lab
hour when registering. The studio lab hours will be outside
regular lecture hours. TAs will have an activity prepared for
students in studio, and will be around to give feedback to
students during this time. Students are welcome to work
collaboratively on the studio activities. Work done in studios may
be good starters for your portfolio.
</p>
<h3>
Can I take this course as a non-CS concentrator or incoming
first-year student?
</h3>
<p>
Usually we have CS 0130 which is designed for non-concentrators
and has no prerequistes. However, this year we are only offering
CS 1300, but you may still enroll in CS 1300 if you satisfy those
even as a non-CS concentrator or online first-year student.
</p>
<h3>Can I take this course as a RISD student?</h3>
<p>
Usually our course accomodates many RISD students (over 50 RISD
students took CS 0130 in Fall 2019); this year we are not offering
CS 0130 so RISD students should meet the same prerequisites as
Brown students to take CS 1300.
</p>
<h3>I will miss class on [date]. Can I be excused?</h3>
<p>
We do not take class attendance or deduct points for missing
class, so there's no need to contact the course stuff. In-class
activities can be completed at your convenience later if you are
not in class.
</p>
<h3>Can I take the course as a capstone?</h3>
<p>
Yes, for a capstone, you should extend an assignment into
something that has substantial development and design components
and release it. For instance, you could take your Iterative Design
prototype and build it fully to the point where it's a deployable
app. This can be done as a group, but the amount of work should be
proportional to the group size. Both juniors and seniors may take
CS 1300 for a capstone. Only the online capstone form needs to be
filled out, which you should already have received via email from
the department earlier in September. The capstone can be done
anytime in the semester, until the end of winter break.
</p>
<h3>Will there be a textbook for the course?</h3>
<p>No, all readings will be available on this website.</p>
<h3>Will there be a final exam?</h3>
<p>No, you will complete a portfolio for your final assignment.</p>
<h3>When is the last day I have to come to class?</h3>
<p>It would be the last day listed on the schedule above.</p>
<br />
<br />
</div>
</div>
</div>
</div>
</body>
</html>
|