-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
590 lines (537 loc) · 25.1 KB
/
index.html
File metadata and controls
590 lines (537 loc) · 25.1 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
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Peter He - Portfolio</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="icon" type="image/svg+xml" href="/favicon/favicon.svg" />
<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=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap"
rel="stylesheet"
/>
<style>
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
padding: 0.4rem;
max-width: 1400px;
margin: 0 auto;
}
.project-card {
position: relative;
border-radius: 10px;
overflow: hidden;
transition: transform 0.3s ease;
aspect-ratio: auto;
height: auto;
box-shadow:
0 6px 12px -2px rgba(0, 0, 0, 0.2),
0 4px 8px -2px rgba(0, 0, 0, 0.15);
}
.project-card:hover {
transform: translateY(-5px);
box-shadow:
0 15px 25px -5px rgba(0, 0, 0, 0.25),
0 8px 12px -4px rgba(0, 0, 0, 0.2);
}
.project-card img {
width: 100%;
height: auto;
object-fit: contain;
display: block;
}
.project-card a {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.5);
color: #ffffff !important;
text-decoration: none;
opacity: 0;
transition: opacity 0.3s ease;
}
.project-card:hover a {
opacity: 1;
}
.project-card a span {
font-size: 1.5rem;
font-weight: bold;
text-align: center;
padding: 1rem;
color: #ffffff !important;
}
.project-title {
text-align: center;
font-size: 1.25rem;
font-weight: 600;
color: #374151;
margin-top: 0.75rem;
padding: 0 0.5rem;
}
.project-subtitle {
text-align: center;
font-size: 0.9rem;
font-weight: 400;
color: #6b7280;
margin-top: 0.25rem;
padding: 0 0.5rem;
line-height: 1.4;
}
@media (max-width: 768px) {
.projects-grid {
grid-template-columns: 1fr;
padding: 0.25rem;
gap: 1rem;
}
.project-card a span {
font-size: 1.2rem;
}
.project-title {
font-size: 1.1rem;
}
.project-subtitle {
font-size: 0.85rem;
}
}
@media (max-width: 480px) {
.projects-grid {
padding: 0.5rem;
}
.project-card a span {
font-size: 1rem;
}
.project-title {
font-size: 1rem;
}
.project-subtitle {
font-size: 0.8rem;
}
}
</style>
</head>
<body class="bg-white text-gray-900 font-sans">
<!-- Navigation -->
<nav class="border-b border-gray-200 py-4">
<div class="max-w-6xl mx-auto px-6">
<div class="flex space-x-8">
<a
href="index.html"
class="text-black font-medium border-b-2 border-black pb-1"
>home</a
>
<a
href="projects.html"
class="text-gray-500 hover:text-gray-700 transition-colors"
>projects</a
>
<a
href="research.html"
class="text-gray-500 hover:text-gray-700 transition-colors"
>research</a
>
<a
href="creative.html"
class="text-gray-500 hover:text-gray-700 transition-colors"
>creative</a
>
<a
href="fun.html"
class="text-gray-500 hover:text-gray-700 transition-colors"
>fun</a
>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="max-w-6xl mx-auto px-6 py-8">
<!-- About Section -->
<section class="mb-12">
<div
class="flex flex-col lg:flex-row items-start lg:items-center space-y-6 lg:space-y-0 lg:space-x-16"
>
<div class="flex-1 lg:max-w-3xl">
<h1 class="text-5xl font-bold text-black mb-2">
Hi, I'm
<span
style="
font-family:
"Playfair Display", serif;
font-style: italic;
"
>Peter He</span
>
</h1>
<h2 class="text-3xl font-medium mb-4">
Cornell 🌽 ECE + CS '27
</h2>
<!-- Mobile Video - appears under Cornell text on mobile, hidden on desktop -->
<div class="w-full lg:hidden mb-6">
<video
src="assets/doomed.mp4"
autoplay
muted
loop
playsinline
webkit-playsinline
preload="metadata"
class="w-full h-auto rounded-lg object-cover"
style="aspect-ratio: 4/4"
>
Your browser does not support the video tag.
</video>
</div>
<div
class="space-y-3 text-md text-gray-800 leading-relaxed"
>
<p>
I work within the areas of
<strong>Human Computer Interaction</strong>,
<strong>Wearables</strong>, and
<strong>XR</strong>.
</p>
<p>
At Cornell I conduct research under
<a
href="https://www.scifilab.org/"
target="_blank"
rel="noopener noreferrer"
class="text-orange-600 hover:text-orange-800 font-semibold"
>Prof. Cheng Zhang in the Sci-Fi Lab</a
>
as well as previously with
<a
href="https://www.matteroftechlab.org/"
target="_blank"
rel="noopener noreferrer"
class="text-orange-600 hover:text-orange-800 font-semibold"
>Prof. Thijs Roumen at Cornell Tech</a
>. My current project involves
<strong
>fabricating textile-based dry electrodes
for electro-tactile stimulation</strong
>.
</p>
<p>
I am also the founder and lead of
<a
href="https://cornellxr.com"
target="_blank"
rel="noopener noreferrer"
class="text-orange-600 hover:text-orange-800 font-semibold"
>Cornell XR</a
>, the fastest club to ever become an official
Cornell Engineering project team building
projects in Haptics and XR.
</p>
<p>
Previously, I was an engineering intern @
<a
href="https://www.trymira.com/"
target="_blank"
rel="noopener noreferrer"
class="font-semibold text-orange-600 hover:text-orange-800"
>Mira</a
>, building both software and hardware for
<strong
>smartglasses with a display + always-on AI
assistance</strong
>, I also made
<a
href="firebender.html"
class="text-orange-600 hover:text-orange-800 font-semibold"
>firebending</a
>
real.
</p>
<p>
Outside of my academics, I enjoy creative work,
building weird tech, and making satirical
designs. I've been commisioned to make
3D-printed sculptures and other works before.
</p>
<div class="pt-3 space-y-2">
<p class="text-md">
Feel free to reach out to me at
<code
class="bg-gray-100 px-2 py-1 rounded text-sm font-mono"
>
ph475@cornell.edu</code
>
or connect with me on
<a
href="https://www.linkedin.com/in/ph475/"
target="_blank"
rel="noopener noreferrer"
class="text-orange-600 hover:text-orange-800 font-bold"
>LinkedIn</a
>.
</p>
<!-- <p class="text-s text-orange-600">
I am currently looking for summer
undergraduate REU or industry research
opportunities.
</p> -->
<div class="flex space-x-4">
<a
href="https://github.com/molegod"
target="_blank"
rel="noopener noreferrer"
class="text-lg text-orange-600 hover:text-orange-800 font-bold"
>GitHub</a
>
<a
href="https://scholar.google.com/citations?user=aoofdycAAAAJ&hl=en"
target="_blank"
rel="noopener noreferrer"
class="text-lg text-orange-600 hover:text-orange-800 font-bold"
>Google Scholar</a
>
<a
href="assets/peterhe_cv.pdf"
target="_blank"
rel="noopener noreferrer"
class="text-lg text-orange-600 hover:text-orange-800 font-bold"
>CV</a
>
</div>
</div>
</div>
</div>
<!-- Desktop Video - appears on right side on desktop, hidden on mobile -->
<div class="hidden lg:block w-96 flex-shrink-0 ml-4">
<video
src="assets/doomed.mp4"
autoplay
muted
loop
playsinline
webkit-playsinline
preload="metadata"
class="w-full h-auto rounded-lg object-cover"
style="aspect-ratio: 4/4"
>
Your browser does not support the video tag.
</video>
</div>
</div>
</section>
<!-- Research Section -->
<section id="research" class="mb-16">
<h2 class="text-4xl font-bold text-black mb-8">publications</h2>
<div class="space-y-12">
<!-- SplatOverflow Research -->
<div class="bg-gray-50 rounded-2xl p-6 shadow-sm">
<div
class="flex flex-col lg:flex-row items-start lg:items-start space-y-6 lg:space-y-0 lg:space-x-8"
>
<!-- Image Section -->
<div class="w-full lg:w-80 flex-shrink-0">
<img
src="assets/figureSplat.png"
alt="SplatOverflow"
class="w-full h-auto rounded-lg shadow-md"
/>
</div>
<!-- Content Section -->
<div class="flex-1">
<h3
class="text-3xl font-bold text-black mb-4 leading-tight"
>
SplatOverflow: Asynchronous Hardware
Troubleshooting
</h3>
<div class="mb-4">
<p
class="text-xl text-gray-800 leading-relaxed mb-3"
>
Amritansh Kwatra, Tobias Wienberg, Ilan
Mandel, Ritik Batra,
<strong class="text-black"
>Peter He</strong
>, Francois Guimbretiere, Thijs Roumen
</p>
</div>
<div class="space-y-2">
<a
href="https://dl.acm.org/doi/10.1145/3706598.3714129"
target="_blank"
rel="noopener noreferrer"
class="inline-block bg-black text-white px-6 py-3 rounded-lg font-semibold text-lg hover:bg-gray-800 transition-colors"
>
Paper (CHI 2025)
</a>
<p
class="text-orange-600 font-semibold text-lg"
>
Honorable Mention at ACM CHI 2025
</p>
</div>
</div>
</div>
</div>
<!-- SeamPose Research -->
<div class="bg-gray-50 rounded-2xl p-6 shadow-sm">
<div
class="flex flex-col lg:flex-row items-start lg:items-start space-y-6 lg:space-y-0 lg:space-x-8"
>
<!-- Image Section -->
<div class="w-full lg:w-80 flex-shrink-0">
<img
src="assets/seamsnew.png"
alt="SeamPose"
class="w-full h-auto rounded-lg shadow-md"
/>
</div>
<!-- Content Section -->
<div class="flex-1">
<h3
class="text-3xl font-bold text-black mb-4 leading-tight"
>
SeamPose: Repurposing Seams as Capacitive
Sensors in a Shirt for Upper-Body Pose
Tracking
</h3>
<div class="mb-4">
<p
class="text-xl text-gray-800 leading-relaxed mb-3"
>
Tianhong Catherine Yu, *Manru Mary
Zhang,
<strong class="text-black"
>*Peter He</strong
>, Chi-Jung Lee, Cassidy Cheesman, Saif
Mahmud, Ruidong Zhang, Francois
Guimbretiere, Cheng Zhang
</p>
</div>
<div class="space-y-2">
<a
href="https://dl.acm.org/doi/abs/10.1145/3654777.3676341"
target="_blank"
rel="noopener noreferrer"
class="inline-block bg-black text-white px-6 py-3 rounded-lg font-semibold text-lg hover:bg-gray-800 transition-colors"
>
Paper (UIST 2024)
</a>
<p
class="text-orange-600 font-semibold text-lg"
>
*Co-Second Author on the Paper for
contributions (Freshman Year)
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<h2 class="text-4xl font-bold text-black mb-4">
featured projects
</h2>
<p class="text-lg text-gray-600 mb-6">
A few of my publicly documented projects, for more, look at my
<a
href="https://peterhe.dev/projects.html"
class="text-orange-600 hover:text-orange-800 font-semibold"
>projects</a
>
page!.
</p>
<div class="projects-grid">
<div>
<div class="project-card">
<img
src="assets/humanoperatormain.png"
alt="Human Operator"
/>
<a href="humanoperator.html"><span>Human Operator</span></a>
</div>
<div class="project-title">Human Operator</div>
<div class="project-subtitle">
A human augmentation tool that allows AI to briefly take
control of your body through EMS to help you learn or do things.
</div>
</div>
<div>
<div class="project-card">
<img
src="assets/gifsplat.gif"
alt="Gaussian Splat Localization"
/>
<a href="gaussian-splat.html"
><span>Gaussian Splat Localization</span></a
>
</div>
<div class="project-title">Gaussian Splat Localization</div>
<div class="project-subtitle">
Camera localization into a 3D Gaussian Splat scene using
CV, COLMAP, and Hierarchical Localization (hloc).
</div>
</div>
<div>
<div class="project-card">
<img
src="assets/firebending_will.png"
alt="Firebender"
/>
<a href="firebender.html"><span>Firebender</span></a>
</div>
<div class="project-title">Firebender</div>
<div class="project-subtitle">
Designed (CAD + Electronics), programmed, and built
consumer punch-activated flamethrowers for a startup's
publicity stunt.
</div>
</div>
<div>
<div class="project-card">
<img src="assets/spideyfake.png" alt="SixthSense" />
<a href="sixthsense.html"><span>Sixth-Sense</span></a>
</div>
<div class="project-title">Sixth-Sense</div>
<div class="project-subtitle">
Automatic obstacle (spidey-sense) avoidance using
electrostimuation <br />
(Galvanic Vestibular Stimulation eg. GVS).
</div>
</div>
<div>
<div class="project-card">
<img src="assets/neuroscent.png" alt="NeuroScent" />
<a href="neuroscent.html"><span>NeuroScent</span></a>
</div>
<div class="project-title">NeuroScent</div>
<div class="project-subtitle">
Brain-computer interface, VR Headset, and <br />DIY
Olfactory Display.
</div>
</div>
<div>
<div class="project-card">
<img src="assets/bebe_title.png" alt="Bebe" />
<a href="bebe.html"><span>Bebe</span></a>
</div>
<div class="project-title">Bebe</div>
<div class="project-subtitle">
An emotive 6-DOF bipedal robot.
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="border-t border-gray-200 py-8">
<div class="max-w-6xl mx-auto px-6 text-center text-gray-500">
<p>© 2026 Peter He. All rights reserved.</p>
</div>
</footer>
</body>
</html>