layout | title | nav_order | description |
---|---|---|---|
page |
Staff |
7 |
A listing of all the course staff members. |
Jump to: Instructors, Lead Teaching Assistants, UCS2s, UCS1s.
Note: Consult the [calendar]({{ site.baseurl }}/calendar) for the most up-to-date office hours. All GSI Office Hours will be held in Warren 101B.
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 head_teaching_assistants = site.staffers | where: 'team', 'Head TA' %}
{% for staffer in head_teaching_assistants %}
{{ staffer }}
{% endfor %}
{% assign lead_teaching_assistants = site.staffers | where: 'role', 'Lead Teaching Assistant' %}
{% for staffer in lead_teaching_assistants %}
{% if staffer.team != 'Head TA' %}
{{ staffer }}
{% endif %}
{% endfor %}
{% assign lead_teaching_assistants = site.staffers | where: 'role', 'Lead Teaching Assistant 12' %}
{% for staffer in lead_teaching_assistants %}
{% if staffer.team != 'Head TA' %}
{{ staffer }}
{% endif %}
{% endfor %}
{% assign ucs2s = site.staffers | where: 'role', 'UCS2 12' %}
{% for staffer in ucs2s %}
{{ staffer }}
{% endfor %}
{% assign ucs2s = site.staffers | where: 'role', 'UCS2' %}
{% for staffer in ucs2s %}
{{ staffer }}
{% endfor %}
{% assign ucs1s = site.staffers | where: 'role', 'UCS1' %}
{% for staffer in ucs1s %}
{{ staffer }}
{% endfor %}