-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
309 lines (207 loc) · 10.9 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
299
300
301
302
303
304
305
306
307
308
309
<!doctype html>
<html lang="en-GB" class="no-js">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alice Zhao</title>
<meta name="description" content="Software Engineer and student from Nova Scotia">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://unpkg.com">
<link rel="preconnect" href="https://cdnjs.cloudflare.com">
<link rel="stylesheet" href="css/app.css">
<link rel="icon" href="assets/8ball.PNG">
<script>
// JS class
document.documentElement.classList.remove('no-js');
document.documentElement.classList.add('js');
// Random theme on load
/* const themes = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'];
const theme = themes[Math.floor(Math.random() * themes.length)];
document.documentElement.classList.add('theme-' + theme); */
// Actually no
document.documentElement.classList.add('theme-i');
</script>
</head>
<body>
<nav id="utils">
<a href="https://se-webring.xyz/" target="_blank" rel="noopener">
<svg width="35" height="40" viewBox="0 0 960 960" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M390.499 272.146V687.477C491.737 672.742 569.501 585.38 569.501 479.811C569.501 374.243 491.737 286.881 390.499 272.146ZM367.396 749.527C364.991 749.591 362.577 749.623 360.157 749.623C211.506 749.623 91 628.824 91 479.811C91 330.799 211.506 210 360.157 210C362.577 210 364.991 210.032 367.396 210.096C368.31 210.032 369.233 210 370.163 210H869V749.623H370.163C369.233 749.623 368.31 749.591 367.396 749.527ZM330.687 687.602V272.021C229.023 286.379 150.813 373.94 150.813 479.811C150.813 585.683 229.023 673.244 330.687 687.602ZM529.346 269.958H809.187V689.665H529.346C590.325 640.201 629.313 564.57 629.313 479.811C629.313 395.053 590.325 319.422 529.346 269.958Z" fill="currentColor"></path> </svg>
</a>
<!-- Nostalgia 😂 -->
<a href="https://web.archive.org/web/20070517152212/http://exscale.se:80/" target="_blank" rel="noopener"></a>
<a href="https://web.archive.org/web/20070601155533/http://exscale.se/?debug=1" target="_blank" rel="noopener"></a>
<a href="https://web.archive.org/web/20101209155319/http://andreaslagerkvist.com/" target="_blank" rel="noopener"></a>
<a href="https://web.archive.org/web/20101205101247/http://a-framework.org/" target="_blank" rel="noopener"></a>
<a href="https://web.archive.org/web/20100117050408/http://demo.a-framework.org:80/" target="_blank" rel="noopener"></a>
<a href="https://web.archive.org/web/20110106162714/http://bugtracker.a-framework.org/" target="_blank" rel="noopener"></a>
<a href="https://web.archive.org/web/20161215141827/http://andreaslagerkvist.com/" target="_blank" rel="noopener"></a>
<a href="https://web.archive.org/web/20161009100200/http://sleekwp.com/" target="_blank" rel="noopener"></a>
<a href="https://web.archive.org/web/20161104061429/http://sleekwp.com/documentation/" target="_blank" rel="noopener"></a>
</nav>
<figure id="bg"></figure>
<nav id="themes">
<a data-set-theme="a">Theme A</a>
<a data-set-theme="b">Theme B</a>
<a data-set-theme="c">Theme C</a>
<a data-set-theme="d">Theme D</a>
<a data-set-theme="e">Theme E</a>
<a data-set-theme="g">Theme G</a>
<a data-set-theme="i">Theme I</a>
</nav>
<nav id="navigation" data-highlight-visible>
<a href="#about">About</a>
<a href="#work">Work</a>
<a href="#play">Play</a>
<a href="#contact">Contact</a>
<a href="#end">The End</a>
</nav>
<main>
<section id="about"
data-auto-theme="i"
data-camera-pos='{"x":0.08587540781719324,"y":0.4493196965917127,"z":0.48457949209771856,"rx":-0.6751290685950414,"ry":0.3919465215545036,"rz":0.29680014653731734}'
data-camera='{"x":1.1847056087536485,"y":7.010292938286978,"z":0.963046259208372,"rx":-1.4130179137557504,"ry":0.1859036259639784,"rz":0.8600806979973583,"fov":6.016666666666666,"focus":"7","aperture":0.015}'
>
<header>
<h1>Hi! I'm Alice</h1>
<p>Software Engineering Student at the University of Waterloo.</p>
</header>
<nav>
<a href="https://github.com/aliicezhao/" target="_blank" rel="noopener" class="icon-github">GitHub</a>
<a href="https://www.linkedin.com/in/aliicezhao/" target="_blank" rel="noopener" class="icon-linkedin-squared">Linkedin</a>
<a href="assets/AliceZhao-resume.pdf" target="_blank" rel="noopener" class="icon-database">Resume</a>
<a href="mailto:[email protected]?subject=From%20website" target="_blank" rel="noopener" class="icon-stackoverflow">Email</a>
</nav>
</section>
<section id="work" data-auto-theme="g" data-camera-pos='{"x":1.6264026631799302,"y":1.2948229057672256,"z":5.986972351580601,"rx":-0.8697633991850208,"ry":-0.1868166573247362,"rz":-0.21659510346244576}' data-camera='{"x":2.446527366427204,"y":1.046735134204562,"z":5.33683840029425,"rx":-1.5707953683004692,"ry":-2.864323083995352e-7,"rz":-0.29038824447289097,"fov":25,"focus":1.1}'>
<header>
<h2>Work</h2>
<p>Here's some of my experience <br> Check out <a href="assets/AliceZhao-resume.pdf">my resume!</a></p>
</header>
<div>
<article>
<h3>Wealthsimple</h3>
<p>Software Engineer</p>
<nav>
<a href="https://www.wealthsimple.com/en-ca/" target="_blank" rel="noopener" class="icon-globe">Website</a>
</nav>
</article>
<article>
<h3>Eon Media</h3>
<p>AI/ML Software Engineer</p>
<nav>
<!-- <a href="https://github.com/powerbuoy/sleek/" target="_blank" rel="noopener" class="icon-github">GitHub</a> -->
<a href="https://eonmedia.ai/" target="_blank" rel="noopener" class="icon-globe">Website</a>
</nav>
</article>
<article>
<h3>Bloom Investing (YC W21)</h3>
<p>Augmented Reality Developer</p>
<nav>
<a href="https://bloomapp.com/" target="_blank" rel="noopener" class="icon-globe">Website</a>
</nav>
</article>
</div>
</section>
<section id="play" data-auto-theme="e" data-camera-pos='{"x":4.015843278294994,"y":0.7427593056044219,"z":9.710916412580875,"rx":-0.9790715983750727,"ry":-1.0308008948462561,"rz":-0.9061688411006168}' data-camera='{"x":4.62887998620201,"y":2.1182156905778173,"z":10.050578087344649,"rx":-1.3729883552478588,"ry":-0.09290151699684711,"rz":-0.439619420635011,"fov":15,"focus":1.75}'>
<header>
<h2>Skills</h2>
<p>I enjoy picking up new skills in my spare time.<br>Here are some things that I like working with!</p>
</header>
<div>
<figure>
<a href="assets/C.png" target="_blank">
<img src="assets/C.png" alt="C/C++" width="200" height="300" loading="lazy">
</a>
</figure>
<figure>
<a href="assets/python.png" target="_blank">
<img src="assets/python.png" alt="Python" width="450" height="300" loading="lazy">
</a>
</figure>
<figure>
<a href="assets/javascript.webp" target="_blank">
<img src="assets/javascript.webp" alt="Javascript/Typescript/React/NodeJS" width="300" height="300" loading="lazy">
</a>
</figure>
<figure>
<a href="assets/p-80-java.webp" target="_blank">
<img src="assets/p-80-java.webp" alt="Java" width="400" height="300" loading="lazy">
</a>
</figure>
<figure>
<a href="assets/aws.webp" target="_blank">
<img src="assets/aws.webp" alt="Java" width="400" height="300" loading="lazy">
</a>
</figure>
<figure>
<a href="assets/react.svg" target="_blank">
<img src="assets/react.svg" alt="Java" width="400" height="300" loading="lazy">
</a>
</figure>
<!-- <figure>
<a href="assets/Git-Icon-Black.png" target="_blank">
<img src="assets/Git-Icon-Black.png" alt="Java" width="400" height="300" loading="lazy">
</a>
</figure>
<figure>
<a href="assets/Unity-Symbol.png" target="_blank">
<img src="assets/Unity-Symbol.png" alt="Java" width="400" height="300" loading="lazy">
</a>
</figure> -->
<!-- <figure>
<a href="assets/bulb.mp4" target="_blank" title="A lightbulb rolling on the floor">
<video autoplay loop muted disableRemotePlayback width="533" height="300" loading="lazy">
<source src="assets/bulb.mp4" type="video/mp4"></source>
</video>
</a>
</figure> -->
</div>
</section>
<section id="contact" data-auto-theme="a" data-camera-pos='{"x":1.2928716579423913,"y":0.8710942112817563,"z":14.08160151207296,"rx":-2.254564420415036,"ry":-0.9679905485695725,"rz":-2.3508026523748886}' data-camera='{"x":2.3869683008048312,"y":2.014168514244321,"z":14.802959849989419,"rx":-1.5707955483573386,"ry":-6.27792854923689e-7,"rz":-0.6786785492475481,"fov":15,"focus":2.0}'>
<header>
<h2>Projects</h2>
<p>I'm always working on something new</a><br> Check it out!</p>
</header>
<div>
<article>
<h3>Tangle</h3>
<p>Hack the North Award Winner</p>
<nav>
<a href="https://github.com/elsieyli/tangle" target="_blank" rel="noopener" class="icon-github">GitHub</a>
<a href="https://www.connectthenorth.co/" target="_blank" rel="noopener" class="icon-globe">Site</a>
</nav>
</article>
<article>
<h3>Autonomous Tank</h3>
<p>Featured on OpenCV Live</p>
<nav>
<a href="https://github.com/aliicezhao/self-driving-tank" target="_blank" rel="noopener" class="icon-github">GitHub</a>
</nav>
</article>
<article>
<h3>Augmented Reality Developer</h3>
<p>3 Billion Impressions</p>
<nav>
<a href="https://github.com/aliicezhao/AR-Projects" target="_blank" rel="noopener" class="icon-github">GitHub</a>
</nav>
</article>
</div>
</section>
<section id="end" data-auto-theme="b" data-camera-pos='{"x":-0.10642392173444505,"y":0.1798439109093774,"z":19.628076613444538,"rx":-2.7613242127834337,"ry":-0.5228655690770228,"rz":-2.9445739092095806}' data-camera='{"x":-0.021805611932740193,"y":0.49084505944223955,"z":19.842513106308985,"rx":-1.891969499602399,"ry":-0.12521842523150759,"rz":-2.78247423183279,"fov":15,"focus":1.0}'>
<header>
<h2>Contact</h2>
<p><a href="mailto:[email protected]?subject=From%20website">Write me an e-mail!</a><br>Or find me online:</p>
<a href="https://github.com/aliicezhao/" target="_blank" rel="noopener" class="icon-github">GitHub</a>
<a href="https://www.linkedin.com/in/aliicezhao/" target="_blank" rel="noopener" class="icon-linkedin-squared">Linkedin</a>
</header>
<nav>
<a href="#about" class="icon-up">Go back to the top</a>
</nav>
</section>
</main>
<div id="fps"><span data-fps></span>fps</div>
<script src="https://unpkg.com/[email protected]/dist/splitting.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tween.js/16.3.5/Tween.min.js"></script>
<script type="module" src="js/app.js"></script>
</body>
</html>