-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
675 lines (598 loc) · 30.3 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
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
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AthenaHacks 2020</title>
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Cabin|Roboto&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,600&display=swap" rel="stylesheet">
<!-- JS -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous">
</script>
<script src="https://use.fontawesome.com/9f7b7f8456.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<!-- contact -->
<script src="https://www.gstatic.com/firebasejs/4.1.3/firebase.js"></script>
<script>
var config = {
apiKey: "AIzaSyD9Em1Cj3aMeFob_fgbKdzKm42WS7Q3T6c",
authDomain: "athena-website-59a08.firebaseapp.com",
databaseURL: "https://athena-website-59a08.firebaseio.com/"
};
firebase.initializeApp(config);
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-135608121-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-135608121-1');
</script>
<!-- Favicon -->
<link rel="icon" type="image/png" href="images/owl_2020_moon.png">
</head>
<body>
<div id="header">
<!-- <img id="logo" src="images/owl_2020_moon.png"> -->
<div id="header-right">
<img src="images/text-logo.png" id="main-logo">
<div id="countdown">
<!-- Display the countdown timer in an element -->
<!-- <h1 style="padding-top: 5%">Time Remaining</h1> -->
<!--
<div id="clockdiv">
<div class="timer">
<div class="days time"></div>
</div>
<div class="timer">
<div class="hours time"></div>
</div>
<div class="timer">
<div class="minutes time"></div>
</div>
<div class="timer">
<div class="seconds time"></div>
</div>
</div>
-->
<script>
function getTimeRemaining(endtime) {
var t = Date.parse(endtime) - Date.parse(new Date());
var seconds = Math.floor((t / 1000) % 60);
var minutes = Math.floor((t / 1000 / 60) % 60);
var hours = Math.floor((t / (1000 * 60 * 60)) % 24);
var days = Math.floor(t / (1000 * 60 * 60 * 24));
return {
'total': t,
'days': days,
'hours': hours,
'minutes': minutes,
'seconds': seconds
};
}
function initializeClock(id, endtime) {
var clock = document.getElementById(id);
var timer = clock.querySelector('.timer');
var daysSpan = clock.querySelector('.days');
var hoursSpan = clock.querySelector('.hours');
var minutesSpan = clock.querySelector('.minutes');
var secondsSpan = clock.querySelector('.seconds');
function updateClock() {
var t = getTimeRemaining(endtime);
daysSpan.innerHTML = t.days + " d";
hoursSpan.innerHTML = ('' + t.hours).slice(-2) + " h";
minutesSpan.innerHTML = ('' + t.minutes).slice(-2) + " m";
secondsSpan.innerHTML = ('' + t.seconds).slice(-2) + " s";
daysSpan.style.width = "100%";
hoursSpan.style.width = "100%";
minutesSpan.style.width = "100%";
secondsSpan.style.width = "100%";
daysSpan.style.fontSize = "24px";
hoursSpan.style.fontSize = "24px";
minutesSpan.style.fontSize = "24px";
secondsSpan.style.fontSize = "24px";
if (t.total <= 0) {
clearInterval(timeinterval);
}
}
updateClock();
var timeinterval = setInterval(updateClock, 1000);
}
var deadline = new Date("March 7, 2020 12:00:00");
initializeClock('clockdiv', deadline);
</script>
</div>
<h2 id="hack-date">
March 6 - 7, 2021 <br />
University of Southern California
</h2>
<!--
<div id="app_buttons">
<button id="hacker_button"><a target="_blank" href="http://apply.athenahacks.com">Hacker
App</a></button>
<button id="mentor_button"><a target="_blank"
href="https://docs.google.com/forms/u/3/d/e/1FAIpQLSe6vL88G2l4NN_TBbkrXOOB9lwS5dHuVSEJsFiGJDmTOoRHdQ/viewform">Mentor
App</a></button>
<button id="volunteer_button"><a target="_blank"
href="https://docs.google.com/forms/d/e/1FAIpQLSeXVPlrpSnk10zRjR2TLS9ZCBoj1hLFq7Gc8DJrC1DtZwxXww/viewform">Volunteer
App</a></button>
</div>
-->
<div id="app_buttons">
<button id="hacker_button"><a target="_blank" href="https://forms.gle/Ue7J3Ah2ujPEqSCe7">Organizer Application</a></button>
</div>
<div id="purple-text">Apply to be an organizer for AthenaHacks 2021!</div>
<!-- <div id="yellow-text">Mentor and volunteer apps close </div> -->
<!-- <div id="coming_soon">
Live site coming soon!
</div> -->
</div>
</div>
<div id="main">
<!-- ABOUT -->
<div class="section" id="about">
<h1 class="section-title">about</h1>
<div id="about-info">
<p>
Join us for a weekend dedicated to <b>filling the gender gap</b>,
exploring technology, and building the next big thing! Our mission
is to support and nurture women* in tech by hosting Southern
California's premiere <b>all female* hackathon</b>. Expect a weekend
full of workshops, mentorship, tech talks, social activities, food,
and more! No experience necessary, you just need passion.
</p>
<p>
<strong>*trans and non-binary inclusive</strong>
</p>
</div>
<div id="info-cards">
<div class="card">
<img class="about-img" src="images/flame.png" width="150px"></img>
<p>
From hardware to mobile, there are so many fields to
explore! We want women to explore their ideas and interests, and
are looking forward to some amazing projects!
</p>
</div>
<div class="card">
<img class="about-img" src="images/hands.png" width="150px"></img>
<p>
We're all about helping each other grow! We hope to foster a
supportive environment so that each participant at AthenaHacks
feels welcome and comfortable.
</p>
</div>
<div class="card">
<img class="about-img" src="images/flowers.png" width="150px"></img>
<p>
Right now, only 20% of hackathon participants are women. We hope
to fill that gap by providing a comfortable environment that is
focused on learning and exploring!
</p>
</div>
</div>
</div>
<!-- FAQ -->
<div class="section" id="faq">
<div id="faq-content">
<!-- Questions -->
<ul class="faq">
<div class="section-title">faqs</div>
<li>
<h3 class="question">What's a hackathon?
</h3>
<div class="answer">
A hackathon is a 24 hour event where students with similar interests come together to
work
on a
project. You can attend workshops, hear from people in the computer science field and
network with
students and reps from companies! </div>
</li>
<li>
<h3 class="question">Who can attend?
</h3>
<div class="answer">
Female* undergraduates and high schoolers are welcome to attend; we'd love to have any
males interested
in helping our cause and any women in the industry to mentor or volunteer! <br />
*trans and non-binary inclusive </div>
</li>
<li>
<h3 class="question">What are the rules about high schoolers?
</h3>
<div class="answer">
If you're a high schooler who will be at least 18 years old by AthenaHacks, you are
invited
to attend!
</div>
</li>
<li>
<h3 class="question">How do I get to USC?
</h3>
<div class="answer">
This year we are sending buses to nearby schools. More details will be
coming soon so keep a look
out. Registering for a spot on a bus will happen after application acceptances go out.
</div>
</li>
<li>
<h3 class="question">Do I need to be a CS major or minor?
</h3>
<div class="answer">
No! This is the perfect place for any student to create their first coding project.
We'll
have plenty
of resources for beginners to get started!
</div>
</li>
<li>
<h3 class="question">How do I apply?
</h3>
<div class="answer">
Applications for hackers are open now until Feb 16th. Mentor and volunteer apps will open in
January 2020.
</div>
</li>
<li>
<h3 class="question">Does this cost money?
</h3>
<div class="answer">
Nope! Admission is free and covers overnight stay, food, all the snacks you could ever
want, and of
course, our sponsors and AthenaHacks will provide you with the free swag!!
</div>
</li>
<li>
<h3 class="question">What about travel reimbursements?
</h3>
<div class="answer">
Unfortunately, we will not be able to provide travel reimbursements this year. Sorry for
the
inconvenience :(
</div>
</li>
<li>
<h3 class="question">How do teams work?
</h3>
<div class="answer">
At most teams can have 4 people. You can have your teammates in mind before the event,
or
you can
find a team during our team formation activity before and after opening ceremony!
</div>
</li>
<li>
<h3 class="question">Will there be hardware available?
</h3>
<div class="answer">
Yes! Hardware will be provided by MLH.
</div>
</li>
<li>
<h3 class="question">Where do I sleep?
</h3>
<div class="answer">
If hacking all night isn't your way to go, we'll have places provided for you to catch a
few Z's!
</div>
</li>
<li>
<h3 class="question">What should I bring?
</h3>
<div class="answer">
Remember to bring a valid student ID for admission and anything you need to hack away!
</div>
</li>
<li>
<h3 class="question">Is there a code of conduct?
</h3>
<div class="answer">
Yes, we want to make AthenaHacks enjoyable for everyone! We follow MLH's Code of
Conduct:
<a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf" target="_blank">here</a>.
</div>
</li>
<li>
<h3 class="question">Can I mentor or volunteer?
</h3>
<div class="answer">
Yes! We welcome all regardless of gender who want to help. We appreciate all who want to
support our cause. Mentors help hackers during the event
with any technical questions they might have. Volunteers support the organizing team
during
the hackathon with various
tasks. Links for both apps are at the top of the page.
</div>
</li>
</ul>
<div id="faq-right">
<img src="../images/mushroom.png" class="side"></img>
<div> if we missed your question, hit us up at <a
href="mailto:[email protected]">[email protected]</a></div>
</div>
</div>
</div>
<!-- SPONSORS -->
<div class="section" id="sponsors">
<div class="section-title">Sponsors</div>
<div class="sponsor-thanks">
A <b>huge</b> thank you to all our returning and new sponsors for 2020! We are no longer accepting
sponsors for this year, but keep an eye out for next year.
<br />
</div>
<div id="sponsor-logos">
<!-- Beta Tier -->
<!-- Gamma Tier-->
<div class="sponsor-tier tier3">
<a href="https://privacy.microsoft.com/en-us/privacystatement" target="_blank"><img
src="images/sponsors/microsoft.png"></a>
<a href="https://www.raytheon.com/capabilities" target="_blank"><img
src="images/sponsors/raytheon-logo.png"></a>
<a href="https://www.zynga.com/" target="_blank"><img
src="images/sponsors/zynga-logo.png"></a>
<a href="https://www.joinhoney.com/" target="_blank"><img
src="images/sponsors/honey-logo.svg" id="honey"></a>
<a href="https://www.qualcomm.com/" target="_blank"><img
src="images/sponsors/qualcomm.png"></a>
<a href="https://www.bloomberg.com/" target="_blank"><img
src="images/sponsors/bloomberg.png"></a>
<a href="https://www.activision.com/" target="_blank"><img
src="images/sponsors/activision.png"></a>
<a href="https://www.pimco.com/" target="_blank"><img src="images/sponsors/pimco-logo.png"></a>
</div>
<!-- Delta Tier-->
<div class="sponsor-tier tier4">
<a href="http://google.com/" target="_blank"><img
src="images/sponsors/google.png"></a>
<a href="https://www.twilio.com/" target="_blank"><img
src="images/sponsors/twilio-logo.png"></a>
<a href="https://www.oracle.com/index.html" target="_blank"><img
src="images/sponsors/Oracle.png"></a>
<a href="https://www.facebook.com/" target="_blank"><img
src="images/sponsors/facebook2.png"></a>
<a href="https://www.invoca.com/" target="_blank"><img
src="images/sponsors/invoca-logo.png"></a>
<a href="https://www.standardindustries.com/" target="_blank"><img
src="images/sponsors/standard.png"></a>
<a href="https://www.northropgrumman.com/" target="_blank"><img
src="images/sponsors/northrop_grumman_logo.png"></a>
<a href="https://www.ibm.com/" target="_blank"><img src="images/sponsors/ibm.png"></a>
<a href="https://disney.com/" target="_blank"><img src="images/sponsors/disney-black.png"></a>
</div>
<!-- Other Tier -->
<div class="sponsor-tier tier5">
<a href="http://hackp.ac/mlh-stickermule-hackathons" target="_blank"><img
src="images/sponsors/stickermule.png"></a>
<a href="https://stickerapp.com/" target="_blank"><img
src="images/sponsors/stickerapp_logo.png"></a>
<a href="https://mlh.io/" target="_blank"><img
src="images/sponsors/mlh-logo.png"></a>
<a href="https://ripplematch.com/" target="_blank"><img src="images/sponsors/ripplematch.png"></a>
<a href="https://usg.usc.edu/resources/" target="_blank"><img
src="images/sponsors/USG-logo.png"></a>
<a href="https://viterbischool.usc.edu/" target="_blank"><img
src="images/sponsors/viterbilogo.png"></a>
</div>
<!-- Food Sponsors -->
<div class="sponsor-tier tier5">
<a href="https://rawrev.com/" target="_blank"><img
src="images/sponsors/rawrev.png"></a>
<a href="https://baresnacks.com/" target="_blank"><img
src="images/sponsors/bare-logo.png"></a>
<a href="https://www.instagram.com/cafedulcela/?hl=en" target="_blank"><img
src="images/sponsors/dulce-logo.png"></a>
<a href="https://hvmn.com/go-cubes" target="_blank"><img
src="images/sponsors/gocubes-logo.png"></a>
<a href="https://www.sujajuice.com/" target="_blank"><img
src="images/sponsors/suja-logo.png"></a>
<a href="https://guayaki.com/" target="_blank"><img
src="images/sponsors/yerba-mate-logo.png"></a>
<a href="https://pocky.com/" target="_blank"><img
src="images/sponsors/pocky-logo.png"></a>
<a href="http://www.thebobatruck.com/" target="_blank"><img
src="images/sponsors/bobatruck.png"></a>
<a href="https://www.zesttea.com/" target="_blank"><img
src="images/sponsors/zesttea.png"></a>
<a href="https://www.monsterenergy.com" target="_blank"><img
src="images/sponsors/monster.png"></a>
<a href="https://myteasquares.com/" target="_blank"><img
src="images/sponsors/teasquares.png"></a>
<a href="https://www.redbull.com/" target="_blank"><img
src="images/sponsors/redbull.png"></a>
<a href="https://risebrewingco.com/" target="_blank"><img
src="images/sponsors/risebrewing.png"></a>
<!-- <a href="https://baresnacks.com/" target="_blank"><img
src="images/sponsors/bare_snacks.png"></a>
<a href="https://www.simplygum.com/" target="_blank"><img
src="images/sponsors/simply_gum.png"></a> -->
</div>
</div>
<div id="keynote">
<div id="keynote-header">
<h4>about our keynote speaker</text>
<h1>Ruthe Farmer</h1>
</div>
<div id="keynote-info">
<text>Ruthe has spent her career working to increase diversity in technology and engineering. She
started this journey at the Girl Scouts, working to increase STEM education for young women. By
2008, she was helping to run the National Center for Women & Information Technology (NCWIT) and
in 2012, chaired the global Computer Science Education Week. In 2016 she became the Senior
Policy Advisor for Tech Inclusion at the White House Office of Science & Technology Policy under
the final year of the Obama Administration. Today she serves as the Chief Evangelist for
CSforALL, an organization dedicated to making computer science an integral part of all K-12
education in America.
</text>
<img src="./images/people/ruthe_headshot.jpg">
</div>
</div>
</div>
<!-- SOCIAL MEDIA -->
<div class="section" id="social_media">
<div class="section-title">
Recent Instagram Posts
</div>
<!-- instagram embed-->
<div id="pixlee_container"></div>
<!-- <div id = "info">
<a href="https://www.facebook.com/athenaHacks" target="_blank">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a href="https://www.instagram.com/athena_hacks/?hl=en" target="_blank">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
<a href="mailto:[email protected]" target="_blank">
<i class="fa fa-envelope-o" aria-hidden="true"></i>
</a>
</div> -->
</div>
</div>
<!-- team -->
<div class="section" id="organizers">
<div class="section-title">Meet The Team</div>
<div class="team">
<div class="person">
<img src="images/people/aliya.png" class="profile-img">
<p>Aliya Petranik</p>
<p class="team-name">Programs</p>
</div>
<div class="person">
<img src="images/people/jill.png" class="profile-img">
<p>Jillian Khoo</p>
<p class="team-name">Programs</p>
</div>
<div class="person">
<img src="images/people/stephanie.png" class="profile-img">
<p>Stephanie Lampotang</p>
<p class="team-name">Programs</p>
</div>
<div class="person">
<img src="images/people/claire.png" class="profile-img">
<p>Claire Jutabha</p>
<p class="team-name">Programs</p>
</div>
<div class="person">
<img src="images/people/emily.png" class="profile-img fin">
<p>Emily Jin</p>
<p class="team-name">Finances</p>
</div>
<div class="person">
<img src="images/people/jessica.png" class="profile-img fin">
<p>Jessica Chen</p>
<p class="team-name">Finances</p>
</div>
<div class="person">
<img src="images/people/lydia.png" class="profile-img fin">
<p>Lydia DiBlasio</p>
<p class="team-name">Finances</p>
</div>
<div class="person finance">
<img src="images/people/stacy.png" class="profile-img fin">
<p>Stacy Shen</p>
<p class="team-name">Finances</p>
</div>
<div class="person finance">
<img src="images/people/ari.png" class="profile-img fin">
<p>Ari Sokolov</p>
<p class="team-name">Finances</p>
</div>
<div class="person">
<img src="images/people/lindsay.png" class="profile-img">
<p>Lindsay Huang</p>
<p class="team-name">Marketing + Design</p>
</div>
<div class="person">
<img src="images/people/leslie.png" class="profile-img">
<p>Leslie Lin</p>
<p class="team-name">Marketing + Design</p>
</div>
<div class="person">
<img src="images/people/krishna.png" class="profile-img">
<p>Krishna Gopal</p>
<p class="team-name">Marketing + Design</p>
</div>
<div class="person">
<img src="images/people/julia.png" class="profile-img">
<p>Julia Cordero</p>
<p class="team-name">Marketing + Design</p>
</div>
<div class="person">
<img src="images/people/sophie.png" class="profile-img fin">
<p>Sophie Wu</p>
<p class="team-name">Logistics</p>
</div>
<div class="person">
<img src="images/people/elizabeth.png" class="profile-img fin">
<p>Elizabeth Gonzalez</p>
<p class="team-name">Logistics</p>
</div>
<div class="person finance">
<img src="images/people/shreya.png" class="profile-img fin">
<p>Shreya Havaldar</p>
<p class="team-name">Logistics</p>
</div>
<div class="person finance">
<img src="images/people/radhika.png" class="profile-img fin">
<p>Radhika Agrawal</p>
<p class="team-name">Logistics</p>
</div>
<div class="person finance">
<img src="images/people/brittany.png" class="profile-img fin">
<p>Brittany Rollins</p>
<p class="team-name">Logistics</p>
</div>
</div>
</div>
<!-- footer -->
<div id="footer">
<div class="footer-left">
<div class="footer-logo">
<img src="images/text-logo.png" class="footer-img">
</div>
<div class="social-icons">
<a href="https://www.facebook.com/athenaHacks" target="_blank">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a href="https://www.instagram.com/athena_hacks/?hl=en" target="_blank">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
<a href="mailto:[email protected]" target="_blank">
<i class="fa fa-envelope-o" aria-hidden="true"></i>
</a>
</div>
</div>
<div class="made-with">
<p>Made with 🤍 in Los Angeles</p>
</div>
</div>
<!-- MLH -->
<a id="mlh-trust-badge"
style="display:block;max-width:100px;min-width:60px;position:fixed;right:50px;top:0;width:10%;z-index:10000"
href="https://mlh.io/seasons/na-2020/events?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2020-season&utm_content=white"
target="_blank"><img
src="https://s3.amazonaws.com/logged-assets/trust-badge/2020/mlh-trust-badge-2020-white.svg"
alt="Major League Hacking 2020 Hackathon Season" style="width:100%"></a>
<script type="text/javascript">
window.PixleeAsyncInit = function () {
Pixlee.init({
apiKey: '16ReD3_uFm8McGquTJzm'
});
Pixlee.addSimpleWidget({
widgetId: '23570'
});
};
</script>
<script src="https://instafeed.assets.pixlee.com/assets/pixlee_widget_1_0_0.js"></script>
</body>
</html>