-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1009 lines (998 loc) · 44.6 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
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale=1.0, user-scalable=no"/>
<meta property='og:title' content='UGAHacks 5'/>
<meta property='og:image' content='https://5.ugahacks.com/img/logo.png'/>
<meta property="og:url" content="https://5.ugahacks.com">
<meta property="og:type" content="website">
<title>UGAHacks 5</title>
<meta name="description" content="Boot up your dreams and Reach for the stars with UGAHacks 5!">
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
<link rel="manifest" href="images/favicon/site.webmanifest">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css"/>
<link rel="stylesheet" href="css/mainstyle.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body>
<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-gray.svg"
alt="Major League Hacking 2020 Hackathon Season" style="width:100%"></a>
<nav class="navbar sticky-top navbar-expand-lg navbar-dark navbar-custom">
<a class="navbar-brand" href="#"><img src="images/navbarlogo.png" alt="UGAHacks 5"
id="navbarlogo"></a>
<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 navbar-nav" id="navbarNavAltMarkup">
<a class="nav-item nav-link" href="#HOF">Hall of Fame</a>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="dropdownhead" data-toggle="dropdown">
Event Info
</a>
<div class="dropdown-menu" aria-labelledby="dropdownhead">
<a class="dropdown-item" href="#About">About</a>
<a class="dropdown-item" href="#FAQ">FAQ</a>
</div>
</li>
<a class="nav-item nav-link" href="#Schedule">Schedule</a>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="dropdownhead" data-toggle="dropdown">
UGAHacks Team
</a>
<div class="dropdown-menu" aria-labelledby="dropdownhead">
<a class="dropdown-item" id="Organizernav" href="#Organizers" hidden>Organizers</a>
<a class="dropdown-item" href="#Pasthack">Past Events</a>
<a class="dropdown-item" href="mailto:[email protected]">Contact Us</a>
</div>
</li>
<a class="nav-item nav-link" href="#Sponsors">Sponsors</a>
</div>
</nav>
<div id="particles-js"></div>
<div id="mainheader">
<img src="images/hackslogopwc.svg" alt="" id="mainbannerlogo">
<div class="sectionhead">
<h3 id="mainsubtitle"><b>February 7 - 9, 2020 at Zell B. Miller Learning Center</b></h3>
<br>
<br>
<a href='docs/UGAHacks5_Event_Recap.pdf' target="__blank" id='regbtn'>Event Recap</a>
</div>
</div>
<div id="Registration" hidden>
<div class="section" data-aos="fade-up">
<div class="sectionhead">
<br>
<h1 id="regcountdown">UGAHacks 5 starts in . . .</h1>
</div>
<div class="sectiontext">
<div class="keydatestext" data-aos="fade-up">
<div class="timecol">
<h1 id="countdownd"></h1>
<h2> Days </h2>
</div>
<div class="timecol">
<h1 id="countdownh"></h1>
<h2> Hours </h2>
</div>
<div class="timecol">
<h1 id="countdownm"></h1>
<h2> Minutes </h2>
</div>
<div class="timecol">
<h1 id="countdowns"></h1>
<h2> Seconds </h2>
</div>
</div>
</div>
</div>
</div>
<div id="HOF">
<div class="section" data-aos="fade-up">
<div class="sectionhead">
<br>
<h1>Hall of Fame</h1>
</div>
<div class="sectiontext">
<h3 id="congrats">Congratulations to all of our winners!</h3>
<br>
</div>
<div class="container-fluid" data-aos="fade-right">
<div class="card-deck">
<div class="col-12 col-sm-6 col-md-6 col-lg-4">
<h4 class="awardtitle">Overall - First Place</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/vrm.PNG" alt="">
<div class="card-body">
<h5 class="card-title"><b>VRM - Jawad Iqbal, Kevin Koffroth, Emily Nieves, Hunter, Jake Alford</b></h5>
<p class="card-text">VRM is a teleoperated robot arm coupled with an intuitive VR user interface that
consolidates visualization of sensor readout and control over the arm. </p>
<a href="https://devpost.com/software/vrm-vr-teleoperated-robot-arm" class="btn btn-outline-warning">Check
out their project on DevPost!</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4">
<h4 class="awardtitle">Overall - Second Place</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/wand.PNG" alt="">
<div class="card-body">
<h5 class="card-title"><b>WAND - Danny Tang, 6cho, Aladdin Al-Khatib</b></h5>
<p class="card-text">WAND is a device that is able to detect and identify objects that may pose a risk to
a blind person by taking in input from its surroundings and outputting audio feedback about the distance
and type of the object.</p>
<a href="https://devpost.com/software/wand-hbf0ke" class="btn btn-outline-warning">Check out their project
on DevPost!</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4">
<h4 class="awardtitle">Overall - Third Place</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/projectsunflower.PNG" alt="">
<div class="card-body">
<h5 class="card-title"><b>Project Sunflower - Michael Marra, Daniel Ling, Corey Xing, Preston Lee</b></h5>
<p class="card-text">Project Sunflower is a proof of concept for a tracking solar panel device equipped
with
various other sensors connected to a MongoDB database for analysis in order to determine the direction
of the greatest light source like a sunflower.</p>
<a href="https://devpost.com/software/project-sunflower" class="btn btn-outline-warning">Check out their
project on DevPost!</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4">
<h4 class="awardtitle">Best Video Game</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/bestvideogame.PNG" alt="">
<div class="card-body">
<h5 class="card-title"><b>Going Dark - Nikhil Chittaluru, Fuad Youssef, Jason Park, Keun Park </b></h5>
<p class="card-text">Going Dark is a web-based mobile multiplayer game to allow groups of friends to play
against each other in team-based caputre-the-flag. Players can also capture enemy players while freeing
their own in order to grab an advantage.</p>
<a href="https://devpost.com/software/going-dark" class="btn btn-outline-warning">Check out their project
on DevPost!</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4">
<h4 class="awardtitle">Best Beginner Hack</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/beginnerhack.PNG" alt="">
<div class="card-body">
<h5 class="card-title"><b>BurntOut - Nick Kreitz, Yaoviav, Proxence</b></h5>
<p class="card-text">Burntout is a website designed to help you find the right way to destress by pulling
gifs based upon one of four thematic planets - Cute Planet, Satisfying Planet, Funny Planet, and
Dash-Cam Planet.</p>
<a href="https://devpost.com/software/burnt-out-txpj7k" class="btn btn-outline-warning">Check out their
project on DevPost!</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4">
<h4 class="awardtitle">Best Solo Hack</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/solohack.PNG" alt="">
<div class="card-body">
<h5 class="card-title"><b>MEAL : Accessible Eating - Jack Towery</b></h5>
<p class="card-text">MEAL is a mobile application that aims to solve the problem of finding nutritious
foods for low-income students and families as food deserts become more prevalent and the cost of living
continues to rise. This is done by allowing users to search for summer lunch sites and Georgia farmers
markets to get directions and information about them.</p>
<a href="https://devpost.com/software/meal-making-eating-accessible-locally"
class="btn btn-outline-warning">Check out their project on DevPost!</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4 moreawards awardinvis">
<h4 class="awardtitle">PwC Capture the Flag - First <br>Place</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/greyhat.PNG" alt="">
<div class="card-body">
<h5 class="card-title text-center"><b>GreyHat</b></h5>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4 moreawards awardinvis">
<h4 class="awardtitle">PwC Capture the Flag - Second Place</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/danglingpointers.PNG" alt="">
<div class="card-body">
<h5 class="card-title text-center"><b>Dangling Pointers</b></h5>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4 moreawards awardinvis">
<h4 class="awardtitle">PwC Capture the Flag - Third Place</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/sorrydevs.PNG" alt="">
<div class="card-body">
<h5 class="card-title text-center"><b>SorryDevs</b></h5>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4 moreawards awardinvis">
<h4 class="awardtitle">BlackRock Hackathon API - Winner</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/Genie.PNG" alt="">
<div class="card-body">
<h5 class="card-title"><b>Genie - Andrew Zhao, Stephanie Yang, Jakub Jackowiak</b></h5>
<p class="card-text">Genie allows users to set short and long term goals then connect these goals to
investments. By showing the connection between accomplishment and investment, the app encourages
students to enter the world of investing as well as prompting them to plan for their future. </p>
<a href="https://devpost.com/software/genie-isj1tw" class="btn btn-outline-warning">Check out their
project on DevPost!</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4 moreawards awardinvis">
<h4 class="awardtitle">BlackRock Hackathon API - Runner Up</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/Invez.PNG" alt="">
<div class="card-body">
<h5 class="card-title"><b>invEZ - Armaan Lala, Michael Rehman, Joshua Biswas</b></h5>
<p class="card-text">Investing is an extremely good financial option that everyone in this day and age
should be utilizing. The problem with this is that it can be a very daunting task to get into. invEZ is
an app that takes the stressful parts out of investing and helps to curate a tailored list of possible
stocks specifically for the user.</p>
<a href="https://devpost.com/software/invez-nl12ax" class="btn btn-outline-warning">Check out their
project on DevPost!</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4 moreawards awardinvis">
<h4 class="awardtitle">BlackRock Hackathon API - Runner Up</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/Jasmine.PNG" alt="">
<div class="card-body">
<h5 class="card-title"><b>Jasmine - Samuel Yuen, Manu Puduvalli, William Vega, Yi Jian Ma</b></h5>
<p class="card-text">Jasmine is made to help you get into investing while making sure you avoid the noise.
Don't be baited by the news about "popular" stocks/companies or potentially huge gains from betting on a
company. Instead, Jasmine has two API endpoints which access BlackRock's Aladdin, which in turn, returns
financial information that Jasmine uses to show users the advantages of diversification.</p>
<a href="https://devpost.com/software/brc" class="btn btn-outline-warning">Check out their project on
DevPost!</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4 moreawards awardinvis">
<h4 class="awardtitle">Art Contest Winner</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/artwinner.PNG" alt="">
<div class="card-body">
<h5 class="card-title text-center"><b>"Dog Days of Summer" - Stephanie Yang</b></h5>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4 moreawards awardinvis">
<h4 class="awardtitle">Art Contest Runner-Up</h4>
<div class="card bg-transparent border-0">
<img class="card-img-top" src="images/winnerpics/artrunnerup.PNG" alt="">
<div class="card-body">
<h5 class="card-title text-center"><b>"Under the Sea" - Stephanie He</b></h5>
</div>
</div>
</div>
</div>
<div class="questioncol" id="buttoncol">
<a id='collapsebtnaward'>Show More</a>
</div>
</div>
</div>
</div>
<img id="bytetyping" src="images/ByteTyping.png" alt="Byte typing away on the laptop"
data-aos="fade-up">
<div id="About">
<div class="section" data-aos="fade-up">
<div class="sectionhead">
<br>
<h1>About</h1>
</div>
<div class="d-flex flex-wrap justify-content-center">
<div class="abouttext">
<p>This year at UGAHacks, we are all about helping your ideas blast off. Hackathons are all about exploring
the
galaxies filled with ideas and claiming one for yourself. You might even explore multiple planets before
settling on one or use one as a base station to reach other ones. Log on and join us for this epic 36 hour
programming sleepover, hosted at UGA's <a href="https://goo.gl/maps/rMa5f99XiaW39a8e6" class="textlink">Zell
B. Miller Learning Center.</a></p>
<p>Houston -- we got a problem! Fret not, we have mentors, workshops, and volunteers to help you get those
critical resources so you can venture forth. Two resources you'll not need to worry about is food and water
as plenty of shipments will be sent out throughout the event. We also got fun events such as karaoke
and video game tournaments when you just want to unwind and float around in space. Just remember not to get
sucked up into the black hole of procrastination!</p>
<p class="subheader"> We can't wait to see your otherworldly ideas!</p>
</div>
<figure id="bytehello">
<img src="images/ByteHello.png" alt="Byte (UGAHacks's new mascot) greeting everyone">
<figcaption>Welcome Byte - UGAHacks's new mascot!</figcaption>
</figure>
</div>
</div>
</div>
<div id="Schedule">
<div class="section" data-aos="fade-up">
<div class="sectionhead">
<br>
<h1>Schedule</h1>
</div>
<h2 id="keydates">Key Dates</h2>
<div class="keydatestext">
<div class="datecol" data-aos="fade-up-right">
<h3>Registration Opens:</h3>
<h2><b>December 1<sup>st</sup></b></h2>
</div>
<div class="datecol" data-aos="fade-up">
<h3>Registration Closes:</h3>
<h2><b>January 24<sup>th</sup></b></h2>
</div>
<div class="datecol" data-aos="fade-up-left">
<h3>Decision Response:</h3>
<h2><b>January 30<sup>th</sup></b></h2>
</div>
</div>
<img id="bytecal" src="images/ByteCalender.png" alt="Byte looking at the deadlines"
data-aos="fade-up">
<div class="scheduletext">
<div class="schedulecol" data-aos="fade-up-right">
<h3>Friday - Feb. 7th</h3>
<div class="sectiontext">
<table>
<tbody>
<tr>
<td><b>5:00 PM</b></td>
<td>Check-in Opens (MLC 4th Floor)</td>
</tr>
<tr>
<td><b>6:00 PM</b></td>
<td>Tate Free Parking Decks Open</td>
</tr>
<tr>
<td><b>6:30 PM</b></td>
<td>Opening Ceremony (Room 101)</td>
</tr>
<tr>
<td><b>7:15 PM</b></td>
<td>Dinner/Check-In Closes</td>
</tr>
<tr>
<td><b>8:15 PM</b></td>
<td>Art Contest Briefing (Room 348)</td>
</tr>
<tr>
<td><b>8:15 PM</b></td>
<td>First Time Hackers/Team Building - Jennifer Ly (Room 102)</td>
</tr>
<tr>
<td><b>9:00 PM</b></td>
<td>Web Architecture - Paul Hansa (Room 350)</td>
</tr>
<tr>
<td><b>9:15 PM</b></td>
<td>BlackRock API Challenge and the Power of UX/UI (Room 101)</td>
</tr>
<tr>
<td><b>10:00 PM</b></td>
<td>Web Dev 101: Hosting, Domains, and Analytics - Andy Troung (Room 348)</td>
</tr>
<tr>
<td><b>11:00 PM</b></td>
<td> GitHub Sites for Sore IO's - Zane Blalock and Madison Hanberry (Room 350)</td>
</tr>
<tr>
<td><b>12:00 AM</b></td>
<td>Sleeping Room Opens (Room 348)</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="schedulecol" data-aos="fade-up">
<h3>Saturday - Feb. 8th</h3>
<div class="sectiontext">
<table>
<tbody>
<tr>
<td><b>9:00 AM</b></td>
<td>Breakfast</td>
</tr>
<tr>
<td><b>10:00 AM</b></td>
<td>Future of Financial Products with Technology and Sustainability - BlackRock (Room 101)</td>
</tr>
<tr>
<td><b>10:00 AM</b></td>
<td>Google maps app integration - Leo Chen (Room 350)</td>
</tr>
<tr>
<td><b>11:00 AM</b></td>
<td>Pitch Perfect - Penn Hansa (Room 348)</td>
</tr>
<tr>
<td><b>11:00 AM</b></td>
<td>Indoor Football Toss - State Farm (Room 102)</td>
</tr>
<tr>
<td><b>12:15 PM</b></td>
<td>Capture the Flag - MLH (Room 350)</td>
</tr>
<tr>
<td><b>12:30 PM</b></td>
<td>How to Solve a Cyber Crime - PwC (Room 101)</td>
</tr>
<tr>
<td><b>2:00 PM</b></td>
<td>Lunch</td>
</tr>
<tr>
<td><b>3:00 PM</b></td>
<td>HPCC Systems Big Data Analytics Workshop (Room 101)</td>
</tr>
<tr>
<td><b>3:00 PM</b></td>
<td>Delivering Your Idea: Pitching with Purpose - BlackRock (Room 348)</td>
</tr>
<tr>
<td><b>4:15 PM</b></td>
<td>Pathways - Statefarm (Room 102)</td>
</tr>
<tr>
<td><b>4:15 PM</b></td>
<td>Resume Workshop (Room 350)</td>
</tr>
<tr>
<td><b>5:30 PM</b></td>
<td>MLH Werewolf (Room 348)</td>
</tr>
<tr>
<td><b>6:45 PM</b></td>
<td>Realtime cloud messaging mobile app with Ionic and Firebase - Dr Cengiz Gunay (Room 350)</td>
</tr>
<tr>
<td><b>8:00 PM</b></td>
<td>Dinner</td>
</tr>
<tr>
<td><b>9:15 PM</b></td>
<td>Join the UGAHacks Team! (Room 350)</td>
</tr>
<tr>
<td><b>9:30 PM</b></td>
<td>Computer Hacking 101 with the Metasploit Framework - Jackson Reid (Room 348)</td>
</tr>
<tr>
<td><b>11:00 PM</b></td>
<td>Smash Ultimate Tourney (Room 350)</td>
</tr>
<tr>
<td><b>12:00 AM</b></td>
<td>Sleeping Room Opens (Room 348)</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="schedulecol" data-aos="fade-up-left">
<h3>Sunday - Feb. 9th</h3>
<div class="sectiontext">
<table>
<tbody>
<tr>
<td><b>9:00 AM</b></td>
<td>Submissions Due on DevPost</td>
</tr>
<tr>
<td><b>9:00 AM</b></td>
<td>Breakfast</td>
</tr>
<tr>
<td><b>10:00 AM</b></td>
<td>Expo/Judging (4th Floor Hallway)</td>
</tr>
<tr>
<td><b>1:00 PM</b></td>
<td>Closing Ceremony (Room 101)</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="FAQ">
<div class="section" data-aos="fade-up">
<div class="sectionhead">
<br>
<h1>FAQ</h1>
</div>
<div class="questionrow">
<div class="questioncol" data-aos="fade-up-right">
<h4><i>Where will it be held at this year?</i></h4>
<p>At the <a href="https://goo.gl/maps/rMa5f99XiaW39a8e6" class="textlink">Zell B. Miller Learning Center</a>,
University of Georgia, Athens, GA.</p>
<h4><i>How much will it cost to sign up?</i></h4>
<p>Nothing! The entire event and its amazing perks are free for all participants, including meals and snacks
to keep you powered throughout the weekend, as well as workshops to help you get started and sharpen your
hacking skills.</p>
<h4><i>Can I start working on my project before the event?</i></h4>
<p>No. All UGAHacks projects must begin at the hackathon. You are not permitted to begin a hackathon project
before this event. Feel free to bring ideas, but no code!</p>
</div>
<div class="questioncol" data-aos="fade-up-left">
<h4><i>Who can sign up?</i></h4>
<p>All university students! We welcome all undergraduates and graduate students of all skill levels to attend.
Professionals and other guests are welcome to attend as mentors or volunteers.</p>
<h4><i>What should I bring?</i></h4>
<p>Enthusiasm! Laptops, phones, chargers, and other tools you might need for your project are also important!
If you're staying overnight, be sure to bring the necessary toiletries and a sleeping bag. Additionally,
please bring your official student ID or government ID (no photocopies allowed).</p>
</div>
</div>
<div class="questionrow invis" id="moreinfo">
<div class="questioncol" data-aos="fade-up-right">
<h4><i>What if I don't have a team or idea?</i></h4>
<p>Don't sweat it! You're free to join any existing team or form a new one when you get there. We'll also
provide ample opportunities for hackers to meet each other and brainstorm some amazing ideas.</p>
<h4><i>Will you be offering travel reimbursements?</i></h4>
<p>Yes, we will be offering travel reimbursements! Please make sure to note it on your registration and we
will reach out to you upon acceptance. University of Georgia students are not eligible to receive travel
reimbursements.</p>
<h4><i>Can I volunteer/mentor at UGAHacks?</i></h4>
<p>We love your enthusiasm! Volunteers and mentors can apply via the registration form above! If you have any
questions regarding the position, please contact us at <a href="mailto:[email protected]"
class="textlink">[email protected]</a> - Be sure to
mention the specific position in the subject of the
email. See you at the event!</p>
</div>
<div class="questioncol" data-aos="fade-up-left">
<h4><i>How many people can I have on my team?</i></h4>
<p>There is no hard limit, but we recommend teams be at most 4 people, as we only have prizes for 4 people per
team.</p>
<h4><i>Where will I sleep?</i></h4>
<p>We'll have designated sleeping areas for hackers, but they will be on a first-come-first-serve basis.
You're welcome and even encouraged to bring a sleeping bag!</p>
<h4><i>What are the rules all attendees must abide by?</i></h4>
<p>UGAHacks will be following the <a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf"
class="textlink"> MLH Code of Conduct</a>. By participating in UGAHacks,
you are agreeing to follow the
Code of Conduct throughout the duration of the event.</p>
<h4><i>Who do I reach out to if I have more questions?</i></h4>
<p>Reach out to <a href="mailto:[email protected]" class="textlink">[email protected]</a> and we'll be happy
to answer it!</p>
</div>
</div>
<div class="questionrow">
<div class="questioncol" id="buttoncol">
<a id='collapsebtn'>Show More</a>
</div>
</div>
</div>
</div>
<div id="Sponsors">
<div class="section" data-aos="fade-up">
<div class="sectionhead">
<h1>Sponsors</h1>
</div>
<div class="sponsorlogos">
<div class="sponimgsec">
<a href="https://www.pwc.com/gx/en/about.html">
<img src="images/sponsorpics/pwcready.png" alt="pwc">
</a>
</div>
<div class="sponimgsec">
<a href="https://macyscollege.com/Internships/Technology/">
<img src="images/sponsorpics/Macyslogo.svg" alt="macy's tech">
</a>
</div>
<div class="sponimgsec">
<a href="https://www.blackrock.com/corporate/about-us">
<img src="images/sponsorpics/blackrock.svg" alt="blackRock">
</a>
</div>
<div class="sponimgsec">
<a href="https://www.statefarm.com/about-us/">
<img src="images/sponsorpics/statefarm.png" alt="statefarm">
</a>
</div>
<div class="sponimgsec">
<a href="https://hpccsystems.com/">
<img src="images/sponsorpics/HPCCSystems.png" alt="hpcc systems">
</a>
</div>
<div class="sponimgsec">
<a href="https://www.equifax.com/personal/">
<img src="images/sponsorpics/equifax.png" alt="equifax">
</a>
</div>
<div class="sponimgsec">
<a href="https://www.digitalocean.com/">
<img src="images/sponsorpics/DigitalOcean_Logo.svg" alt="digital ocean">
</a>
</div>
<div class="sponimgsec">
<a href="https://www.kontrolfreek.com/">
<img src="images/sponsorpics/KF.png" alt="kontrolfreek">
</a>
</div>
<div class="sponimgsec">
<a href="https://www.cs.uga.edu/">
<img src="images/sponsorpics/uga.png" id="ugacombologo"
alt="UGA CS Department, Student Govt Association, Resident Hall Association">
</a>
</div>
<div class="sponimgsec" id="acm">
<a href="https://www.ugaacm.com/#who-we-are">
<img src="images/sponsorpics/acm.png" alt="UGA ACM">
</a>
</div>
</div>
<div class="sectiontext">
<h3 class="subheader">Partners</h3>
</div>
<div class="sponsorlogos">
<div class="sponimgsec">
<a href="http://hackp.ac/mlh-stickermule-hackathons">
<img src="images/sponsorpics/sticker-mule-logo-light-bg.svg" alt="Sticker mule">
</a>
</div>
</div>
<br>
<br>
<div class="sectiontext">
<h3 class="subheader">Interested in sponsoring us?</h3>
<p>By sponsoring UGAHacks, your company will have the opportunity to inspire new programmers while also reaching
out to and recruiting the rising stars of the tech industry. Please look over the <a
href="docs/UGAHacks-5-Sponsorship-Deck.pdf" target="__blank" class="textlink">Sponsorship
Packet</a> and <a
href="mailto:[email protected]" class="textlink">reach out to our sponsorship team for more
information.</a></p>
<br>
</div>
</div>
</div>
<div id="Organizers" hidden>
<div class="section" data-aos="fade-up">
<div class="sectionhead">
<h1>Organizers</h1>
</div>
<h2 class="img-head">Directors</h2>
<div class="d-flex flex-wrap justify-content-center">
<div class="imgsec">
<a href="https://www.linkedin.com/in/mohdhasan10/">
<img src="images/profilepic/mohdtanjimhasan.JPG" alt="profile pic" class="imgstyle">
<p class="imgtext">Mohd Tanjim Hasan (TJ)<br><i>Lead Director</i></p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/amanda-yang-2020/">
<img src="images/profilepic/amandayang.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Amanda Yang<br><i>Sponsorship Co-Director</i></p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/shivaninanda/">
<img src="images/profilepic/Shivani_Nanda.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Shivani Nanda<br><i>Sponsorship Co-Director</i></p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/andrei-s/">
<img src="images/profilepic/andreispatariu.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Andrei Spatariu<br><i>Web Director</i></p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/annie-lian/">
<img src="images/profilepic/AnnieLian.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Annie Lian<br><i>Marketing Director</i></p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/amy-yang-2bba64102/">
<img src="images/profilepic/amy.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Amy Yang<br><i>Finance Director</i></p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/glen-j-george/">
<img src="images/profilepic/Glen.JPG" alt="profile pic" class="imgstyle">
<p class="imgtext">Glen George<br><i>Logistics Director</i></p>
</a>
</div>
</div>
<h2 class="img-head">Advisors</h2>
<div class="d-flex flex-wrap justify-content-center">
<div class="imgsec">
<a href="https://www.linkedin.com/in/dannylee25/">
<img src="images/profilepic/OGDanng.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Danny Lee</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/ngoc-jennifer-ly/">
<img src="images/profilepic/jennifer.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Jennifer Ly</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/jin-jeong/">
<img src="images/profilepic/JinJeong.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Jin Jeong</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/company/ugahacks/about/">
<img src="images/profilepic/felise18.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Felise Wen</p>
</a>
</div>
<div class="imgsec">
<a href="https://github.com/biggestcookie">
<img src="images/profilepic/paulH.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Paul Hansa</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/meghana-menon">
<img src="images/profilepic/meghana.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Meghana Menon</p>
</a>
</div>
</div>
<h2 class="img-head">Marketing</h2>
<div class="d-flex flex-wrap justify-content-center">
<div class="imgsec">
<a href="https://www.linkedin.com/in/annie-lian/">
<img src="images/profilepic/AnnieLian.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Annie Lian</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/company/ugahacks/about/">
<img src="images/profilepic/felise18.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Felise Wen</p>
</a>
</div>
</div>
<h2 class="img-head">Sponsorship</h2>
<div class="d-flex flex-wrap justify-content-center">
<div class="imgsec">
<a href="https://www.linkedin.com/in/hima-velaga/">
<img src="images/profilepic/Hima.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Hima Velaga</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/connor-cummings-47905216b/">
<img src="images/profilepic/connor.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Connor Cummings</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/junnun-ali-592326157/">
<img src="images/profilepic/JunnunAli.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Junnun Ali</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/jefferyjohn/">
<img src="images/profilepic/jefferyjohn.JPG" alt="profile pic" class="imgstyle">
<p class="imgtext">Jeffery John</p>
</a>
</div>
</div>
<h2 class="img-head">Logistics</h2>
<div class="d-flex flex-wrap justify-content-center">
<div class="imgsec">
<a href="https://www.linkedin.com/in/junnun-ali-592326157/">
<img src="images/profilepic/JunnunAli.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Junnun Ali</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/sydney-nelms-1a1874191/">
<img src="images/profilepic/SydneyNelms.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Sydney Nelms</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/stefanltobler/">
<img src="images/profilepic/Stefan.JPG" alt="profile pic" class="imgstyle">
<p class="imgtext">Stefan Tobler</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/allen-williams-ac/">
<img src="images/profilepic/ac.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">A.C. Williams</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/thonnykoon/">
<img src="images/profilepic/ThonnyKoon.JPG" alt="profile pic" class="imgstyle">
<p class="imgtext">Thonny Koon</p>
</a>
</div>
</div>
<h2 class="img-head">Web</h2>
<div class="d-flex flex-wrap justify-content-center">
<div class="imgsec">
<a href="https://www.linkedin.com/in/noahbarnette/">
<img src="images/profilepic/noahb.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Noah Barnette</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/courtney-hogan/">
<img src="images/profilepic/courtney-hogan.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Courtney Hogan</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/dlopez1212/">
<img src="images/profilepic/dannyl.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Danny Lopez</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/alexcostaluiz/">
<img src="images/profilepic/AlexanderCosta.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Alex Costa</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/juliancamp/">
<img src="images/profilepic/Julian.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Julian Camp</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.youkaneduit.com">
<img src="images/profilepic/Kane.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Kane Du</p>
</a>
</div>
<div class="imgsec">
<a href="https://www.linkedin.com/in/kathleen-kim">
<img src="images/profilepic/kathleen.jpg" alt="profile pic" class="imgstyle">
<p class="imgtext">Kathleen Kim</p>
</a>
</div>
</div>
</div>
</div>
<div id="Pasthack">
<div class="section" data-aos="fade-up">
<div class="sectionhead">
<br>
<h1>Past Events</h1>
</div>
<div class="container" data-aos="fade-left">
<div id="phcarousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#phcarousel" data-slide-to="0" class="active"></li>
<li data-target="#phcarousel" data-slide-to="1"></li>
<li data-target="#phcarousel" data-slide-to="2"></li>
<li data-target="#phcarousel" data-slide-to="3"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<a href="https://4.ugahacks.com/"> <img class="d-block w-100 "
src="images/banner/ugahacks4banner.JPG "
alt="First slide "></a>
<div class=" carousel-caption d-none d-md-block ">
<p id="carstext1">Click me to see more!</p>
</div>
</div>
<div class="carousel-item ">
<a href="https://3.ugahacks.com/"><img class="d-block w-100 "
src="images/banner/ugahacks3banner.JPG "
alt="Second slide "></a>
<div class="carousel-caption d-none d-md-block ">
<p id="carstext2">Click me to see more!</p>
</div>
</div>
<div class="carousel-item ">
<a href="https://2.ugahacks.com/"> <img class="d-block w-100 "
src="images/banner/ugahacks2banner.JPG "
alt="Third slide "></a>
<div class="carousel-caption d-none d-md-block ">
<p id="carstext3">Click me to see more!</p>
</div>
</div>
<div class="carousel-item ">
<a href="https://1.ugahacks.com/"><img class="d-block w-100 "
src="images/banner/ugahacks1banner.JPG "
alt="Last slide "></a>
<div class="carousel-caption d-none d-md-block ">
<p id="carstext4">Click me to see more!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<a href="https://github.com/ugahacks/" class="footericons"><img
src="images/icons/icons8-github.png"
alt="ugahacks-github"></a>
<a href="https://www.facebook.com/ugahacks/" class="footericons"><img
src="images/icons/icons8-facebook.png" alt="ugahacks-facebook"></a>
<a href="https://twitter.com/ugahacks" class="footericons"><img
src="images/icons/icons8-twitter.png"
alt="ugahacks-twitter"></a>
<a href="https://www.instagram.com/ugahacks/" class="footericons"><img
src="images/icons/icons8-instagram.png" alt="ugahacks-instagram"></a>
</footer>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/particles.js/2.0.0/particles.min.js"></script>
<script>
AOS.init();
</script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script>
var regtime = new Date("Feb 7, 2020 18:30:00").getTime();
var x = setInterval(function () {
var currtime = new Date().getTime();
var timeleft = regtime - currtime;
var days = Math.floor(timeleft / (1000 * 60 * 60 * 24));
var hours = Math.floor((timeleft % (1000 * 60 * 60 * 24)) / (1000 * 3600));
var mins = Math.floor((timeleft % (1000 * 60 * 60)) / (1000 * 60));
var secs = Math.floor((timeleft % (1000 * 60)) / 1000);
if (timeleft > 0) {
document.getElementById("countdownd").innerHTML = days;
document.getElementById("countdownh").innerHTML = hours;
document.getElementById("countdownm").innerHTML = mins;
document.getElementById("countdowns").innerHTML = secs;
} else {
clearInterval(x);
document.getElementById("regcountdown").innerHTML = "Submit your project to the Devpost by 9 am!";
document.getElementById("regcountdown").insertAdjacentHTML("afterend", "<br><a href='https://ugahacks5.devpost.com/' id='regbtn'>Devpost</a>");
$(".timecol").remove();
}
})
</script>
<script>
$(document).ready(function () {
$("#collapsebtn").click(function () {
if ($("#collapsebtn").text() === "Show More") {
$("#collapsebtn").text("Show Less");
} else {
$("#collapsebtn").text("Show More");
}
$("#moreinfo").toggleClass("invis");
});
$("#collapsebtnaward").click(function () {
if ($("#collapsebtnaward").text() === "Show More") {
$("#collapsebtnaward").text("Show Less");
} else {
$("#collapsebtnaward").text("Show More");
}
$(".moreawards").toggleClass("awardinvis");
});
});
</script>
<script>
particlesJS.load('particles-js', "js/particles-config.json", function () {
console.log('callback - particles.js config loaded');
});
</script>