-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteaching.html
More file actions
82 lines (71 loc) · 2.22 KB
/
teaching.html
File metadata and controls
82 lines (71 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
layout: default
title: Teaching
---
<h3>Current Semester</h3>
<ul class="list-unstyled">{%
for course in site.data.teaching %}{%
if course.show %}
<li><a href="{{ course.link }}">{{ course.code }} {{ course.name }}</a></li>{%
endif %}{%
endfor %}
</ul>
<h3>Previous Semesters</h3>
<ul class="list-unstyled">{%
assign courses = site.data.teaching | group_by: 'id' | sort: 'name' %}{%
assign prev = 'none' %}{%
for course in courses %}
<li>
<p>
{{ course.name }} {{ course.items.last.name }}<br/>{%
for section in course.items %}{%
if section.link != prev %}{% unless forloop.first %}, {% endunless %}
<a href="{{ section.link }}">{{ section.term }} {{ section.year }}</a>{%
else %} <span class="text-muted">(2x Sections)</span>{%
endif %}{%
assign prev = section.link %}{%
endfor %}
</p>
</li>
{% endfor %}
</ul>
<h3>Archived Courses</h3>
<ul class="list-unstyled">
<li>
<p>
CS 60 Principles of Computer Science<br />
<em>Co-Instructor • Harvey Mudd College</em><br />
<a href="https://www.cs.hmc.edu/courses/2025/fall/cs60/">Fall 2025</a>
</p>
</li>
<li>
<p>
CS 181AP Data Visualization<br />
<em>Instructor • Harvey Mudd College</em><br />
<a href="https://hmc-datavis-fall2025.notion.site/">Fall 2025</a>
</p>
</li>
<li>
<p>
ECS 20 Discrete Mathematics<br/>
<em>Teacher Assistant • University of California, Davis</em><br/>
<a href="http://www.cs.usfca.edu/~sjengle/ucdavis/ecs20-s07/">Spring 2007</a>
</p>
</li>
<li>
<p>
ECS 120 Introduction to the Theory of Computation<br/>
<em>Teacher Assistant • University of California, Davis</em><br />
<a href="http://www.cs.usfca.edu/~sjengle/ucdavis/ecs120-f06/">Fall 2006</a>,
<a href="http://www.cs.usfca.edu/~sjengle/ucdavis/ecs120-f07/">Fall 2007</a>
</p>
</li>
<li>
<p>
ECS 150 Operating Systems<br/>
<em>Teacher Assistant • University of California, Davis</em><br />
<a href="http://www.cs.usfca.edu/~sjengle/ucdavis/ecs150-f03/">Fall 2003</a>,
<a href="http://www.cs.usfca.edu/~sjengle/ucdavis/ecs150-w04/">Winter 2004</a>
</p>
</li>
</ul>