Skip to content

Commit

Permalink
update section data (rooms tbd)
Browse files Browse the repository at this point in the history
update schedule page 2024
remove calendar and OH pages
  • Loading branch information
adzcai committed Jan 9, 2024
1 parent 45b80ea commit de99d9c
Show file tree
Hide file tree
Showing 5 changed files with 89 additions and 73 deletions.
48 changes: 46 additions & 2 deletions _data/all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,53 @@ beyondcs181:
slides: "Week-1-AI-and-Broader-Impact.pdf"

ohs:
- time: TBD
TF: TBD
- time: Tuesdays 8-10pm
location: Leverett D-Hall
tfs: Ahmad and Angela
- time: Tuesdays 11am-1pm
location: SEC (Room TBD)
tfs: Audrey, Derek, and Jeffrey
- time: Wednesdays 8:30-10:30pm
location: Winthrop D-Hall
tfs: Brian and Andrew
- time: Thursdays 11am-1pm
location: SEC (Room TBD)
tfs: Charu and Neeyanth
- time: Thursdays 8-10pm
location: Currier (Room TBD)
tfs: Gabe and Sam
- time: Fridays 3-5pm
location: Science Center (Room TBD)
tfs: Alex and Josh
- time: Thursdays 10pm-12am
location: Zoom
tfs: Shirley and Alyssa

sections:
- time: Tuesdays 1-2:15
location: SEC (Room TBD)
tfs: Andrew and Sam
- time: Tuesdays 2:15-3:30
location: SEC (Room TBD)
tfs: Alyssa and Derek
- time: Tuesdays 3:45-5:00
location: SEC (Room TBD)
tfs: Charu and Neeyanth
- time: Wednesdays 2:15-3:30
location: Science Center (Room TBD)
tfs: Ahmad and Angela
- time: Wednesdays 3:45-5:00
location: Science Center (Room TBD)
tfs: Brian and Shirley
- time: Thursdays 2:15-3:30
location: SEC (Room TBD)
tfs: Alex and Josh
- time: Thursdays 3:45-5:00
location: SEC (Room TBD)
tfs: Gabe and Audrey
- time: Fridays 3:45-5:00
location: Science Center (Room TBD)
tfs: Jeffrey

dates: [
"",
Expand Down
2 changes: 0 additions & 2 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ <h1 class="header-title col-md-2">
</a>
<ul class="dropdown-menu" type="button" aria-labelledby="dropdownMenuButton">
<li><a class="dropdown-item" href="{{ site.baseurl }}/syllabus">Syllabus</a></li><br>
<li><a class="dropdown-item" href="{{ site.baseurl }}/calendar">Calendar</a></li><br>
<li><a class="dropdown-item" href="{{ site.baseurl }}/staff">Staff</a></li><br>
<li><a class="dropdown-item" href="{{ site.baseurl }}/officehours">Office Hours</a></li><br>
<li><a class="dropdown-item" href="{{ site.baseurl }}/resources">Resources</a></li><br>
<li><a class="dropdown-item" href="{{ site.baseurl }}/beyondcs181">Beyond CS 181</a></li><br>
</ul>
Expand Down
12 changes: 0 additions & 12 deletions calendar.html

This file was deleted.

33 changes: 0 additions & 33 deletions officehours.html

This file was deleted.

67 changes: 43 additions & 24 deletions schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,50 @@
---

<section class="main-container text">
<p> Schedule for Spring 2024 TBD! </p>
<div class="main">
<table class="table">
<tr>
<th>Date</th>
<th>Topic</th>
<th>Subtopic</th>
<th>Section</th>
<th>Readings</th>
<th>HW Release</th>
<th>HW Deadline</th>
</tr>
{% for lecture in site.data.all.lectures %}
<tr class='{{lecture.type|default: ""}}'>
<td> {{site.data.all.dates[forloop.index]}} </td>
<td> {{lecture.topic | default: ""}} </td>
<td> {{lecture.subtopic | default: ""}}</td>
<td> {{lecture.section | default: ""}}</td>
<td> {{lecture.readings | default: ""}}</td>
<td> {{lecture.release | default: ""}}</td>
<td> {{lecture.dl | default: ""}}</td>
</tr>
{% endfor %}
<h2>Schedule</h2>
<iframe
src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQabh8HnxP3V-ThyikOCD2K8xmUeoslgsYMTPL5ECh0T6B-NeFUGxXc-K7UCj-OsEtFhZazyp1Xay5m/pubhtml?gid=1863065080&amp;single=true&amp;widget=true&amp;headers=false"></iframe>


<h2>Office hours</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>Location</th>
<th>Staff</th>
</tr>
</thead>
<tbody>
{% for oh in site.data.all.ohs %}
<tr>
<td>{{ oh.time }}</td>
<td>{{ oh.location }}</td>
<td>{{ oh.tfs }}</td>
</tr>
{% endfor %}
</tbody>
</table>

*SB refers to <a href="{{ site.baseurl }}/resources#sb">Sutton and Barto 2018, Reinforcement Learning: An Introduction</a>.
<h2>Sections</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>Location</th>
<th>Staff</th>
</tr>
</thead>
<tbody>
{% for oh in site.data.all.sections %}
<tr>
<td>{{ oh.time }}</td>
<td>{{ oh.location }}</td>
<td>{{ oh.tfs }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</section>
</section>

0 comments on commit de99d9c

Please sign in to comment.