forked from hackPrincetonHS/hackphs2022
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
573 lines (559 loc) · 30.2 KB
/
index.html
File metadata and controls
573 lines (559 loc) · 30.2 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
<!--
HackPHS Website 2022
Author: Jieruei Chang
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Stylesheets -->
<link rel="stylesheet" href="static/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link href="https://fonts.googleapis.com/css?family=Rubik" rel="stylesheet">
<!-- Scripts -->
<script src="scroll.js"></script>
<script src="dialog.js"></script>
<script src="nav.js"></script>
<!-- Boilerplate -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="assets/logo.svg">
<meta charset="UTF-8">
<!-- SEO -->
<meta name="description" content="hackPHS hosts over 300 high school students from across New Jersey to collaborate, innovate, and create in a 24-hour, student organized hackathon held at Princeton High School. Whether you're a complete beginner or an experienced hacker, hackPHS will have something for you!">
<meta name="keywords" content="Hackathon, Princeton, hackPHS, hackPHS 2022">
<meta property="twitter:card" content="summary_large_image">
<meta property="og:image" content="https://2022.hackphs.tech/img/banner.png">
<meta name="twitter:image" content="https://2022.hackphs.tech/img/banner.png">
<title>hackPHS 2022</title>
</head>
<body>
<a id="mlh-trust-badge" href="https://mlh.io/na?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2023-season&utm_content=blue" target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2023/mlh-trust-badge-2023-blue.svg" alt="Major League Hacking 2023 Hackathon Season" style="width:100%"></a>
<div id="top"></div>
<!-- NAVBARS -->
<nav id="desktop_nav">
<ul>
<li onclick="location.href='#top'"><img src="assets/logo.svg"></li>
<li><a href="#top">HACKPHS</a></li>
<li><a href="#about">About</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#team">Team</a></li>
<li id="dropdown" onclick="">
Past years <i class="fa fa-caret-down"></i>
<div id="dropdown-content">
<a href="https://2021.hackphs.tech">2021</a>
<a href="http://2020.hackphs.tech">2020</a>
<a href="https://2019.hackphs.tech">2019</a>
<a href="https://2018.hackphs.tech">2018</a>
</div>
</li>
<button id="register-button-nav" onclick='location.href="https:\/\/clipboard.hackphs.tech/"'>REGISTER <i class="fa fa-arrow-right"></i></button>
</ul>
</nav>
<nav id="mobile_nav">
<ul>
<li onclick="location.href='#top'"><img src="assets/logo.svg"></li>
<li><a href="#top">HACKPHS</a></li>
<li style="float:right">
<a id="menu-button" onclick="dropdown()" class="fa fa-bars"> </a>
</li>
</ul>
<ul id="mobile_menu">
<li><a href="#about">About</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#team">Team</a></li>
<li id="dropdown" onclick="">
Past years <i class="fa fa-caret-down"></i>
<div id="dropdown-content">
<a href="https://hackphs.tech">2021</a>
<a href="http://2020.hackphs.tech">2020</a>
<a href="https://2019.hackphs.tech">2019</a>
<a href="https://2018.hackphs.tech">2018</a>
</div>
</li>
</ul>
</nav>
<!-- SPLASH SCREEN -->
<div id="splash">
<div id="splash-box">
<div style="text-align:center;padding-bottom:50px;">
<img id="splash-logo" src="img/tmp_logo2.png" alt="HackPHS 2022">
<div id="splash-bottom">
<em><h2 style="color: rgb(234, 0, 109)">November 5th-6th</h2></em>
<button id="register-button" onclick='location.href="https:\/\/clipboard.hackphs.tech/"'>REGISTER <i class="fa fa-arrow-right"></i></button>
</div>
</div>
<div id="countdown" style="position:relative;min-height:400px">
<div id=countdown-rock>
<img src="img/timer_rock.png" style="width:100%">
<svg id="countdown-timer" viewBox="0 0 105 100" style="width:100%"></svg>
</div>
</div>
</div>
<br><br><br><br><br><br>
</div>
<!-- ABOUT -->
<div class="section-wrapper">
<div class="trans">
<img src="img/trans_waves2.png" width="100%">
</div>
<div id="about-transition" class="trans">
<img id="waves" src="img/trans_waves.png" width="110%">
</div>
<div id="about" class="section">
<h1>/about/</h1>
<h2>What is hackPHS?</h2>
<p>
HackPHS hosts over 300 high school students from across New Jersey to collaborate, innovate, and create in a 24-hour,
student organized hackathon based at Princeton High School.
Whether you're a complete beginner or an experienced hacker, hackPHS will have something for you!
</p>
<img id="bg-fish" src="img/fish_silhouette.png" width="40%" style="position: absolute;">
<h2>When and Where is hackPHS?</h2>
<p>
hackPHS will be held in the cafeteria of Princeton High School, located at
<a href="https://goo.gl/maps/kkXeczMvXWr">151 Moore St, Princeton, NJ.</a>
Limited parking will be available around the school.
All times are tentative, but you should plan on arriving around 9:30 AM on Saturday,
November 5th and leaving sometime after 2:30 PM on Sunday, November 6th.
</p>
<h2>Who pays for all of this?</h2>
<p>
<!-- hackPHS is completely free to everyone, thanks to our amazing <a href=#sponsors style="color:white">sponsors!</a> -->
hackPHS is completely free to everyone, thanks to our amazing <a href=#sponsors>sponsors!</a>
</p>
<h2>What is a hackathon?</h2>
<p>
Hackathons are where creative and enthusiastic people come together to build awesome projects in a single all-nighter.
With awesome workshops and incredible prizes, hackers will learn about new tech,
build innovative solutions to real-world problems, and share their creation with the community, all in one event.
If you are looking for a competition, a place to meet fellow hackers, or even just a place to learn how to code, hackathons are for you.
If you want to learn more, see the <a href="https://help.mlh.io/support/solutions">MLH Hackathon FAQ.</a>
</p>
<!--<p><em>we should also have some photos of previous hackathons here</em></p>-->
<br><br><br><br>
</div>
</div>
<div class="section-wrapper">
<div id="faq-transition" class="trans">
<img src="img/trans_twilight.png" width="100%">
</div>
<div class="trans">
<div class="trans-scroll-container">
<img id="scroll-fish" src="img/scroll_fish.png" width="25%">
</div>
</div>
<div id="faq" class="section" >
<h1>/faq/</h1>
<img id="bg-fish2" src="img/fish_silhouette.png" width="40%" style="position: absolute; top: 300px; transform: scaleX(-1)">
<div class="accordion" style="position: relative">
<button class="accordion-button">Who can attend this event?</button>
<div>
<p>
Unfortunately, this event is for high school students only.
If you are no longer a high schooler and would like to help out, consider becoming a mentor.
Email us at team@hackphs.tech for more info on this!
</p>
</div>
<button class="accordion-button">How do I apply?</button>
<div>
<p>
Apply by going to our <a href="https://clipboard.hackphs.tech/">registration link</a>.
We will be doing admissions on a first-come first-serve basis, so apply ASAP!
</p>
</div>
<button class="accordion-button">How do I become a mentor? Chaperone? Volunteer? </button>
<div>
<p>
<a href="https://www.signupgenius.com/go/8050a48a8ac28a6fb6-hackphs5" target="_blank">Sign up here</a> to be a chaperone or email <a href="mailto:team@hackphs.tech">team@hackphs.tech</a> for information about mentors and judges!
</p>
</div>
<button class="accordion-button">What will be provided during the event?</button>
<div>
<p>
Free food and drinks will be provided during the hackathon, including options for people with dietary restrcitions.
If you ever want to sleep during the hackathon, we'll have dedicated quiet sleeping areas for y'all to catch some Z's.
Electrical outlets will also be available throughout the cafeteria for all your charging needs.
<strong>This year we will not be providing a hardware lab, so make sure to bring any hardware you want to use for your project.</strong>
</p>
</div>
<button class="accordion-button">What should I bring?</button>
<div>
<p>
Make sure you’re ready to spend 24 hours away from home.
Basically, bring a sleeping bag, extra clothes, a toothbrush, and anything else you might need to feel comfortable for a long period of time.
Also, please bring anything you need for your project such as a laptop, laptop charger, and hardware.
</p>
</div>
<button class="accordion-button">What is the Covid protocol?</button>
<div>
<p>
Attendees will be required to be either fully vaccinated or provide negative test result from within 48 hours of the event.
Vaccination cards should be uploaded during registration, and negative test results should be shown during check-in at the event.
More details about Covid protocol will be updated closer to the event based on the situation of the pandemic.
</p>
</div>
<button class="accordion-button">How do I form a team?</button>
<div>
<p>
Teams of <strong>up to 4 people</strong> are encouraged (though not mandatory) -
if you already have a team, you can form your team when registering for hackPHS, but teams won't be final until submissions.
If you don't have a team before the event, don't worry!
At the beginning of the event, there will be a team building workshop, which will be a great way to meet other enthusiastic people and even make new friends.
</p>
</div>
<button class="accordion-button">Where can I find updates on the event?</button>
<div>
<p>
No matter if you're a first time hackathon attendee and have no idea what to do (everyone was a beginner once),
or are an experienced hacker who wants to give back to the community, it is a good idea to join our
<a href="https://www.facebook.com/events/474083593153577/">Facebook event</a>
and follow us on instragram <a href="https://www.instagram.com/hackphs">@hackphs</a>!
In addition to all the important announcements and information about the event, you'll be able to find others to
guide you through the hackathon process and help you develop something awesome.
</p>
</div>
<button class="accordion-button">Do you have a Code of Conduct?</button>
<div>
<p>
All hackers must abide by <a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf">Major League Hacking's Code of Conduct.</a>
TL;DR - all hackers should respect one another.
Hackers also must abide by Princeton High School rules while on PHS grounds.
</p>
</div>
<button class="accordion-button">What can I win?</button>
<div>
<p>
hackPHS hopes to emphasize learning and collaboration more so than competition -
nonetheless, there will be awesome prizes to be won for some of the best hacks made during the event!
The full prize list will be released later - make sure to follow us on social media to find out when!
</p>
</div>
<button class="accordion-button">What can I learn?</button>
<div>
<p>
While you can learn a great deal in the process of building an ambitious project in such a limited time frame,
we also plan to offer many introductory workshops (around 1 hour each) during the event, for those new to software and/or hardware engineering.
Specific topics will include Python, Web Development, and Circutry, among many others - check our <a href="#schedule">schedule</a> for the full list!
</p>
</div>
<button class="accordion-button">My question isn’t answered here!</button>
<div>
<p>
Please feel free to email us at team@hackphs.tech if you have any other questions about hackPHS!
</p>
</div>
</div>
<br><br><br><br><br><br><br><br>
</div>
</div>
<!-- SCHEDULE -->
<div class="section-wrapper">
<div id="schedule-transition" class="trans">
<img src="img/trans_midnight.png" width="100%">
</div>
<div class="trans">
<div class="trans-scroll-container">
<img id="scroll-jellyfish" src="img/scroll_jellyfish.png" width="25%">
</div>
</div>
<div id="schedule" class="section">
<h1>/schedule/</h1>
<h2>Saturday</h2>
<img id="bg-fish3" src="img/fish_silhouette2.png" width="30%" style="position: absolute; transform: scale(-1)">
<table>
<thead>
<tr>
<th>Time</th>
<th>Event</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>9:30 a.m.</td>
<td>Check-in opens</td>
<td>Cafeteria</td>
</tr>
<tr>
<td>10:30 a.m.</td>
<td>Opening Ceremony</td>
<td>Cafeteria</td>
</tr>
<tr>
<td>11:00 a.m.</td>
<td>Hacking Starts</td>
<td>Cafeteria</td>
</tr>
<tr>
<td>11:00 a.m.</td>
<td>Team Building</td>
<td>152</td>
</tr>
<tr>
<td>12 a.m.</td>
<td>Lunch</td>
<td>Cafeteria</td>
</tr>
<tr>
<td>1:00 pm</td>
<td>Intro to Python</td>
<td>155</td>
</tr>
<tr>
<td>2:00 pm</td>
<td>Intro to Java</td>
<td>153</td>
</tr>
<tr>
<td>3:00 pm</td>
<td>Beginner's Challenge</td>
<td>152</td>
</tr>
<tr>
<td>3:30 pm</td>
<td>Synx Challenge</td>
<td>153</td>
</tr>
<tr>
<td>4:00 pm</td>
<td>Intro to Circuitry</td>
<td>155</td>
</tr>
<tr>
<td>5:00 pm</td>
<td>Intro to Neural Networks</td>
<td>153</td>
</tr>
<tr>
<td>5:00 pm</td>
<td>Mini Programming Competition</td>
<td>152</td>
</tr>
<tr>
<td>6:30 pm</td>
<td>Dinner</td>
<td>Cafeteria</td>
</tr>
<tr>
<td>7:00 pm</td>
<td>Photo Booth Opens</td>
<td>Cafeteria</td>
</tr>
<tr>
<td>7:30 pm</td>
<td>3D Design and Printing</td>
<td>153</td>
</tr>
<tr>
<td>7:30 pm</td>
<td>Women in STEM</td>
<td>155</td>
</tr>
<tr>
<td>8:00 pm</td>
<td>Intro to Web Development</td>
<td>153</td>
</tr>
<tr>
<td>8:30 pm</td>
<td>Minute to Win It Challenge</td>
<td>Gym</td>
</tr>
<tr>
<td>9:00 pm</td>
<td>Intro to Finance in Computer Science</td>
<td>155</td>
</tr>
<tr>
<td>9:30 pm</td>
<td>MLH Mini-event</td>
<td>152</td>
</tr>
<tr>
<td>10:00 pm</td>
<td>Intro to Swift</td>
<td>153</td>
</tr>
<tr>
<td>10:30 pm</td>
<td>Volleyball, Badminton, & Spikeball</td>
<td>Gym</td>
</tr>
<tr>
<td>11:00 pm</td>
<td>Chess Tournament</td>
<td>153</td>
</tr>
<tr>
<td>11:00 pm</td>
<td>AI Generated Art Competition</td>
<td>155</td>
</tr>
</tbody>
</table>
<img id="bg-fish4" src="img/fish_silhouette2.png" width="60%" style="position: absolute;">
<h2>Sunday</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>Event</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>12:30 a.m.</td>
<td>Midnight Snack</td>
<td>Cafeteria</td>
</tr>
<tr>
<td>1 a.m. (the first one)</td>
<td>Cup Stacking</td>
<td>152</td>
</tr>
<tr>
<td>1 a.m. (the second one)</td>
<td>Uno Tournament</td>
<td>153</td>
</tr>
<tr>
<td>7:30 a.m.</td>
<td>Breakfast</td>
<td>Cafeteria</td>
</tr>
<tr>
<td>9:00 a.m.</td>
<td>Yoga</td>
<td>Gym</td>
</tr>
<tr>
<td>9:30 a.m.</td>
<td>Submissions Close, Hacking Ends</td>
<td>-</td>
</tr>
<tr>
<td>10:00 a.m.</td>
<td>Judging Begins</td>
<td>-</td>
</tr>
<tr>
<td>11:00 a.m.</td>
<td>Engineering Challenge</td>
<td>152</td>
</tr>
<tr>
<td>12:00 p.m.</td>
<td>Judging Ends</td>
<td>-</td>
</tr>
<tr>
<td>12:30 p.m.</td>
<td>Lunch</td>
<td>Cafeteria</td>
</tr>
<tr>
<td>2:00 p.m.</td>
<td>Closing Ceremony</td>
<td>PAC</td>
</tr>
</tbody>
</table>
<br><br><br><br>
</div>
</div>
<!-- SPONSORS -->
<div class="section-wrapper">
<div id="sponsors-transition" class="trans">
<img src="img/trans_coral.png" width="100%">
</div>
<div id="sponsors" class="section">
<!--using linebreaks as margin goes brrrrr--><br><br><br><br><br><br>
<h1>/sponsors/</h1>
<!-- Silver Tier -->
<div class="sponsor-grid" style="display:block">
<a href="https://1435capital.com/" target="_blank"><img src="assets/sponsor_img/1435_capital.png" style="width:40%"></a>
</div>
<!-- Bronze -->
<div class="sponsor-grid" style="display:block">
<a href="https://www.teamtreehouse.com" target="_blank"><img src="assets/sponsor_img/treehouse_TEMP.png" style="width:70%"></a>
</div>
<!-- Third Tier -->
<div class="sponsor-grid" style="display:block">
<a href="https://www.hudsonrivertrading.com/" target="_blank"><img src="assets/sponsor_img/hrt.png" style="width:45%"></a>
</div>
<div class="sponsor-grid" style="display:block">
<a href="https://www.wolframalpha.com/" target="_blank"><img src="assets/sponsor_img/wolfram_alpha.svg" style="width:60%"></a>
</div>
<!-- Fourth Tier -->
<div style="display:block">
<div class="sponsor-grid">
<a href="https://www.princetonsoupandsandwich.com/" target="_blank"><img src="assets/sponsor_img/princeton_soup_and_sandwiches_TEMP.png" style="width:80%"></a>
<a href="https://certopus.com/" target="_blank"><img src="assets/sponsor_img/certopus.svg"></a>
<a href="https://www.centered.app/" target="_blank"><img src="assets/sponsor_img/centered.svg"></a>
<a href="https://www.taskade.com/" target="_blank"><img src="assets/sponsor_img/taskade.png"></a>
<a href="https://checkio.org/" target="_blank"><img src="assets/sponsor_img/checkio_TEMP.png" style="width:60%"></a>
<a href="https://www.axure.com" target="_blank"><img src="assets/sponsor_img/axure.svg"></a>
<a href="http://www.echo3d.co/" target="_blank"><img src="assets/sponsor_img/echo3d.png"></a>
<a href="https://mccaffreys.com/" target="_blank"><img src="assets/sponsor_img/mccaffreys.png" style="width:90%"></a>
<a href="https://vueschool.io/" target="_blank"><img src="assets/sponsor_img/vueschool.png" style="width:90%"></a>
<a href="https://www.leading-learners.com/" target="_blank"><img src="assets/sponsor_img/leading_learners.png"></a>
<a href="https://www.rxlogix.com/" target="_blank"><img src="assets/sponsor_img/rxlogix.jpeg" style="width:75%;"></a>
<a href="https://www.stickergiant.com/" target="_blank"><img src="assets/sponsor_img/stickergiant.png" style="width:65%"></a>
<a href="http://hackp.ac/mlh-StandOutStickers-hackathons" target="_blank"><img src="assets/sponsor_img/standout_stickers.png" style="width:85%"></a>
<a href="https://artofproblemsolving.com/" target="_blank"><img src="assets/sponsor_img/aops.svg"></a>
</div>
</div>
<!-- screw it --><br><br><br><br><br><br><br><br><br><br><br><br>
<div>
<div style="width:100%;text-align:center">
<a href="https://www.digitalocean.com/" target="_blank"><img src="assets/sponsor_img/digital_ocean.svg" style="width:30%"></a>
</div>
</div>
<!-- Fifth Tier -->
<div>
<div class="sponsor-grid" style="grid-template-columns: repeat(3, 1fr)">
<a href="https://interviewbuddy.in" target="_blank"><img src="assets/sponsor_img/interview_buddy.png"></a>
<a href="https://www.voiceflow.com/" target="_blank"><img src="assets/sponsor_img/voiceflow.png"></a>
<a href="https://www.think-board.com/" target="_blank"><img src="assets/sponsor_img/think_board.png" style="width:80%"></a>
</div>
</div>
<!-- hotfix -->
<div style="height: 100px;"></div>
</div>
</div>
<!-- TEAM -->
<div class="section-wrapper">
<div id="team-transition" class="trans">
<img src="img/trans_crust.png" width="100%">
</div>
<div id="team" class="section" style="padding-bottom:20px;">
<br><br><br><br>
<h1>/team/</h1>
<h2 id="team-section-name"></h2>
<div id="team-carousel-container">
<div class=button-container>
<button onclick="prev()" class="fa-solid fa-angle-left"></button>
</div>
<div id="team-container"></div>
<div class=button-container>
<button onclick="next()" class="fa-solid fa-angle-right"></button>
</div>
</div>
<br clear="both"><br>
<p style="color:rgb(220, 200, 133)">
<a href="mailto:team@hackphs.tech" style="color:white">Questions? Contact us!</a><br>
© hackPHS 2018-2022. All Rights Reserved.<br>
<a href="https://mlh.io/privacy" style="color:rgb(220, 200, 133)">Privacy</a> | <a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf" style="color:rgb(220, 200, 133)">Code Of Conduct</a>
</p>
</div>
</div>
<script src="team.js"></script>
<script src="accordion.js"></script>
<script src="countdown.js"></script>
</body>
</html>