-
Notifications
You must be signed in to change notification settings - Fork 0
/
reviews.html
114 lines (108 loc) · 4.13 KB
/
reviews.html
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Overpass"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://robotics.umich.edu/wp-content/uploads/fbrfg/favicon-32x32.png?v=092019"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="https://robotics.umich.edu/wp-content/uploads/fbrfg/favicon-16x16.png?v=092019"
/>
<link
rel="shortcut icon"
href="https://robotics.umich.edu/wp-content/uploads/fbrfg/favicon.ico?v=092019"
/>
<title>Teaching Reviews</title>
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="https://nishant.page/">Home</a>
<a href="https://nishant.page/reviews" class="active">Teaching Reviews</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div id="intro">
<h2>Hi! I'm Nishant.</h2>
<p>
At Michigan, I've helped teach two courses so far; one graduate and one
undergraduate. I was a GSI for a graduate-level special topics course
(ROB 599) covering autonomous vehicles, with emphasis on control and
motion planning. Next, I helped teach
<a href="https://eecs280.org">EECS 280</a>, an introductory computer
science class and the largest course at Michigan.
</p>
<ul>
<li><a href="teaching_reviews/fa23.pdf">ROB 599 reviews</a></li>
<li>
EECS 280 (<a href="teaching_reviews/w24 midterm.pdf">
midterm reviews
</a>
, <a href="teaching_reviews/w24 full.pdf">semester reviews</a>,
<a href="teaching_reviews/w24 msf.pdf">student feedback report</a>)
</li>
</ul>
<p>
In undergrad, I served as a TA for UC Berkeley's
<a href="data8.org">Data 8</a> for five semesters; in Fall 2018 I was a
lead GSI. My teaching reviews can be downloaded as PDFs below, by
semester:
</p>
<ul>
<li><a href="teaching_reviews/fa16_all.pdf">Fall 2016</a></li>
<li>
<a href="teaching_reviews/sp17.pdf">Spring 2017</a>
<span class="tooltip">
(note)
<span class="tooltiptextwide">
ratings are lower in Spring 2017 due to a survey issue where
students I did not teach were asked to rate my teaching; I think
that's where a lot of the 3/5s come from
</span>
</span>
</li>
<li><a href="teaching_reviews/fa17.pdf">Fall 2017</a></li>
<li><a href="teaching_reviews/sp18.pdf">Spring 2018</a></li>
<li><a href="teaching_reviews/fa18.pdf">Fall 2018</a></li>
</ul>
</div>
<p id="credit">
Shamelessly inspired by
<a href="https://canzhiye.com">Canzhi's website</a>, which is inspired by
<a href="http://bettermotherfuckingwebsite.com/">this other one</a>.
</p>
<!-- <p style="position:fixed; bottom:0; left:0; margin:auto; max-width:650px; padding:3px 10px">
Style from <a href="https://latex.now.sh/">https://latex.now.sh/</a>.
</p> -->
<!-- CODE FOR RANDOMIZING ADVISOR ORDER and RESPONSIVENESS-->
<script>
// var jeannin = '<a href="https://jeannin.github.io">Jean-Baptiste Jeannin</a>';
// var orosz = '<a href="http://www-personal.umich.edu/~orosz/">Gabor Orosz</a>';
// var text = Math.random() < 0.5 ? jeannin.concat(" and ").concat(orosz) : orosz.concat(" and ").concat(jeannin)
// document.getElementById("advisors").innerHTML = text
/* Toggle between adding and removing the "responsive" class to topnav when the user clicks on the icon */
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>