Skip to content

Commit

Permalink
updated logistics, syllabus
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffacce committed Aug 26, 2024
1 parent 45d6ea5 commit de78cd0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
17 changes: 9 additions & 8 deletions docusaurus/website/src/pages/logistics.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,30 @@ title: Logistics

---
## Prerequisites
- Linear algebra, basics of probability, solving basic differential equations
- Linear algebra, basics of probability, solving basic differential equations.
- Coding in Python and familiarity with Linux.

## Logistical Overview

### Lecture
- 3.30pm-4.45pm on Tuesdays and Thursdays at 60FA C15.
- Lectures will be held twice a week in person.
- The google calendar may be accessed [here](https://calendar.google.com/calendar/u/0?cid=Y185NmQ5ZjE0OGJmMGQ3M2YyOTQ1NjM1YzQxNDcwN2NhYTgzNzUwODVkNGM4MTY0NDE5MjE5ZWY1ZWYwMzcxMzVlQGdyb3VwLmNhbGVuZGFyLmdvb2dsZS5jb20).
- The class will *not* be recorded.
- 3:30pm - 4:45pm, Tuesdays and Thursdays. Lectures are **not** recorded.
- Lectures are in person at 60 Fifth Avenue (Center for Data Science), Room C15. To get there
- Class calendar: [Google Calendar](https://calendar.google.com/calendar/u/1?cid=Y18yZjYyYTEyY2Y0YTRjZjdlZjU4NjI4NmY4YTUxMzdkZmU2OWJiZjgyMzRiNjJiNGQyMGU3MWI5ZTY2NjhmOTExQGdyb3VwLmNhbGVuZGFyLmdvb2dsZS5jb20).

### Course Staff & Office Hours
- Instructor: [Lerrel Pinto](https://www.lerrelpinto.com/)
- Office Hours: TBD, @ 60 Fifth Ave, 505
- Instructor office hours are available upon request.
- Teaching Assistants: [Jeff Cui](https://jeffcui.com/)
- Office Hours: TBD

### Grading
1. Homeworks and projects (90%)
2. Discussions, both in class and in campuswire (10%)
2. Discussions, both in class and in Campuswire (10%)

### Assignments
- Assignments will use Python and Raspberry Pi 4B. We will provide you a virtual environment to install dependencies.
- See [Assignments](/assignments) page for details.
- There will be problem sets with theory and coding portions, and team projects on a rover robot.
- We will use Python for all assignments. For the robot assignments, you will be running your code on a Raspberry Pi 4B onboard the rover.

## Remarks
- A student in this course is expected to act professionally. Please also follow the NYU regulations on academic integrity found here: https://cas.nyu.edu/academic-integrity.html
Expand Down
2 changes: 1 addition & 1 deletion docusaurus/website/src/pages/syllabus.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ title: Syllabus
2. [UW Mobile Robots](https://courses.cs.washington.edu/courses/cse490r/19sp/)
3. [MLS textbook](http://www.cse.lehigh.edu/~trink/Courses/RoboticsII/reading/murray-li-sastry-94-complete.pdf)
4. [Kris Hauser's Robotic Systems draft](https://motion.cs.illinois.edu/RoboticSystems/)

5. [Linux shell and toolchain: The Missing Semester of Your CS Education](https://missing.csail.mit.edu/)
2 changes: 1 addition & 1 deletion utils/gen_ical.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def generate_ics(syllabus, output_file="syllabus.ics"):
event_end = eastern.localize(event_date.replace(hour=16, minute=45))

event = Event()
event.name = f"[{COURSE_ID}] {item['title']}"
event.name = f"{item['title']}: {item['description']}"
event.begin = event_start.isoformat()
event.end = event_end.isoformat()
event.description = item["title"] + ": " + item["description"]
Expand Down

0 comments on commit de78cd0

Please sign in to comment.