-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1095 lines (947 loc) · 51 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
<!--
,╓╖@╢╢╢╢╢@╖╖,
╓╖╢╜╙ ╙╙╢╖
╓╢╜ ]▒ ,╖@.
╢╢ ,╖▒╜ ,╢╢▒[ ╓╢▒[ ╖╢║▒
║╢ ` ╓▒`║╢ ,╢╜║▒ ╓╢╜╓▒`
▒⌐ ╢╜,╢╜ ╓▒╜╓▒` ╓▒╜║╢`
▒[ ╓╢╜╖╢` ╓▒`╢╢ ╓▒`╢╢
║▒ ╓▒▒╢╜ ╓▒ ╢╜ ╓▒╖╢╜
╢╖ ╓▒▒╜ ╓▒╓▒╜ ,▒▒▒`
╢╖ ╓▒╜ ╓▒▒╢` ╢▒╨
║╢ ╖╢▒` ╖╢╜╢┐ ▒▒╜ ╖▒╜
╙▒╖ ╓╢╨║▒,╖╢╢ ╓╢╜ ╓▒` ,╢╢` ╓╢╢▒
`╢╥ ╓╢╢╜ ╓▒╢╢`.▒ ╢╜╓╢╜ ,╥▒▒` ,╖╢╜ ]▒ ╓╢╨
╙╢ ╓╖╢╜╙ ║▒▒╜ ╢╢ ]▒▒╜ ╓╢╨` ▒╖ ,╓╢╨` ╙╢╖╖╢╜
,╓╖▒▒╜ ║▒╣╜ ▒╖╓╖╢╜╙╢H▓╨╙ ╙╜╜║╦@@Ñ ▓` @Ñ ,@Ñ▓N
╓╖╢╨╜╙ ╙▒ ╓▒▒╢ ,"╙` ]╢m g▓╜ ╢ g▓` ╢
╓╖╢╜╙ ╢╢ ╞╢ ╢[ ▓▓╢ ▓╩ ╢ ╔▓╜ ╚▓
╓╥╢╜ ]▒ ]╢ ╢[ ╔╣ ▓@ ╫▓ ╢╢╜ ╙╣╖
╢╨` ║▒ ]╢ ╢[ ╣C ╢ ╫▓ ╢▓▓, ╫@
╢╢ ╓▒╜ ]╢▓▓▓▓╢[ ╟▓ ╫▓ ▓╕ ╢ ▓@ ╚▓
╢╢ ,╖╢` ]╢ ╢[ ╢▓ÑÑÑ▓╢ ╚▓, ╢ ▓@ ╔▓
╙╢╖╖, ,╓╓╖╢╜╙ ]╢ ╢[ ╫▓ ╟▓ ╙╩▓@@ ╢ ╙▓W ╩▓▓▓▓╝
╙╙╙╜╜╜╙╙`
From Miami, with <3
-->
<!DOCTYPE html>
<html lang="en">
<!-- Mirrored from shell18.mrmcpowned.com/ by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 06 Aug 2019 05:55:20 GMT -->
<!-- Added by HTTrack -->
<meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8">
<title>ShellHacks - Florida International University's Fall Hackathon</title>
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/styleb058.css?ver=9b8e5b2">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="assets/imgs/favicon.png">
<link rel="apple-touch-icon" href="assets/imgs/favicon.png">
<script src="../ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link href="../cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css" rel="stylesheet" />
<script src="../cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.min.js"></script>
<!--BEGIN Schema tags-->
<meta itemprop="name" content="ShellHacks">
<meta itemprop="description"
content="A Miami-based hackathon run by FIU's UPE Chapter and open to all hackers, both local and abroad!">
<meta itemprop="image" content="https://2017.shellhacks.net/images/shellhacks-opengraph.png">
<!--END Schema tags-->
<!--BEGIN Opengraph-->
<meta property="og:site_name" content="ShellHacks">
<meta property="og:url" content="https://2017.shellhacks.net">
<meta property="og:description"
content="Learn, Create, and Share at ShellHacks, Florida International University's Fall Hackathon!">
<meta property="og:type" content="website">
<meta property="og:image" content="https://2017.shellhacks.net/assets/imgs/shellhacks-opengraph.png">
<meta property="og:image:width" content="729">
<meta property="og:image:height" content="410">
<!--END Opengraph-->
<!--BEGIN Twitter Card-->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@Shell_Hacks">
<meta name="twitter:title" content="ShellHacks">
<meta name="twitter:description"
content="Learn, Create, and Share at ShellHacks, Florida International University's Fall Hackathon!">
<meta name="twitter:image" content="https://2017.shellhacks.net/assets/imgs/shellhacks-opengraph.png">
<!--END Twitter Card-->
<script async="" src="../www.google-analytics.com/analytics.js"></script>
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Event",
"name": "ShellHacks",
"description": "Learn, Create, and Share at ShellHacks, Florida International University's Fall Hackathon!",
"startDate": "2017-09-29",
"endDate": "2017-10-01",
"location": {
"@type": "Place",
"name": "Florida International University",
"address": {
"streetAddress": "11200 SW 8th Street, PG6",
"addressLocality": "Miami",
"addressRegion": "Florida"
}
},
"image": "https://2017.shellhacks.net/images/shellhacks-opengraph.png"
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "WebSite",
"name": "ShellHacks",
"url": "https://2017.shellhacks.net"
}
</script>
</head>
<body>
<header class="site header">
<a class="menu button" href="#menu">
<i class="material-icons">menu</i>
<span class="title">Menu</span>
</a>
<nav class="main menu" id="menu">
<ul>
<li><a class="button" href="index.html">Home</a></li>
<li><a class="button" href="index.html#events">Schedule</a></li>
<li><a class="button" href="index.html#sponsors">Sponsors</a></li>
<li><a class="button" href="index.html#faq">FAQ</a></li>
<li><a class="button logout" target="_blank" href="https://facebook.com/upefiu">Facebook</a></li>
<li><a class="button logout" target="_blank" href="https://instagram.com/upefiu">Instagram</a></li>
</ul>
</nav>
<a href="#_" class="shade"></a>
</header>
<section class="hero">
<div class="left">
</div>
<div class="right">
<img class="logo" src="assets/imgs/logo-final.svg" alt="ShellHacks Logo">
<h3 class="dates">Sept 29 — Oct 1 | Miami, FL</h3>
</div>
</section>
<section class="clamped beach" id="about">
<div class="content">
<article>
<h2>What is ShellHacks?</h2>
<p>ShellHacks is an upcoming 36-hour hackathon at Florida International University (FIU), taking place
the weekend of Friday, September 29 to Sunday, October 1st.</p>
<p>Our mission is to provide students with the opportunity to learn about new technologies, create
innovative projects, and share their work with the community!</p>
</article>
</div>
</section>
<section class="clamped events" id="events">
<div class="content">
<h1>Schedule</h1>
<section class="day">
<h3>Friday September 29th, 2017</h3>
<a href="#event-1" class="event modal " id="event-1">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">5:00pm</time>
—
<time class="end">7:00pm</time>
</div>
<span class="room">SIPA 125 - (Ft. Lauderdale)</span>
</div>
<h4 class="title">Hacker Check-In</h4>
</header>
</article>
</a>
<a href="#event-2" class="event modal " id="event-2">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">6:00pm</time>
—
<time class="end">7:00pm</time>
</div>
<span class="room">SIPA 125 - (Ft. Lauderdale)</span>
</div>
<h4 class="title">Walk In Check-In</h4>
</header>
</article>
</a>
<a href="#event-3" class="event modal " id="event-3">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">7:15pm</time>
—
<time class="end">8:15pm</time>
</div>
<span class="room">SIPA 125 - (Ft. Lauderdale)</span>
</div>
<h4 class="title">Opening Ceremony</h4>
</header>
</article>
</a>
<a href="#event-4" class="event modal " id="event-4">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">9:30pm</time>
—
<time class="end">10:30pm</time>
</div>
<span class="room">PG6 110A/Half Moon - (Sandbar)</span>
</div>
<h4 class="title">Dinner</h4>
</header>
</article>
</a>
<a href="#event-5" class="event modal " id="event-5">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">10:30pm</time>
—
<time class="end">11:30pm</time>
</div>
<span class="room">PG6 100 Lobby - (South Beach)</span>
</div>
<h4 class="title">Sponsor Fair</h4>
</header>
<p class="description">Get to know some of the companies that helped make this event a
possibility!</p>
</article>
</a>
<a href="#event-6" class="event modal " id="event-6">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">10:30pm</time>
—
<time class="end">11:00pm</time>
</div>
<span class="room">PG6 112 - (Crandon Beach)</span>
</div>
<h4 class="title">Team Building</h4>
</header>
</article>
</a>
<a href="#event-7" class="event modal " id="event-7">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">11:00pm</time>
—
<time class="end">12:00am Sat</time>
</div>
<span class="room">PG6 105 - (Brickell)</span>
</div>
<h4 class="title">Intro to Git Workshop</h4>
</header>
</article>
</a>
</section>
<section class="day">
<h3>Saturday September 30th, 2017</h3>
<a href="#event-22" class="event modal " id="event-22">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">12:00am</time>
—
<time class="end">1:00am</time>
</div>
<span class="room">PG6 105 - (Brickell)</span>
</div>
<h4 class="title">HTML/CSS Workshop</h4>
</header>
</article>
</a>
<a href="#event-8" class="event modal " id="event-8">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">1:00am</time>
—
<time class="end">1:30am</time>
</div>
<span class="room">PG6 110A/Half Moon - (Sandbar)</span>
</div>
<h4 class="title">Midnight++ Snack</h4>
</header>
</article>
</a>
<a href="#event-21" class="event modal " id="event-21">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">7:00am</time>
—
<time class="end">7:45am</time>
</div>
<span class="room">PG6 112 - (Crandon Beach)</span>
</div>
<h4 class="title">Morning Yoga</h4>
</header>
</article>
</a>
<a href="#event-9" class="event modal " id="event-9">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">8:00am</time>
—
<time class="end">9:00am</time>
</div>
<span class="room">PG6 110A/Half Moon - (Sandbar)</span>
</div>
<h4 class="title">Breakfast</h4>
</header>
</article>
</a>
<a href="#event-25" class="event modal " id="event-25">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">10:30am</time>
—
<time class="end">12:30pm</time>
</div>
<span class="room">PG6 105 - (Brickell)</span>
</div>
<h4 class="title">ReactJS Workshop</h4>
</header>
</article>
</a>
<a href="#event-10" class="event modal " id="event-10">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">12:00pm</time>
—
<time class="end">1:00pm</time>
</div>
<span class="room">PG6 110A/Half Moon - (Sandbar)</span>
</div>
<h4 class="title">Lunch</h4>
</header>
</article>
</a>
<a href="#event-28" class="event modal " id="event-28">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">1:15pm</time>
—
<time class="end">2:00pm</time>
</div>
<span class="room">PG6 105 - (Brickell)</span>
</div>
<h4 class="title">Security with Cisco</h4>
</header>
</article>
</a>
<a href="#event-29" class="event modal " id="event-29">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">2:00pm</time>
—
<time class="end">2:45pm</time>
</div>
<span class="room">PG6 112 - (Crandon Beach)</span>
</div>
<h4 class="title">Getting to know Microsoft</h4>
</header>
</article>
</a>
<a href="#event-23" class="event modal " id="event-23">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">3:15pm</time>
—
<time class="end">4:15pm</time>
</div>
<span class="room">PG6 112 - (Crandon Beach)</span>
</div>
<h4 class="title">Spotify Tech Talk Panel</h4>
</header>
</article>
</a>
<a href="#event-11" class="event modal " id="event-11">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">3:45pm</time>
—
<time class="end">4:15pm</time>
</div>
<span class="room">PG6 110A/Half Moon - (Sandbar)</span>
</div>
<h4 class="title">Afternoon Snack</h4>
</header>
</article>
</a>
<a href="#event-30" class="event modal " id="event-30">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">4:30pm</time>
—
<time class="end">5:30pm</time>
</div>
<span class="room">PG6 112 - (Crandon Beach)</span>
</div>
<h4 class="title">AI Workshop</h4>
</header>
</article>
</a>
<a href="#event-31" class="event modal " id="event-31">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">5:30pm</time>
—
<time class="end">6:30pm</time>
</div>
<span class="room">PG6 112 - (Crandon Beach)</span>
</div>
<h4 class="title">T-Shirt Giveaway</h4>
</header>
</article>
</a>
<a href="#event-32" class="event modal " id="event-32">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">6:30pm</time>
—
<time class="end">7:15pm</time>
</div>
<span class="room">PG6 105 - (Brickell)</span>
</div>
<h4 class="title">GE IOT Workshop</h4>
</header>
</article>
</a>
<a href="#event-33" class="event modal " id="event-33">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">7:15pm</time>
—
<time class="end">8:00pm</time>
</div>
<span class="room">PG6 112 - (Crandon Beach)</span>
</div>
<h4 class="title">Akamai Workshop</h4>
</header>
</article>
</a>
<a href="#event-12" class="event modal " id="event-12">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">8:00pm</time>
—
<time class="end">9:00pm</time>
</div>
<span class="room">PG6 110A/Half Moon - (Sandbar)</span>
</div>
<h4 class="title">Dinner</h4>
</header>
</article>
</a>
<a href="#event-34" class="event modal " id="event-34">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">9:00pm</time>
—
<time class="end">10:00pm</time>
</div>
<span class="room">PG6 112 - (Crandon Beach)</span>
</div>
<h4 class="title">MLH Cup Stacking</h4>
</header>
</article>
</a>
<a href="#event-35" class="event modal " id="event-35">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">10:00pm</time>
—
<time class="end">11:00pm</time>
</div>
<span class="room">PG6 105 - (Brickell)</span>
</div>
<h4 class="title">Machine Learning Workshop</h4>
</header>
</article>
</a>
<a href="#event-36" class="event modal " id="event-36">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">11:00pm</time>
—
<time class="end">11:45pm</time>
</div>
<span class="room">PG6 112 - (Crandon Beach)</span>
</div>
<h4 class="title">AutoNation "Code in the Dark"</h4>
</header>
</article>
</a>
<a href="#event-37" class="event modal " id="event-37">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">11:45pm</time>
—
<time class="end">12:15am Sun</time>
</div>
<span class="room">PG6 105 - (Brickell)</span>
</div>
<h4 class="title">StartUP FIU Elevator Pitch Workshop</h4>
</header>
</article>
</a>
</section>
<section class="day">
<h3>Sunday October 1st, 2017</h3>
<a href="#event-38" class="event modal " id="event-38">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">12:00am</time>
—
<time class="end">2:00am</time>
</div>
<span class="room">PG6 112 - (Crandon Beach)</span>
</div>
<h4 class="title">Nightclub</h4>
</header>
</article>
</a>
<a href="#event-14" class="event modal " id="event-14">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">12:30am</time>
—
<time class="end">1:00am</time>
</div>
<span class="room">PG6 105 - (Brickell)</span>
</div>
<h4 class="title">Devpost Workshop</h4>
</header>
<p class="description">If it's your first time at a hackathon, then that means it's
most likely your first time encountering Devpost. Devpost is a tool used by hackathons to
catalog hacks, keep track of any challenges a hack is competing for and providing a central
way for hacks to be submitted for exposition at an event. First-time hackers are encouraged
to take advantage of this workshop to sharpen their Devpost skills!</p>
</article>
</a>
<a href="#event-13" class="event modal " id="event-13">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">1:00am</time>
—
<time class="end">1:30am</time>
</div>
<span class="room">PG6 110A/Half Moon - (Sandbar)</span>
</div>
<h4 class="title">Midnight++ Snack</h4>
</header>
</article>
</a>
<a href="#event-39" class="event modal " id="event-39">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">1:30am</time>
—
<time class="end">3:00am</time>
</div>
<span class="room">PG6 112 - (Crandon Beach)</span>
</div>
<h4 class="title">Mechanical Keyboard Meetup</h4>
</header>
</article>
</a>
<a href="#event-15" class="event modal " id="event-15">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">8:00am</time>
—
<time class="end">9:00am</time>
</div>
<span class="room">PG6 110A/Half Moon - (Sandbar)</span>
</div>
<h4 class="title">Breakfast</h4>
</header>
</article>
</a>
<a href="#event-16" class="event modal " id="event-16">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">10:30am</time>
—
<time class="end">12:30pm</time>
</div>
<span class="room">PG6 116 - (Miami)</span>
</div>
<h4 class="title">Hackathon Expo</h4>
</header>
</article>
</a>
<a href="#event-17" class="event modal " id="event-17">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">12:30pm</time>
—
<time class="end">1:00pm</time>
</div>
<span class="room">PG6 101 - (City Hall)</span>
</div>
<h4 class="title">Judge Deliberations</h4>
</header>
</article>
</a>
<a href="#event-18" class="event modal " id="event-18">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">1:00pm</time>
—
<time class="end">2:00pm</time>
</div>
<span class="room">SIPA 125 - (Ft. Lauderdale)</span>
</div>
<h4 class="title">Closing Ceremony</h4>
</header>
</article>
</a>
<a href="#event-19" class="event modal " id="event-19">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">2:00pm</time>
—
<time class="end">2:30pm</time>
</div>
<span class="room">SIPA 125 - (Ft. Lauderdale)</span>
</div>
<h4 class="title">Departing Snack</h4>
</header>
</article>
</a>
<a href="#event-20" class="event modal " id="event-20">
<article>
<header>
<div class="location">
<div class="times">
<time class="start">2:30pm</time>
—
<time class="end">3:30pm</time>
</div>
<span class="room">SIPA 125 - (Ft. Lauderdale)</span>
</div>
<h4 class="title">Buses Depart</h4>
</header>
</article>
</a>
</section>
</div>
</section>
<section class="clamped sponsors" id="sponsors">
<div class="content">
<section class="sponsor-group">
<h2>Organizers</h2>
<a target="_blank" href="http://upefiu.io/"><img src="assets/imgs/logos/partners/UPE.png"
style="max-width: 200px; max-height: 200px;" alt="Upsilon Pi Epsilon"
title="Upsilon Pi Epsilon"></a>
</section>
<h1>Sponsors</h1>
<section class="sponsor-group conch">
<a target="_blank" href="https://spotify.com/"><img src="assets/imgs/logos/conch/spotify.svg"
alt="Spotify" title="Spotify"></a>
</section>
<section class="sponsor-group cone">
<a target="_blank" href="http://www.geappliances.com/"><img src="assets/imgs/logos/cone/ge.svg"
alt="General Electric" title="General Electric"></a>
<a target="_blank" href="http://firstbuild.com/"><img src="assets/imgs/logos/cone/1B.png"
style="transform: scale(.70)" alt="FirstBuild" title="FirstBuild"></a>
<a target="_blank" href="https://cisco.com/"><img src="assets/imgs/logos/cone/cisco.svg" alt="Cisco"
title="Cisco"></a>
<a target="_blank" href="https://akamai.com/"><img src="assets/imgs/logos/cone/akamai.svg" alt="Akamai"
title="Akamai"></a>
<a target="_blank" href="https://autonation.com/"><img src="assets/imgs/logos/cone/autonation.svg"
alt="AutoNation" title="AutoNation"></a>
<a target="_blank" href="https://amazon.com/"><img src="assets/imgs/logos/scallop/amazon.svg"
style="filter: saturate(0)" alt="Amazon" title="Amazon"></a>
<a target="_blank" href="http://ironhack.com/"><img src="assets/imgs/logos/partners/ironhack.svg"
alt="Ironhack" title="Ironhack"></a>
<a target="_blank" href="http://wyncode.co/"><img src="assets/imgs/logos/partners/wyncode.svg"
alt="Wyncode" title="Wyncode"></a>
</section>
<section class="sponsor-group sand-dollar">
<a target="_blank" href="https://facebook.com/"><img src="assets/imgs/logos/sand-dollar/facebook.svg"
alt="Facebook" title="Facebook"></a>
<a target="_blank" href="https://microsoft.com/university"><img
src="assets/imgs/logos/sand-dollar/microsoft.svg" alt="Microsoft" title="Microsoft"></a>
<a target="_blank" href="https://intel.com/"><img src="assets/imgs/logos/sand-dollar/intel.svg"
alt="Intel Corp." title="Intel Corp."></a>
<a target="_blank" href="https://github.com/"><img src="assets/imgs/logos/sand-dollar/github-logo.png"
style="filter: invert(1)" alt="GitHub" title="GitHub"></a>
<a target="_blank" href="https://scis.fiu.edu/"><img src="assets/imgs/logos/partners/SCIS.png"
alt="FIU School of Computing and Information Sciences"
title="FIU School of Computing and Information Sciences"></a>
<a target="_blank" href="https://it.fiu.edu/"><img src="assets/imgs/logos/sand-dollar/fiu-doit.svg"
style="transform: scale(.6)" alt="FIU Division of Information Technology"
title="FIU Division of Information Technology"></a>
<a target="_blank" href="http://upefiu.io/"><img src="assets/imgs/logos/sand-dollar/UPE-NATIONAL.png"
style="max-width: 200px; max-height: 200px;" alt="Upsilon Pi Epsilon National"
title="Upsilon Pi Epsilon National"></a>
<a target="_blank" href="http://amadeus.com/"><img src="assets/imgs/logos/sand-dollar/amadeus.svg"
alt="Amadeus" title="Amadeus"></a>
<a target="_blank" href="http://lifewallet.com/"><img src="assets/imgs/logos/sand-dollar/lifewallet.svg"
alt="Lifewallet" title="Lifewallet"></a>
<a target="_blank" href="http://twilio.com/"><img src="assets/imgs/logos/sand-dollar/twilio.svg"
alt="Twilio" title="Twilio"></a>
<a target="_blank" href="https://www.stickermule.com/uses/laptop-stickers"><img
src="assets/imgs/logos/sand-dollar/stickermule.svg" style="max-width: 250px;" alt="StickerMule"
title="StickerMule"></a>
<a target="_blank" href="https://ultrapress.com/"><img
src="assets/imgs/logos/sand-dollar/ultrapress.svg" alt="UltraPress" title="UltraPress"></a>
<a target="_blank" href="https://jetbrains.com/"><img src="assets/imgs/logos/sand-dollar/jetbrains.png"
alt="JetBrains" title="JetBrains"></a>
</section>
<section class="sponsor-group partner">
<h3>Partners</h3>
<a target="_blank" href="https://mlh.io/"><img src="assets/imgs/logos/partners/MLH.png"
alt="Major League Hacking" title="Major League Hacking"></a>
<a target="_blank" href="https://cec.fiu.edu/"><img style="transform: scale(0.6)"
src="assets/imgs/logos/partners/CEC.png" alt="FIU College of Engineering and Computing"
title="FIU College of Engineering and Computing"></a>
<a target="_blank" href="http://startup.fiu.edu/"><img src="assets/imgs/logos/partners/StartUPFIU.png"
alt="StartUP FIU" title="StartUP FIU"></a>
<a target="_blank" href="http://wicsatfiu.weebly.com/"><img src="assets/imgs/logos/partners/WiCS.png"
alt="Women in Computer Science" title="Women in Computer Science"></a>
<a target="_blank" href="https://ieee.fiu.edu/"><img src="assets/imgs/logos/partners/IEEE.png"
alt="Institute of Electrical and Electronics Engineers"
title="Institute of Electrical and Electronics Engineers"></a>
<a target="_blank" href="https://thetatau.fiu.edu/"><img src="assets/imgs/logos/partners/OT.png"
alt="Theta Tau" title="Theta Tau"></a>
<a target="_blank" href="https://swe.fiu.edu/"><img src="assets/imgs/logos/partners/SWE.png"
alt="Society of Women Engineers" title="Society of Women Engineers"></a>
<a target="_blank" href="https://innovating.miami/"><img src="assets/imgs/logos/partners/MIA.png"
alt="Miami Innovators Association" title="Miami Innovators Association"></a>
<a target="_blank" href="https://hkn.fiu.edu/"><img src="assets/imgs/logos/partners/HKN.png"
alt="Eta Kappa Nu" title="Eta Kappa Nu"></a>
<a target="_blank" href="https://asi.fiu.edu/"><img src="assets/imgs/logos/partners/ASI.png"
alt="Academic Success Initiative" title="Academic Success Initiative"></a>
<a target="_blank" href="https://tbp.fiu.edu/"><img src="assets/imgs/logos/partners/TBP.png"
alt="Tau Beta Pi" title="Tau Beta Pi"></a>
<a target="_blank" href="https://shpe.fiu.edu/"><img src="assets/imgs/logos/partners/SHPE.png"
alt="Society for Hispanic Professional Engineers"
title="Society for Hispanic Professional Engineers"></a>
<a target="_blank" href="http://acm.cs.fiu.edu/"><img src="assets/imgs/logos/partners/ACM.png"
alt="ACM at FIU" title="ACM at FIU"></a>
<a target="_blank" href="http://floridahackers.com/"><img src="assets/imgs/logos/partners/FH.png"
style="filter: saturate(0)" alt="Florida Hackers" title="Florida Hackers"></a>
<a target="_blank" href="http://aisfiu.com/"><img src="assets/imgs/logos/partners/AIS.svg"
alt="AIS at FIU" title="AIS at FIU"></a>
</section>
</div>
</section>
<section class="clamped faq" id="faq">
<div class="content">
<h1>FAQ - Frequently Asked Questions</h1>
<article class="entry">
<h2>What is a hackathon?</h2>
<p>A hackathon is an event where students of all academic backgrounds and skill levels come together to
solve problems by using technology.</p>
<p>Students form groups and create projects that tackle these challenges, all while attending workshops
to
develop new skills, receiving mentorship from industry leaders, and networking with recruiters from
top
companies.</p>
</article>
<article class="entry">
<h2>Who's organizing ShellHacks?</h2>
<p>ShellHacks is organized by Upsilon Pi Epsilon (UPE), the Honor Society for the Computing and
Information
Disciplines, with support from companies, academic programs, and student organizations.</p>
</article>
<article class="entry">
<h2>Is there a theme?</h2>
<p>Our theme focuses on diversity, and not just from an academic standpoint. Miami is a cultural melting
pot full of people from all walks of life, with
<a href="http://www.fiu.edu/about-us/" target="_blank">FIU being no exception</a>.</p>
</article>
<article class="entry">
<h2>Sounds cool. So, can I come?</h2>
<p>If you're a current college/university student or a recent graduate (up to 1 year), you're more than
welcome to attend! The event is open to students of all academic backgrounds and skill levels, so
whether you’re an aspiring artist or an expert engineer, there’s a place for you at ShellHacks.</p>
</article>
<article class="entry">
<h2>Wait, I don't know how to code!</h2>
<p>Don't worry, one of the core principles of a hackathon is learning! There'll be several workshops
throughout the event, ranging from beginner to advanced, so there's always something new to learn.
</p>
</article>
<article class="entry">
<h2>Will there be food?</h2>
<p>There will be food. Lots of food. LOTS. Miami's food scene is diverse, so there’s always something
for
everyone. We’ll do our best to accommodate for any dietary restriction as well, just make sure to
let us
know come registration time.</p>
<p>There’s also coffee, energy drinks, and tea if you want to keep it classy.</p>
</article>
<article class="entry">
<h2>Do I need to already have a group?</h2>
<p>Nope. You can go solo, come with your own team (no more than 4), or participate in a group mixer
we'll
have before hacking begins to find a group.</p>
</article>
<article class="entry">
<h2>This sounds expensive. Can I afford it?</h2>
<p>Can you afford FREE?! The event is entirely free for attendees, so the only thing you need to worry
about
is learning, developing cool projects, and enjoying the event!</p>
</article>
<article class="entry">
<h2>Will there be travel reimbursement?</h2>
<p>As much as we'd love to bring everyone and make this event as accessible as possible, sadly we can't
offer financial reimbursement for travel this year. We will be sending a coach bus to select schools
in the Florida
area to get eager hackers to FIU, though!</p>
</article>
<article class="entry">
<h2>Alright, I'm hyped for ShellHacks! How do I register?</h2>