layout | title | nav_order | description |
---|---|---|---|
page |
Staff |
7 |
A listing of all the course staff members. |
Jump to: Instructors, Teaching Assistants, Tutors.
Note: Consult the [calendar]({{ site.baseurl }}/calendar) for the most up-to-date office hours for each GSI.
Contact course staff via Ed with any questions or concerns. For sensitive matters, the staff email address [email protected] is monitored by the instructors and a few lead TAs.
{% assign instructors = site.staffers | where: 'role', 'Instructor' %}
{% for staffer in instructors %}
{{ staffer }}
{% endfor %}
{% assign teaching_assistants = site.staffers | where: 'role', 'Teaching Assistant' %}
{% for staffer in teaching_assistants %}
{{ staffer }}
{% endfor %}
{% assign ucs1s = site.staffers | where: 'role', 'UCS1' %}
{% for staffer in ucs1s %}
{{ staffer }}
{% endfor %}