This repository was archived by the owner on Feb 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1445 lines (1352 loc) · 48.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">
<head>
<!-- Meta Information -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<!-- for Google -->
<meta name="description"
content="PickHacks is a 36 hour opportunity for you to build your dreams."/>
<meta name="keywords" content="PickHacks, hackathon, Missouri S&T, S&T, Rolla, MLH"/>
<meta name="author" content="PickHacks"/>
<meta name="theme-color" content="#22292c">
<meta name="copyright" content="PickHacks"/>
<meta name="application-name" content="PickHacks | March 1st - 3rd | Rolla, MO"/>
<title>PickHacks 2019</title>
<link rel="shortcut icon" href="images/pickhacks.ico">
<!-- Materialize for Tables -->
<link rel="stylesheet" href="css/materialize.css" />
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Animations -->
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<!-- Icons -->
<link rel="stylesheet" href="css/flaticon.css" />
<!-- Main css -->
<link rel="stylesheet" href="css/style.css">
<!-- Vertical Nav -->
<!-- <link rel="stylesheet" href="css/reset.css"> -->
<link rel="stylesheet" href="css/vertNav.css"> <!-- Resource style -->
<script src="js/modernizr.js"></script> <!-- Modernizr -->
<script type="text/javascript">
var root = document.getElementsByTagName( 'html' )[0]; // '0' to assign the first (and only `HTML` tag)
root.setAttribute( 'class', 'no-touch' );
</script>
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Poppins:400,500,600' rel='stylesheet' type='text/css'>
</head>
<body data-spy="scroll" data-offset="50" data-target=".navbar-collapse">
<!-- =========================
NAVIGATION LINKS
============================== -->
<a id="mlh-trust-badge" href="https://mlh.io/seasons/na-2019/events?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2019-season&utm_content=white" target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2019/mlh-trust-badge-2019-white.svg" alt="Major League Hacking 2019 Hackathon Season" style="width:100%"></a>
<div class="navbar navbar-fixed-top custom-navbar" role="navigation">
<div class="container" style="margin-right: 0; padding-right: 0; margin-left: 2rem; width: 100%; max-width: 100%">
<!-- navbar header -->
<div class="navbar-header">
<a href="#intro" class="navbar-brand smoothScroll"><img class="img-responsive" src="images/pickhacks.png" /><i>PICKHACKS</i></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#intro" class="smoothScroll">Home</a></li>
<li><a href="#overview" class="smoothScroll">About</a></li>
<li><a href="#program" class="smoothScroll">Schedule</a></li>
<li><a href="#speakers" class="smoothScroll">Team</a></li>
<li><a href="#faq" class="smoothScroll">FAQ</a></li>
<!--<li><a href="#venue" class="smoothScroll">Venue</a></li>-->
<li><a href="#sponsors" class="smoothScroll">Sponsors</a></li>
<!--<li><a href="#contact" class="smoothScroll">Contact</a></li>-->
</ul>
</div>
</div>
</div>
<!-- =========================
INTRO SECTION
============================== -->
<section id="intro" class="cd-section">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<h1><span style="font-weight:900">PICK</span><span style="font-weight:100">HACKS</span></h1>
<h4><a href="https://goo.gl/maps/D8yMcL9eAaN2" class="havener-link">Havener Center</a>, Missouri S&T</h4>
<h4>March 1 - 3, 2019 </h4>
<!-- <div class="timer"></div> -->
<a href="https://pickhacks.devpost.com/submissions" target="_blank" class="btn btn-lg btn-default smoothScroll">VIEW 2019 PROJECTS</a>
</div>
</div>
</div>
</section>
<!-- =========================
OVERVIEW SECTION
============================== -->
<section id="snippets">
<div class="container">
<div class="stat">
<div class="number">
<p>
36
</p>
</div>
<div class="word">
<p>
Hours
</p>
</div>
</div>
<div class="stat">
<div class="number">
<p>
20+
</p>
</div>
<div class="word">
<p>
Companies
</p>
</div>
</div>
<div class="stat">
<div class="number">
<p>
300
</p>
</div>
<div class="word">
<p>
Attendees
</p>
</div>
</div>
<div class="stat">
<div class="number">
<p>
$55000+
</p>
</div>
<div class="word">
<p>
in Prizes
</p>
</div>
</div>
</div>
</section>
<section id="overview" class="cd-section">
<div class="container">
<div class="overview-info">
<div class="overview-left">
<div class="title">
<h2>The <span class="bold">Pick</span>Hacks Experience</h2>
</div>
<div class="description">
<p>
PickHacks is a celebration of technology that brings together 300 of the brightest minds around the nation for 36 hours of building, collaboration, and fun. Our mission is to empower students to explore, learn, and create within a supportive and welcoming environment.
</p>
</div>
</div>
</div>
</div>
</section>
<!--=========================
PROGRAM SECTION
==============================-->
<section id="program" class="cd-section">
<div class="details-container">
<div class="details-image">
</div>
<div class="details-text showDesktop">
<div class="section-title showDesktop">
<h2>Schedule</h2>
</div>
<!-- <p class="showDesktop">
Coming soon..
</p> -->
<div class="col-md-12 col-sm-12" style="padding-left: 0;">
<!-- nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li class="active"><a href="#fday" aria-controls="fday" role="tab" data-toggle="tab">FRIDAY (3/1)</a></li>
<li><a href="#sday" aria-controls="sday" role="tab" data-toggle="tab">SATURDAY (3/2)</a></li>
<li><a href="#tday" aria-controls="tday" role="tab" data-toggle="tab">SUNDAY (3/3)</a></li>
</ul>
<!-- tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="fday">
<div class="col-md-12 col-sm-12">
<table class="highlight">
<thead>
<tr>
<th>Time</th>
<th>Event</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>All Weekend</td>
<td>Limbo</td>
<td>Relaxation Area</td>
</tr>
<tr>
<td>4.00 - 11.00 PM</td>
<td>Check In</td>
<td>Staircase</td>
</tr>
<tr>
<td>4.30 - 5.30 PM</td>
<td>Buses Arrive</td>
<td>State Street</td>
</tr>
<tr>
<td>6.00 - 7.30 PM</td>
<td>Opening Ceremony</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>7.30 - 10.00 PM</td>
<td>Dinner</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>8.00 PM</td>
<td>Hacking Begins</td>
<td>Hacker Rooms</td>
</tr>
<tr>
<td>8.00 - 8.50 PM</td>
<td>Team Building</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>9.00 - 9.50 PM</td>
<td>"Intro to Hackathons" by MLH</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>10.00 - 10.50 PM</td>
<td>"Intro to Web Dev" by ACM</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>11.00 PM - 1.00 AM</td>
<td>Musical Chairs</td>
<td>Downstairs Atrium</td>
</tr>
</tbody>
</table>
</div>
</div>
<div role="tabpanel" class="tab-pane" id="sday">
<div class="col-md-12 col-sm-12">
<table class="highlight">
<thead>
<tr>
<th>Time</th>
<th>Event</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>12.00 - 2.00 AM</td>
<td>Midnight Snack</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>2.00 - 4.00 AM</td>
<td>Smash Tournament</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>8.00 - 10.00 AM</td>
<td>Breakfast sponsored by Tradebot</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>10.00 - 10.50 AM</td>
<td>"Developing Software in an Agile World" by Express Scripts</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>11.00 - 11.50 AM</td>
<td>"Amazon Alexa Skills" by Panera Bread</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>12.00 - 2.00 PM</td>
<td>Lunch sponsored by Centene Corporation</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>2.00 - 2.50 PM</td>
<td>Centene Slot</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>2.00 - 5.00 PM</td>
<td>Rock Climbing</td>
<td>Havener Lawn</td>
</tr>
<tr>
<td>5.00 - 6.00 PM</td>
<td>Yoga</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>6.30 - 9.00 PM</td>
<td>Dinner</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>9.00 - 10.00 PM</td>
<td>Cup Stacking</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>11.00 PM - 12.00 AM</td>
<td>Reiumbursement Open House</td>
<td>Staircase</td>
</tr>
</tbody>
</table>
</div>
</div>
<div role="tabpanel" class="tab-pane" id="tday">
<div class="col-md-12 col-sm-12">
<table class="highlight">
<thead>
<tr>
<th>Time</th>
<th>Event</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>12.00 - 2.00 AM</td>
<td>Midnight Snack</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>7.00 - 9.00 AM</td>
<td>Breakfast</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>8.00 AM</td>
<td>Hacking Ends (Devpost Submissions Due)</td>
<td>Hacker Rooms</td>
</tr>
<tr>
<td>8.00 - 8.30 AM</td>
<td>How to Demo Workshop</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>9.00 AM - 10.00 AM</td>
<td>Table Flipping</td>
<td>Havener Lawn</td>
</tr>
<tr>
<td>10.00 AM - 12.00 PM</td>
<td>Judging</td>
<td>Hacker Rooms</td>
</tr>
<tr>
<td>12.00 PM - 1.00 PM</td>
<td>Lunch sponsored by State Farm</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>1.00 PM - 2.30 PM</td>
<td>Closing Ceremony</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>3.00 PM</td>
<td>Buses Leave</td>
<td>Parking Lot</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container showMobile" style="margin-top: -14vh">
<div class="section-title">
<h2>Details</h2>
</div>
<!-- <p>
Coming soon..
</p> -->
<div class="col-md-12 col-sm-12" style="padding-left: 0;">
<!-- nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li class="active"><a href="#fday1" aria-controls="fday1" role="tab" data-toggle="tab">FRIDAY (3/1)</a></li>
<li><a href="#sday1" aria-controls="sday1" role="tab" data-toggle="tab">SATURDAY (3/2)</a></li>
<li><a href="#tday1" aria-controls="tday1" role="tab" data-toggle="tab">SUNDAY (3/3)</a></li>
</ul>
<!-- tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="fday1">
<div class="col-md-12 col-sm-12">
<table class="highlight">
<thead>
<tr>
<th>Time</th>
<th>Event</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>All Weekend</td>
<td>Limbo</td>
<td>Relaxation Area</td>
</tr>
<tr>
<td>4.00 - 11.00 PM</td>
<td>Check In</td>
<td>Staircase</td>
</tr>
<tr>
<td>4.30 - 5.30 PM</td>
<td>Buses Arrive</td>
<td>State Street</td>
</tr>
<tr>
<td>6.00 - 7.30 PM</td>
<td>Opening Ceremony</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>7.30 - 10.00 PM</td>
<td>Dinner</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>8.00 PM</td>
<td>Hacking Begins</td>
<td>Hacker Rooms</td>
</tr>
<tr>
<td>8.00 - 8.50 PM</td>
<td>Team Building</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>9.00 - 9.50 PM</td>
<td>"Intro to Hackathons" by MLH</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>10.00 - 10.50 PM</td>
<td>"Intro to Web Dev" by ACM</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>11.00 PM - 1.00 AM</td>
<td>Musical Chairs</td>
<td>Downstairs Atrium</td>
</tr>
</tbody>
</table>
</div>
</div>
<div role="tabpanel" class="tab-pane" id="sday1">
<div class="col-md-12 col-sm-12">
<table class="highlight">
<thead>
<tr>
<th>Time</th>
<th>Event</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>12.00 - 2.00 AM</td>
<td>Midnight Snack</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>2.00 - 4.00 AM</td>
<td>Smash Tournament</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>8.00 - 10.00 AM</td>
<td>Breakfast sponsored by Tradebot</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>10.00 - 10.50 AM</td>
<td>"Developing Software in an Agile World" by Express Scripts</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>11.00 - 11.50 AM</td>
<td>"Amazon Alexa Skills" by Panera Bread</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>12.00 - 2.00 PM</td>
<td>Lunch sponsored by Centene Corporation</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>2.00 - 2.50 PM</td>
<td>Centene Slot</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>2.00 - 5.00 PM</td>
<td>Rock Climbing</td>
<td>Havener Lawn</td>
</tr>
<tr>
<td>5.00 - 6.00 PM</td>
<td>Yoga</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>6.30 - 9.00 PM</td>
<td>Dinner</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>9.00 - 10.00 PM</td>
<td>Cup Stacking</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>11.00 PM - 12.00 AM</td>
<td>Reiumbursement Open House</td>
<td>Staircase</td>
</tr>
</tbody>
</table>
</div>
</div>
<div role="tabpanel" class="tab-pane" id="tday1">
<div class="col-md-12 col-sm-12">
<table class="highlight">
<thead>
<tr>
<th>Time</th>
<th>Event</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>12.00 - 2.00 AM</td>
<td>Midnight Snack</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>7.00 - 9.00 AM</td>
<td>Breakfast</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>8.00 AM</td>
<td>Hacking Ends (Devpost Submissions Due)</td>
<td>Hacker Rooms</td>
</tr>
<tr>
<td>8.00 - 8.30 AM</td>
<td>How to Demo Workshop</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>9.00 AM - 10.00 AM</td>
<td>Table Flipping</td>
<td>Havener Lawn</td>
</tr>
<tr>
<td>10.00 AM - 12.00 PM</td>
<td>Judging</td>
<td>Hacker Rooms</td>
</tr>
<tr>
<td>12.00 PM - 1.00 PM</td>
<td>Lunch sponsored by State Farm</td>
<td>Downstairs Atrium</td>
</tr>
<tr>
<td>1.00 PM - 2.30 PM</td>
<td>Closing Ceremony</td>
<td>St. Pat's Ballroom A&B</td>
</tr>
<tr>
<td>3.00 PM</td>
<td>Buses Leave</td>
<td>Parking Lot</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- =========================
TEAM SECTION
============================== -->
<section id="speakers" class="cd-section">
<div class="container">
<div class="row">
<div class="section-title">
<h2>Get to know us!</h2>
</div>
<!-- Testimonial Owl Carousel section
================================================== -->
<div class="row" style="clear: both; margin-left: 0">
<a href="https://www.linkedin.com/in/christopherlgu/">
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-6 offset">
<div class="speakers-wrapper">
<img src="images/team/chris_gu.jpg" class="img-responsive img-circle" alt="speakers">
<div class="speakers-thumb">
<h3>Christopher Gu</h3>
<h6>Co-Director</h6>
</div>
</div>
</div>
</a>
<a href="https://www.linkedin.com/in/luismocampo/">
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-6 offset">
<div class="speakers-wrapper">
<img src="images/team/luis_ocampo.jpg" class="img-responsive img-circle" alt="speakers">
<div class="speakers-thumb">
<h3>Luis Ocampo</h3>
<h6>Co-Director</h6>
</div>
</div>
</div>
</a>
<a href="https://www.linkedin.com/in/dylan-burr-0842a414b/">
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-6 offset">
<div class="speakers-wrapper">
<img src="images/team/dylan_burr.jpg" class="img-responsive img-circle" alt="speakers">
<div class="speakers-thumb">
<h3>Dylan Burr</h3>
<h6>Web Designer</h6>
</div>
</div>
</div>
</a>
<a href="https://www.linkedin.com/in/nicolegoetz/">
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-6">
<div class="speakers-wrapper">
<img src="images/team/nicole_goetz.jpg" class="img-responsive img-circle" alt="speakers">
<div class="speakers-thumb">
<h3>Nicole Goetz</h3>
<h6>Advisor</h6>
</div>
</div>
</div>
</a>
</div>
<div class="row" style="margin-left: 0">
<a href="https://www.linkedin.com/in/allison-n-chan/">
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-6 offset">
<div class="speakers-wrapper">
<img src="images/team/allison_chan.jpg" class="img-responsive img-circle" alt="speakers">
<div class="speakers-thumb">
<h3>Allison Chan</h3>
<h6>Board Member</h6>
</div>
</div>
</div>
</a>
<a href="https://www.linkedin.com/in/jmalega/">
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-6 offset">
<div class="speakers-wrapper">
<img src="images/team/jose_alega.jpg" class="img-responsive img-circle" alt="speakers">
<div class="speakers-thumb">
<h3>Jose Alega</h3>
<h6>Board Member</h6>
</div>
</div>
</div>
</a>
<a href="https://www.linkedin.com/in/alan-truong-b5411814b/">
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-6 offset">
<div class="speakers-wrapper">
<img src="images/team/alan_truong.jpg" class="img-responsive img-circle" alt="speakers">
<div class="speakers-thumb">
<h3>Alan Troung</h3>
<h6>Board Member</h6>
</div>
</div>
</div>
</a>
<a href="http://linkedin.com/in/lanchauletran">
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-6">
<div class="speakers-wrapper">
<img src="images/team/Chau.jpg" class="img-responsive img-circle" alt="speakers">
<div class="speakers-thumb">
<h3>LanChau LeTran</h3>
<h6>Board Member</h6>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- =========================
FAQ SECTION
============================== -->
<section id="faq-title">
<div class="container">
<!-- Section title
================================================== -->
<div class="section-title">
<h2>Frequently Asked Questions.</h2>
</div>
</div>
</section>
<section id="faq" class="cd-section">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 panel-container">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
What happens at a hackathon?
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<p>We like to think of hackathons as “invention marathons.” You (the hacker) will spend 36 hours building projects (hacks) in teams of 1 - 4 people. Come with an idea, and we’ll provide everything you need to turn that idea into reality — hardware, mentors, food, you name it.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Is there a theme?
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body">
<p>PickHacks aims to bring a new and refreshing theme every year to attract a variety of students and projects. This year, our focus is athletics; from health technology to sports analytics, the possibilities are endless.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
What if I don’t know how to code?
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
<p>No need to worry! We’ll be running workshops to help beginners learn new technologies and get you started. We’ll also have mentors on hand to help you out in the process.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingFour">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
I don’t have a team or an idea. Can I still participate?
</a>
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFour">
<div class="panel-body">
<p>Of course! We have team building and design thinking workshops planned to help get your creative juices flowing.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingFive">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseFive" aria-expanded="false" aria-controls="collapseFive">
Do you have any rules?
</a>
</h4>
</div>
<div id="collapseFive" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFive">
<div class="panel-body">
<p>Yes: we follow the Major League Hacking <a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf">Code of Conduct.</a></p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingSix">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseSix" aria-expanded="false" aria-controls="collapseSix">
I'm under 18 years of age, can I attend?
</a>
</h4>
</div>
<div id="collapseSix" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingSix">
<div class="panel-body">
<p>If you’re enrolled in high school, we’d still love to have you! We’ll have forms closer to the event date that we’ll need you to fill out to make sure you’re all good to hack.</p>
</div>
</div>
</div>
</div>
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingSeven">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseSeven" aria-expanded="false" aria-controls="collapseSeven">
How can I get there?
</a>
</h4>
</div>
<div id="collapseSeven" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingSeven">
<div class="panel-body">
<p>If you’re around the Midwest area, we’re more than likely sending a bus to a campus near you; we’ll release schedules closer to the event. You’re also more than welcome to drive!</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingEight">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseEight" aria-expanded="false" aria-controls="collapseEight">
Is there travel reimbursement?
</a>
</h4>
</div>
<div id="collapseEight" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingEight">
<div class="panel-body">
<p>We'll be sending buses to the following universities: Mizzou, Truman, Purdue, SLU, UIUC, and WashU.<br />
If you do not attend or live near one of those schools, we will be evaluating reimbursement on a case by case basis. That being said, if you have any concerns or questions about travel, please email us at <a href="mailto:[email protected]">[email protected]!</a></p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingNine">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseNine" aria-expanded="false" aria-controls="collapseNine">
How much does it cost?
</a>
</h4>
</div>
<div id="collapseNine" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingNine">
<div class="panel-body">
<p>Zero. Zilch. Nada. Thanks to our generous sponsors, the entire event is free!
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTen">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTen" aria-expanded="false" aria-controls="collapseTen">
Will there be prizes?
</a>
</h4>
</div>
<div id="collapseTen" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTen">
<div class="panel-body">
<p>Of course! With over $10,000 in prizes, you'll have the opportunity to compete in a variety of challenges for a chance to win iPads, GoPros, DJI Drones, Xbox Ones, and much more. We'll also have prizes for various events throughout the weekend! You can view an up to date prize list on our <a href="https://pickhacks.devpost.com/">DevPost.</a></p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingEleven">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseEleven" aria-expanded="false" aria-controls="collapseEleven">
Where will I sleep?
</a>
</h4>
</div>
<div id="collapseEleven" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingEleven">
<div class="panel-body">
<p>We’ll have dedicated sleeping areas for hackers. There will be a limited supply of air mattresses available, but bring a sleeping bag if you can!</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwelve">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwelve" aria-expanded="false" aria-controls="collapseTwelve">
I can’t find my question here.
</a>
</h4>
</div>
<div id="collapseTwelve" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwelve">
<div class="panel-body">
<p>No problem! Feel free to send us a message at <a href="mailto:[email protected]">[email protected]</a>.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- =========================
SPONSORS SECTION
============================== -->
<section id="sponsors" class="cd-section">
<div class="container">
<div class="row">
<div class="section-title">
<h2>Our Sponsors</h2>
</div>
<div class="row">
<div class="col-md-12 col-sm-12" style="padding-left: 0">
<div>
<h4 style="text-transform: uppercase; margin-bottom: 4%">Interested in sponsoring? Drop us a line at <a href="mailto:[email protected]">[email protected]!</a></h4>
</div>
</div>
</div>
<div class="industry">
<a href="https://jobs.panerabread.com/" target="_blank">
<div class="image-container panera">
<img src="images/panera-logo.svg" />
</div>
</a>
<a href="https://jobs.centene.com/" target="_blank">
<div class="image-container centene">
<img src="images/centene.png" />
</div>