Skip to content

Commit 570355d

Browse files
committed
Initialize summer semester website
1 parent 583b6c2 commit 570355d

File tree

7 files changed

+205
-671
lines changed

7 files changed

+205
-671
lines changed

www/assignments.scrbl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
@local-table-of-contents[#:style 'immediate-only]
55

66
@include-section{assignments/1.scrbl}
7-
@include-section{assignments/2.scrbl}
8-
@include-section{assignments/3.scrbl}
9-
@include-section{assignments/4.scrbl}
10-
@include-section{assignments/5.scrbl}
7+
@; @include-section{assignments/2.scrbl}
8+
@; @include-section{assignments/3.scrbl}
9+
@; @include-section{assignments/4.scrbl}
10+
@; @include-section{assignments/5.scrbl}
1111
@;include-section{assignments/6.scrbl}
1212
@;;include-section{assignments/7.scrbl}
1313

www/assignments/1.scrbl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#lang scribble/manual
22
@title[#:tag "Assignment 1" #:style 'unnumbered]{Assignment 1: Racket Primer}
33

4-
@bold{Due: Monday, February 5, 11:59PM}
4+
@bold{Due: Monday, June 3, 11:59PM}
55

66
The goal of this assignment is to gain practice programming in Racket.
77

www/defns.rkt

Lines changed: 36 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,69 @@
11
#lang racket
22
(provide (all-defined-out))
3-
(require scribble/core scribble/html-properties scribble/manual)
3+
(require scribble/core scribble/html-properties scribble/manual)
44

55
;(define prof1 (link "https://jmct.cc" "José Manuel Calderón Trilla"))
66
;(define prof1-pronouns "he/him")
77
;(define prof1-email "[email protected]")
88
;(define prof1-initials "JMCT")
99

10-
(define prof1 (link "https://www.cs.umd.edu/~dvanhorn/" "David Van Horn"))
10+
;; (define prof1 (link "https://www.cs.umd.edu/~dvanhorn/" "David Van Horn"))
11+
;; (define prof1-pronouns "he/him")
12+
;; (define prof1-email "[email protected]")
13+
;; (define prof1-initials "DVH")
14+
15+
(define prof1 (link "https://www.cs.umd.edu/~anwar/" "Anwar Mamat"))
1116
(define prof1-pronouns "he/him")
12-
(define prof1-email "dvanhorn@cs.umd.edu")
13-
(define prof1-initials "DVH")
17+
(define prof1-email "anwar@cs.umd.edu")
18+
(define prof1-initials "AM")
1419

15-
(define semester "spring")
20+
(define semester "summer")
1621
(define year "2024")
1722
(define courseno "CMSC 430")
1823

1924
(define lecture-dates "" #;"May 30 -- July 7, 2023")
2025

21-
(define IRB "IRB")
26+
(define IRB "IRB")
2227
(define AVW "AVW")
2328
(define KEY "KEY")
2429

2530

26-
(define m1-date "March 6")
27-
(define m2-date "April 17")
31+
(define m1-date "June 12")
32+
(define m2-date "June 26")
2833
(define midterm-hours "24")
29-
(define final-date "May 14")
30-
(define elms-url "https://umd.instructure.com/courses/1359023")
34+
(define final-date "July 5")
35+
(define elms-url "https://umd.instructure.com/courses/1365875")
3136

3237

3338
(define racket-version "8.11")
3439

3540
(define staff
36-
(list (list "Henry Blanchette" "[email protected]")
37-
(list "Pierce Darragh" "[email protected]")
38-
(list "Advait Kushe" "[email protected]")
39-
(list "Deena Postol" "[email protected]")
40-
(list "William Wegand" "[email protected]")
41-
(list "Kazi Tasnim Zinat" "[email protected]")
42-
#;(list "Fuxiao Liu" "[email protected]")
43-
#;(list "Vivian Chen" "[email protected]")
44-
#;(list "Ian Morrill" "[email protected]")
45-
#;(list "Matthew Schneider" "[email protected]")
46-
#;(list "Rhea Jajodia" "[email protected]")
47-
#;(list "Syed Zaidi" "[email protected]")
48-
#;(list "William Wegand" "[email protected]")
49-
#;(list "Wilson Smith" "[email protected]")
50-
#;(list "Yuhwan Lee" "[email protected]")
41+
(list (list "Pierce Darragh" "[email protected]")
42+
(list "Bora Faber" "[email protected]")
43+
(list "Sriman Selvakumaran" "[email protected]")
44+
#;(list "Advait Kushe" "[email protected]")
45+
#;(list "Deena Postol" "[email protected]")
46+
#;(list "William Wegand" "[email protected]")
47+
#;(list "Kazi Tasnim Zinat" "[email protected]")
48+
#;(list "Fuxiao Liu" "[email protected]")
49+
#;(list "Vivian Chen" "[email protected]")
50+
#;(list "Ian Morrill" "[email protected]")
51+
#;(list "Matthew Schneider" "[email protected]")
52+
#;(list "Rhea Jajodia" "[email protected]")
53+
#;(list "Syed Zaidi" "[email protected]")
54+
#;(list "William Wegand" "[email protected]")
55+
#;(list "Wilson Smith" "[email protected]")
56+
#;(list "Yuhwan Lee" "[email protected]")
5157
))
5258

5359

5460
;(define lecture-schedule1 "MW, 2:00-3:15pm")
55-
(define lecture-schedule1 "MW, 3:30-4:45pm")
61+
(define lecture-schedule1 "MTuThF, 9:30AM-10:45AM EST")
5662

57-
(define classroom1 "HJP 0226")
63+
(define classroom1 "Virtual")
5864

5965
;(define discord "TBD")
60-
(define piazza "https://piazza.com/class/lrs6masma6h2o1/")
61-
(define gradescope "https://www.gradescope.com/courses/723511")
66+
(define piazza "https://piazza.com/class/lwjac3ritxf1z/")
67+
(define gradescope "https://www.gradescope.com/courses/787806")
6268

63-
(define feedback "https://docs.google.com/forms/d/e/1FAIpQLSc80xQELhHb_Ef-tn0DkpH2b6pYadQiT3aYSEJFNqEqBjzdGg/viewform?usp=sf_link")
69+
#;(define feedback "https://docs.google.com/forms/d/e/1FAIpQLSc80xQELhHb_Ef-tn0DkpH2b6pYadQiT3aYSEJFNqEqBjzdGg/viewform?usp=sf_link")

www/main.scrbl

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@ implement several related languages.
4040
#;(list prof2 prof2-email)
4141
staff)]
4242

43-
@bold{Office hours:} AVW 4140
43+
@bold{Office hours location:} Virtual
4444

4545
@tabular[#:style 'boxed
4646
#:row-properties '(bottom-border ())
47-
(list (list @bold{Time} @bold{Monday} @bold{Tuesday} @bold{Wednesday} @bold{Thursday} @bold{Friday})
48-
(list "9 AM" 'cont "Deena" "Deena" 'cont 'cont)
49-
(list "10 AM" 'cont "Deena" "Deena" 'cont 'cont)
50-
(list "11 AM" "Advait" 'cont "Advait" 'cont 'cont)
51-
(list "12 PM" 'cont 'cont "Pierce" 'cont 'cont)
52-
(list "1 PM" "Kazi" "Kazi" "Pierce" 'cont 'cont)
53-
(list "2 PM" "Kazi" "Kazi" 'cont "Henry" "Henry")
54-
(list "3 PM" 'cont 'cont 'cont "Henry" "Henry")
55-
(list "4 PM" 'cont "William" 'cont "William" 'cont))]
47+
(list (list @bold{Start Time} @bold{Monday} @bold{Tuesday} @bold{Wednesday} @bold{Thursday} @bold{Friday})
48+
(list "9 AM" 'cont 'cont 'cont 'cont 'cont)
49+
(list "10 AM" 'cont 'cont 'cont 'cont 'cont)
50+
(list "11 AM" 'cont 'cont 'cont 'cont 'cont)
51+
(list "12 PM" 'cont 'cont 'cont 'cont 'cont)
52+
(list "1 PM" "Pierce" "Pierce" "Pierce" "Pierce" "Pierce")
53+
(list "2 PM" 'cont 'cont 'cont 'cont 'cont)
54+
(list "3 PM" 'cont 'cont 'cont 'cont 'cont)
55+
(list "4 PM" 'cont 'cont 'cont 'cont 'cont))]
5656

5757
@bold{Communications:} @link[@elms-url]{ELMS}, @link[@piazza]{Piazza}
5858

@@ -66,8 +66,8 @@ this material.
6666
change. Any substantive change will be accompanied with an announcement to the
6767
class via ELMS.
6868

69-
@bold{Feedback:} We welcome anonymous feedback on the course and its
70-
staff using this @link[feedback]{form}.
69+
@; @bold{Feedback:} We welcome anonymous feedback on the course and its
70+
@; staff using this @link[feedback]{form}.
7171

7272
@include-section{syllabus.scrbl}
7373
@include-section{texts.scrbl}

www/midterms.scrbl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ exams. Exams will be distributed at least @midterm-hours hours before the due
77
date of the midterm.
88

99
@itemlist[
10-
@item{@secref["Midterm_1"], due @m1-date}
11-
@item{@secref["Midterm_2"], due @m2-date}
10+
@;@item{@secref["Midterm_1"], due @m1-date}
11+
@item{Midterm 1, due @m1-date}
12+
@;@item{@secref["Midterm_2"], due @m2-date}
13+
@item{Midterm 2, due @m2-date}
1214
]
1315

1416
@include-section["midterms/1.scrbl"]

0 commit comments

Comments
 (0)