Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Henry's office hours #179

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions www/assignments.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

@include-section{assignments/1.scrbl}
@include-section{assignments/2.scrbl}
@include-section{assignments/3.scrbl}
@include-section{assignments/4.scrbl}
@include-section{assignments/5.scrbl}
@; @include-section{assignments/3.scrbl}
@; @include-section{assignments/4.scrbl}
@; @include-section{assignments/5.scrbl}
@;include-section{assignments/6.scrbl}
@;;include-section{assignments/7.scrbl}

Expand Down
2 changes: 1 addition & 1 deletion www/assignments/1.scrbl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#lang scribble/manual
@title[#:tag "Assignment 1" #:style 'unnumbered]{Assignment 1: Racket Primer}

@bold{Due: Monday, February 5, 11:59PM}
@bold{Due: Monday, June 3, 11:59PM}

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

Expand Down
66 changes: 36 additions & 30 deletions www/defns.rkt
Original file line number Diff line number Diff line change
@@ -1,63 +1,69 @@
#lang racket
(provide (all-defined-out))
(require scribble/core scribble/html-properties scribble/manual)
(require scribble/core scribble/html-properties scribble/manual)

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

(define prof1 (link "https://www.cs.umd.edu/~dvanhorn/" "David Van Horn"))
;; (define prof1 (link "https://www.cs.umd.edu/~dvanhorn/" "David Van Horn"))
;; (define prof1-pronouns "he/him")
;; (define prof1-email "[email protected]")
;; (define prof1-initials "DVH")

(define prof1 (link "https://www.cs.umd.edu/~anwar/" "Anwar Mamat"))
(define prof1-pronouns "he/him")
(define prof1-email "dvanhorn@cs.umd.edu")
(define prof1-initials "DVH")
(define prof1-email "anwar@cs.umd.edu")
(define prof1-initials "AM")

(define semester "spring")
(define semester "summer")
(define year "2024")
(define courseno "CMSC 430")

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

(define IRB "IRB")
(define IRB "IRB")
(define AVW "AVW")
(define KEY "KEY")


(define m1-date "March 6")
(define m2-date "April 17")
(define m1-date "June 12")
(define m2-date "June 26")
(define midterm-hours "24")
(define final-date "May 14")
(define elms-url "https://umd.instructure.com/courses/1359023")
(define final-date "July 5")
(define elms-url "https://umd.instructure.com/courses/1365875")


(define racket-version "8.11")

(define staff
(list (list "Henry Blanchette" "[email protected]")
(list "Pierce Darragh" "[email protected]")
(list "Advait Kushe" "[email protected]")
(list "Deena Postol" "[email protected]")
(list "William Wegand" "[email protected]")
(list "Kazi Tasnim Zinat" "[email protected]")
#;(list "Fuxiao Liu" "[email protected]")
#;(list "Vivian Chen" "[email protected]")
#;(list "Ian Morrill" "[email protected]")
#;(list "Matthew Schneider" "[email protected]")
#;(list "Rhea Jajodia" "[email protected]")
#;(list "Syed Zaidi" "[email protected]")
#;(list "William Wegand" "[email protected]")
#;(list "Wilson Smith" "[email protected]")
#;(list "Yuhwan Lee" "[email protected]")
(list (list "Pierce Darragh" "[email protected]")
(list "Bora Faber" "[email protected]")
(list "Sriman Selvakumaran" "[email protected]")
#;(list "Advait Kushe" "[email protected]")
#;(list "Deena Postol" "[email protected]")
#;(list "William Wegand" "[email protected]")
#;(list "Kazi Tasnim Zinat" "[email protected]")
#;(list "Fuxiao Liu" "[email protected]")
#;(list "Vivian Chen" "[email protected]")
#;(list "Ian Morrill" "[email protected]")
#;(list "Matthew Schneider" "[email protected]")
#;(list "Rhea Jajodia" "[email protected]")
#;(list "Syed Zaidi" "[email protected]")
#;(list "William Wegand" "[email protected]")
#;(list "Wilson Smith" "[email protected]")
#;(list "Yuhwan Lee" "[email protected]")
))


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

(define classroom1 "HJP 0226")
(define classroom1 "Virtual")

;(define discord "TBD")
(define piazza "https://piazza.com/class/lrs6masma6h2o1/")
(define gradescope "https://www.gradescope.com/courses/723511")
(define piazza "https://piazza.com/class/lwjac3ritxf1z/")
(define gradescope "https://www.gradescope.com/courses/787806")

(define feedback "https://docs.google.com/forms/d/e/1FAIpQLSc80xQELhHb_Ef-tn0DkpH2b6pYadQiT3aYSEJFNqEqBjzdGg/viewform?usp=sf_link")
#;(define feedback "https://docs.google.com/forms/d/e/1FAIpQLSc80xQELhHb_Ef-tn0DkpH2b6pYadQiT3aYSEJFNqEqBjzdGg/viewform?usp=sf_link")
24 changes: 12 additions & 12 deletions www/main.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ implement several related languages.
#;(list prof2 prof2-email)
staff)]

@bold{Office hours:} AVW 4140
@bold{Office hours location:} Virtual via Zoom (see Piazza for details)

@tabular[#:style 'boxed
#:row-properties '(bottom-border ())
(list (list @bold{Time} @bold{Monday} @bold{Tuesday} @bold{Wednesday} @bold{Thursday} @bold{Friday})
(list "9 AM" 'cont "Deena" "Deena" 'cont 'cont)
(list "10 AM" 'cont "Deena" "Deena" 'cont 'cont)
(list "11 AM" "Advait" 'cont "Advait" 'cont 'cont)
(list "12 PM" 'cont 'cont "Pierce" 'cont 'cont)
(list "1 PM" "Kazi" "Kazi" "Pierce" 'cont 'cont)
(list "2 PM" "Kazi" "Kazi" 'cont "Henry" 'cont)
(list "3 PM" 'cont 'cont 'cont "Henry" "Henry")
(list "4 PM" 'cont "William" 'cont "William" "Henry"))]
(list (list @bold{Start Time} @bold{Monday} @bold{Tuesday} @bold{Wednesday} @bold{Thursday} @bold{Friday})
(list "9 AM" 'cont 'cont 'cont 'cont 'cont)
(list "10 AM" 'cont 'cont 'cont 'cont 'cont)
(list "11 AM" "Sriman" "Sriman" "Sriman" "Sriman" "Sriman")
(list "12 PM" "Bora" "Bora" "Bora" "Bora" "Bora")
(list "1 PM" "Pierce" "Pierce" "Pierce" "Pierce" "Pierce")
(list "2 PM" 'cont 'cont 'cont 'cont 'cont)
(list "3 PM" 'cont 'cont 'cont 'cont 'cont)
(list "4 PM" 'cont 'cont 'cont 'cont 'cont))]

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

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

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

@include-section{syllabus.scrbl}
@include-section{texts.scrbl}
Expand Down
6 changes: 4 additions & 2 deletions www/midterms.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ exams. Exams will be distributed at least @midterm-hours hours before the due
date of the midterm.

@itemlist[
@item{@secref["Midterm_1"], due @m1-date}
@item{@secref["Midterm_2"], due @m2-date}
@;@item{@secref["Midterm_1"], due @m1-date}
@item{Midterm 1, due @m1-date}
@;@item{@secref["Midterm_2"], due @m2-date}
@item{Midterm 2, due @m2-date}
]

@include-section["midterms/1.scrbl"]
Expand Down
Loading
Loading