layout | title | nav_order | description |
---|---|---|---|
page |
Staff |
7 |
A listing of all the course staff members. |
Jump to: Instructors, Teaching Assistants, Readers.
Note: Consult the [calendar]({{ site.baseurl }}/calendar) for the most up-to-date office hours for each GSI. 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 data100.instructors@berkeley.edu 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 readers = site.staffers | where: 'role', 'Reader' %}
{% for staffer in readers %}
{{ staffer }}
{% endfor %}