-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
298 lines (289 loc) · 10.7 KB
/
index.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="index.css" />
<link rel="stylesheet" href="general.css" />
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/bab8fc0832.js"
crossorigin="anonymous"
></script>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="icon" type="image/x-icon" href="favicons/home.ico" />
<script src="./theme-toggle.js"></script>
<title>Jonathan Zhou</title>
<script>
function update(e) {
var x = e.clientX || e.touches[0].clientX;
var y = e.clientY || e.touches[0].clientY;
document.documentElement.style.setProperty("--cursorX", x + "px");
document.documentElement.style.setProperty("--cursorY", y + "px");
}
document.addEventListener("mousemove", update);
document.addEventListener("touchmove", update);
</script>
</head>
<body style="margin-bottom: 10vh; font-family: 'Poppins', sans-serif">
<nav
class="navbar navbar-expand-lg navbar-dark"
>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a
class="nav-item nav-link active"
href="index.html"
style="color: white"
>HOME <span class="sr-only">(current)</span></a
>
<a class="nav-item nav-link" href="portfolio/portfolio.html">PORTFOLIO</a>
<a class="nav-item nav-link" href="coursework/cs.html">COURSEWORK</a>
<a class="nav-item nav-link" href="blog/blog.html">BLOG</a>
<a class="nav-item nav-link" href="contact/contact.html">CONTACT</a>
</div>
</div>
</nav>
<div class="text-container">
<h1>Jonathan Zhou</h1>
<a href="#textStart"><div class="scroll-down"></div></a>
</div>
<div class="tag">
<button onclick="topFunction()" id="topBtn" title="Return to top">Top ↑</button>
</div>
<script>
let topButton = document.getElementById("topBtn");
var tag = $(".tag");
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20)
{
$(tag).addClass("visible");
}
else
{
$(tag).removeClass("visible");
}
}
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<div class="container" id="textStart">
<div class="row">
<div class="col-lg-1"></div>
<div id="textCol" class="col-lg-10" style="margin-top: 5vh">
<div class="intro-component" id="about-me">
<h3
class="display-5 font-weight-bold"
style="color: rgb(254, 207, 122)"
>
ABOUT ME
</h3>
<p>
<b>Hi, I'm Jonathan!</b>
I'm a 20 year old junior at
Brown University studying Computer Science and Anthropology.
</p>
<p>
I am the Head Teaching Assistant for Brown's Database Management course (CSCI 1270) and graduate seminar on Databases for Artificial Intelligence (CSCI 2270).
</p>
<p>
I am a Researcher for the Database Group at Brown. I am currently researching optimizations
for streaming vector systems through various cutting edge quantization techniques.
</p>
<p>
I am passionate about Jesus, video games, manhwa, playing musical instruments, and talking
to new people, so feel free to
<a href="contact/contact.html">reach out</a> to me. 😎
<br />
</p>
</div>
</div>
<div class="col-lg-1"></div>
</div>
<div class="row">
<div class="col-lg-1"></div>
<div class="col-lg-5">
<div class="intro-component" id="academics">
<h3
class="display-5 font-weight-bold"
style="color: rgb(252, 123, 123)"
>
ACADEMICS
</h3>
<p>
I love learning about Database Management Systems, especially
vector databases, as well as Software Engineering, and Computer Systems.
I am also interested in the Philosophy of
Personal Happiness through a religious and anthropological lens.
</p>
<p>
To see some practical applications of my education, take a look at
my <a href="portfolio/portfolio.html">portfolio</a>.
<br />
</p>
<p>
To learn more about my computer science academic journey, check
out my <a href="coursework/cs.html">CS coursework</a>.
</p>
</div>
<div class="intro-component" id="writings">
<h3
class="display-5 font-weight-bold"
style="color: rgb(178, 127, 250)"
>
WRITINGS
</h3>
<p>
Access to my academic research papers <i>may</i> be restricted based on
conference submission timelines, so please email me for any desired papers.
</p>
<p>
To peruse some of my random philisophical musings, go to my
<a href="blog/blog.html">blog</a>.
</p>
<p>
To read my published flash fiction and poetry, visit
<a
href="https://www.amazon.com/Stained-Pages-Portraits-Budding-Chronicle-ebook/dp/B08X4YWP2N/ref=sr_1_1?dchild=1&keywords=Stained+Pages&qid=1614306777&sr=8-1"
>Stained Pages</a
>.
</p>
</div>
</div>
<div class="col-lg-5">
<div id="picSlides" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li
data-target="#picSlides"
data-slide-to="0"
class="active"
></li>
<li data-target="#picSlides" data-slide-to="1"></li>
</ol>
<div
class="coursel-inner"
style="
border-radius: 15px !important;
overflow: hidden !important;
"
>
<div class="carousel-item active">
<img
src="indexPics/zhou_trees.JPG"
alt="Slide 1"
style="width: 100%; border-radius: 15px"
/>
</div>
<div class="carousel-item">
<img
src="indexPics/ym_zhou.jpg"
alt="Slide 2"
style="width: 100%; border-radius: 15px"
/>
</div>
</div>
<a
class="carousel-control-prev"
href="#picSlides"
role="button"
data-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="sr-only">Previous</span>
</a>
<a
class="carousel-control-next"
href="#picSlides"
role="button"
data-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="intro-component" id="personal-links">
<h3
class="display-5 font-weight-bold"
style="color: rgb(127, 172, 250)"
>
PERSONAL LINKS
</h3>
<p>
<b>Email: </b
><a href="mailto: [email protected]"
>jonathan_zhou[at]brown[dot]edu</a
>
</p>
<p>
<a
target="_blank"
rel="noopener noreferrer"
href="https://www.linkedin.com/in/jonathanzhou2/"
class="fa fa-linkedin fa-xl"
></a>
<a
target="_blank"
rel="noopener noreferrer"
href="https://www.instagram.com/jonathanzhou_/"
class="fa fa-instagram fa-xl"
></a>
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/jonathanzhou1"
class="fa fa-github fa-xl"
></a>
</p>
</div>
</div>
<div class="col-lg-1"></div>
</div>
</div>
</body>
</html>