This repository was archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1035 lines (954 loc) · 42.9 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 xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="http://ogp.me/ns/fb#"
lang="en">
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta content="IE=edge, chrome=1" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<meta name="description" content="HackOHI/O 2016 - The Ohio State Hackathon">
<meta name="keywords" content="Hackathon, Hack, OSU, OHIO, 2016">
<meta name="author" content="OHI/O">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta property="og:url" content="http://hack.osu.edu/2016/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="HackOHI/O 2016" />
<meta property="og:description" content="Ohio State's annual hackathon, November 19-20, 2016 at the Ohio Union." />
<meta property="og:image" content="http://hack.osu.edu/2016/images/cover.jpg" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@hackohio">
<meta name="twitter:creator" content="@hackohio">
<meta name="twitter:title" content="HackOHI/O 2016">
<meta name="twitter:description" content="Ohio State's annual hackathon, November 19-20, 2016 at the Ohio Union.">
<meta name="twitter:image" content="http://hack.osu.edu/2016/images/cover.jpg">
<title>HackOHI/O 2016</title>
<link rel="icon" href="images/favicon.ico">
<!-- NOTE: Do *not* use the minified version of flipclock CSS, it breaks the animation -->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/flipclock/0.7.8/flipclock.css">
<link rel="stylesheet" type="text/css" href="style/css/main.css">
</head>
<body>
<div id="content">
<canvas id="headerCanvas">
<!-- Height of canvas defined in trianglify.js -->
</canvas>
<div class="canvasContent">
<img id="textLogo" class="grow" src="images/layout/HackOHIO-logo-with-date.png" alt="HackOHI/O logo" width="400">
<br>
<h1>
Let's build something<br>
<span id="caption">amazing</span><span id="cursor">|</span>
</h1>
<h2>
Ohio Union, Columbus, Ohio <a href="https://www.google.com/maps/place/Ohio+Union,+Columbus,+OH+43210/@39.998361,-83.0099487,17z/data=!3m1!4b1!4m2!3m1!1s0x88388eb8e1ad7407:0x6eb50adaef6f6294"><i class="fa fa-map-marker fa-1x"></i></a>
<br>
November 19 - 20, 2016
</h2>
<br>
<a href="live" class="button" style="width: 300px;">LIVE SITE</a>
<br><br>
<a href="https://www.eventbrite.com/e/hackohio-2016-showcase-tickets-28820776719" class="button" style="width: 300px;">Attend Showcase</a>
<br>
<br>
<br>
<div class="social">
<a class="social-media-image" href="https://www.facebook.com/hackohio"><i class="fa fa-facebook fa-3x"></i></a>
<a class="social-media-image" href="https://twitter.com/hackohio"><i class="fa fa-twitter fa-3x"></i></a>
<a class="social-media-image" href="https://www.instagram.com/hackohio/"><i class="fa fa-instagram fa-3x"></i></a>
<a class="social-media-image" href="https://www.youtube.com/channel/UCJJzEGEjQrpVTY3zEQS0BpA"><i class="fa fa-youtube fa-3x"></i></a>
<a class="social-media-image" href="https://medium.com/@hackohio"><i class="fa fa-medium fa-3x"></i></a>
</div>
<br><br>
<hr style="width:200px">
<br>
<a href="https://aws.amazon.com/education/awseducate/"><img class="grow" src="images/sponsors/powered-by-aws.png" alt="HackOHI/O 2016: Powered by Amazon Web Services." width="200"></a>
</div>
<div class="bg-red-alt txt-white height-padding">
<a class="txt-white nav-link txt-white" href="#about">About</a>
<a class="txt-white nav-link txt-white" href="#stats">Stats</a>
<a class="txt-white nav-link txt-white" href="#events">Events</a>
<a class="txt-white nav-link txt-white" href="#prizes">Prizes</a>
<a class="txt-white nav-link txt-white" href="#schedule">Schedule</a>
<a class="txt-white nav-link txt-white" href="#faq">FAQs</a>
<a class="txt-white nav-link txt-white" href="#sponsors">Sponsors</a>
<a class="txt-white nav-link txt-white" href="http://go.osu.edu/mentorHackOHIO">Mentor</a>
</div>
<div style="clear: both;"></div>
<div id="triangle-header"></div>
<div class="innerContent center">
<a name="about"></a>
<br><br>
<h1>Welcome to Columbus</h1>
<hr>
<p>
On November 19<sup>th</sup>, join us at HackOHI/O—the Ohio State University's largest hackathon—for a weekend of building and creating real projects with awesome people.
Over 700 undergraduate and graduate students will design, build, and demonstrate projects to a live audience of students, faculty, and representatives from tech companies.
HackOHI/O is put on by <a class="txt-red" href="http://hack.osu.edu/">OHI/O</a>, a student-led organization at Ohio State that aims to foster a tech culture at our university.
<br>
</p>
<div id="scroller-div" class="table center">
<br>
<ul id="scroller">
<li><a href="images/slideshow/1.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/1sm.jpg" alt="Slideshow image 1."></a></li>
<li><a href="images/slideshow/2.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/2sm.jpg" alt="Slideshow image 2."></a></li>
<li><a href="images/slideshow/3.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/3sm.jpg" alt="Slideshow image 3."></a></li>
<li><a href="images/slideshow/4.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/4sm.jpg" alt="Slideshow image 4."></a></li>
<li><a href="images/slideshow/5.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/5sm.jpg" alt="Slideshow image 5."></a></li>
<li><a href="images/slideshow/6.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/6sm.jpg" alt="Slideshow image 6."></a></li>
<li><a href="images/slideshow/7.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/7sm.jpg" alt="Slideshow image 7."></a></li>
<li><a href="images/slideshow/8.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/8sm.jpg" alt="Slideshow image 8."></a></li>
<li><a href="images/slideshow/9.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/9sm.jpg" alt="Slideshow image 9."></a></li>
<li><a href="images/slideshow/10.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/10sm.jpg" alt="Slideshow image 10."></a></li>
<li><a href="images/slideshow/11.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/11sm.jpg" alt="Slideshow image 11."></a></li>
<li><a href="images/slideshow/12.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/12sm.jpg" alt="Slideshow image 12."></a></li>
<li><a href="images/slideshow/13.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/13sm.jpg" alt="Slideshow image 13."></a></li>
<li><a href="images/slideshow/14.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/14sm.jpg" alt="Slideshow image 14."></a></li>
<li><a href="images/slideshow/15.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/15sm.jpg" alt="Slideshow image 15."></a></li>
<li><a href="images/slideshow/16.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/16sm.jpg" alt="Slideshow image 16."></a></li>
<li><a href="images/slideshow/17.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/17sm.jpg" alt="Slideshow image 17."></a></li>
<li><a href="images/slideshow/18.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/18sm.jpg" alt="Slideshow image 18."></a></li>
<li><a href="images/slideshow/19.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/19sm.jpg" alt="Slideshow image 19."></a></li>
<li><a href="images/slideshow/20.jpg" target="_blank"><img class="slideshow-img" src="images/slideshow/20sm.jpg" alt="Slideshow image 20."></a></li>
</ul>
</div>
<p>
<br><br>
</p>
<div class="section grp">
<div class="col third">
<i class="grow fa fa-users fa-5x"></i>
<br>
<h2>Meet great people.</h2>
</div>
<div class="col third">
<i class="grow fa fa-pencil-square-o fa-5x"></i>
<br>
<h2>Learn something new.</h2>
</div>
<div class="col third">
<i class="grow fa fa-rocket fa-5x"></i>
<br>
<h2>Build something amazing.</h2>
</div>
</div>
<p>
Meet other passionate, fun and creative students from OSU and universities across the nation.
Our industry partners are also sending professional developers, designers, marketers, and hustlers to provide mentorship.
</p>
<div class="video">
<iframe src="https://www.youtube.com/embed/KSEgYQRVuG8?rel=0&controls=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
</div>
<div class="clear"></div>
<a name="stats"></a>
<h1>Stats</h1>
<hr>
</div>
<div class="full-width bg-red">
<a name="stats"></a>
<div class="section grp">
<div class="col third">
<div class="grow bigText txt-white">
24
</div>
<div>
<h1 class="compress txt-white">Hours</h1>
</div>
</div>
<div class="col third">
<div class="grow bigText txt-white">
700+
</div>
<div>
<h1 class="compress txt-white">Hackers</h1>
</div>
</div>
<div class="col third">
<div class="grow bigText txt-white">
40+
</div>
<div>
<h1 class="compress txt-white">Schools Represented</h1>
</div>
</div>
</div>
<div class="section grp">
<div class="col third">
<div class="grow bigText txt-white">
100+
</div>
<div>
<h1 class="compress txt-white">Judges & Mentors</h1>
</div>
</div>
<div class="col third">
<div class="grow bigText txt-white">
$8k+
</div>
<div>
<h1 class="compress txt-white">Worth of Prizes</h1>
</div>
</div>
<div class="col third">
<div class="grow bigText txt-white">
17k+
</div>
<div>
<h1 class="compress txt-white">Sq. Ft. of Space</h1>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<div class="innerContent center">
<div class="clear"></div>
<a name="events"></a>
<h1>Pre-Hype Events</h1>
<hr>
<p>
OHI/O, our partnering student organizations, and our sponsors are hosting a series of great events leading up to the hackathon.
These events include tech talks, workshops, and social gatherings that help students prepare for the hackathon, gather ideas, and build teams!
</p>
<br>
<div class="section grp">
<div class= "col half">
<p class="bold txt-red">9/21/2016</p>
<h2 class="low-bottom-margin low-top-margin">Microsoft Coding Competition</h2>
<p>
6:00 - 8:00 PM @ <a class="txt-red" href="https://techhub.osu.edu/location-hours">Tech Hub</a> <i title="Food provided!" class="black fa fa-cutlery"></i>
</p>
<br>
<p class="bold txt-red">9/23/2016</p>
<h2 class="low-bottom-margin low-top-margin">How to Use Sketch 3 to Design a Winning Idea</h2>
<p>
7:00 - 8:00 PM @ Dreese Labs 264
<br>
<span class="smallText">Workshop by Sean Doran</span>
</p>
<br>
<p class="bold txt-red">9/26/2016</p>
<h2 class="low-bottom-margin low-top-margin">UI Architecture for Web Dev</h2>
<p>
6:30 - 7:30 PM @ Dreese Labs 264 <i title="Food provided!" class="black fa fa-cutlery"></i>
<br>
<span class="smallText">Workshop by Kevin Mack</span>
</p>
<br>
<p class="bold txt-red">10/7/2016</p>
<h2 class="low-bottom-margin low-top-margin">Fall Picnic + Team Formation Social</h2>
<p>
5:30 - 7:30 PM @ Dreese Labs Lobby <i title="Food provided!" class="black fa fa-cutlery"></i>
<br>
<span class="smallText">Come to ACM-W's annual fall picnic for a chance to meet new people, brainstorm ideas and recruit teammates for the upcoming hackathon.</span>
</p>
<br>
<p class="bold txt-red">10/17/2016</p>
<h2 class="low-bottom-margin low-top-margin">User Experience (UX) with Abercrombie & Fitch</h2>
<p>
7:00 - 8:00 PM @ Dreese Labs 264
<br>
<span class="smallText">Join UX researchers Theresa and Tanya from Abercrombie & Fitch as they talk about designing a good user experience and their work.</span>
</p>
<br>
<p class="bold txt-red">10/26/2016</p>
<h2 class="low-bottom-margin low-top-margin">Introduction to Swift for iOS (<a class="txt-red" href="https://techhub.osu.edu/news/2016/10/06/coding-workshop-introduction-swift-ios">Link</a>)</h2>
<p>
6:00 - 8:00 PM @ Campbell Hall 100
<br>
<span class="smallText">Learn iOS development with Swift! Please <a class="txt-red" href="https://osu.az1.qualtrics.com/jfe/form/SV_3s1febZu43NEgw5">register here</a>. A Mac with the latest macOS release, along with Xcode and an Applie ID, are needed.</span>
</p>
<br>
<p class="bold txt-red">10/31/2016</p>
<h2 class="low-bottom-margin low-top-margin">Team Formation Social</h2>
<p>
7:00 - 8:00 PM @ 18th Avenue Library Room 090
<br>
<span class="smallText">Come find your hackathon dream team at this team-building social!</span>
</p>
</div>
<div class= "col half">
<p class="bold txt-red">11/2/2016</p>
<h2 class="low-bottom-margin low-top-margin">Paxata Tech Talk: ES2015 and the next generation of JS languages</h2>
<p>
7:00 - 8:00 PM @ Dreese Labs 264
<br>
<span class="smallText">Now that the new spec for Javascript has been released it is time to catch up! During this presentation we will look at the changes to both the code and the ecosystem brought on by ES2015. We will explore how it will change frameworks like D3, Angular and React. Finally, we will explore how Paxata is working to upgrade from a legacy Angular 1 world to the promise of and Angular 2 one powered by Typescript.</span>
</p>
<br>
<p class="bold txt-red">11/7/2016</p>
<h2 class="low-bottom-margin low-top-margin">How to Hack a Tesla and Coding with the Artisan</h2>
<p>
5:30 - 7:30 PM @ <a class="txt-red" href="https://www.google.com/maps/dir/''/pillar+technology+columbus/@39.974839,-83.0677131,12z/data=!3m1!4b1!4m8!4m7!1m0!1m5!1m1!1s0x88234f6a744fc7b9:0xd0c230a717d372f2!2m2!1d-82.9976732!2d39.9748601">Pillar Technology</a> <i title="Food provided!" class="black fa fa-cutlery"></i>
<br>
<span class="smallText">Learn how ideas become reality at The Forge by Pillar! Hacking Tesla, autonomous tractors, and more. Please <a class="txt-red" href="http://info.pillartechnology.com/osualexatesla">RSVP here</a>.</span>
</p>
<br>
<p class="bold txt-red">11/9/2016</p>
<h2 class="low-bottom-margin low-top-margin">Women, Wine & Web Design</h2>
<p>
6:00 - 8:00 PM @ <a class="txt-red" href="https://www.google.com/maps/place/Rev1+Ventures/@39.9973393,-83.0445598,17z/data=!3m1!4b1!4m5!3m4!1s0x88388e5dfcb48eef:0x56c3965bf2e942b8!8m2!3d39.9973393!4d-83.0423711">Rev 1 Ventures</a>
<br>
<span class="smallText">Join Tech Elevator and CoverMyMeds for a two hour beginner workshop to learn about the fundamental tools of front-end development (HTML & CSS) and build out your very own web page! Wine provided; don't need to be 21 to attend.</span>
</p>
<br>
<p class="bold txt-red">11/14/2016</p>
<h2 class="low-bottom-margin low-top-margin">Buckeye Hackers: Team and Idea Formation</h2>
<p>
7:00 - 8:00 PM @ 18th Avenue Library 070 <i title="Food provided!" class="black fa fa-cutlery"></i>
<br>
<span class="smallText">Come join <a class="txt-red" href="https://hackers.org.ohio-state.edu/">Buckeye Hackers</a> for team formation and idea hashing!</span>
</p>
<br>
<p class="bold txt-red">11/17/2016</p>
<h2 class="low-bottom-margin low-top-margin">Wikipedia in Your Next Project</h2>
<p>
7:00 - 8:00 PM @ Caldwell Labs 120 <i title="Food provided!" class="black fa fa-cutlery"></i>
<br>
<span class="smallText">Presented by <a class="txt-red" href="https://en.wikipedia.org/wiki/Wikipedia:Wikipedia_Connection">Wikipedia Connection</a> and <a class="txt-red" href="https://opensource.cse.ohio-state.edu/">Open Source Club</a>.</span>
</p>
</div>
</div>
<div class="clear"></div>
<a name="prizes"></a>
<h1>Prizes</h1>
<hr>
<p>
We're pleased to announce that our top ten places will when HackOHI/O trophies. In addition, we have eight category winners who will take home the prizes listed below.
<br>
A thank you to Hyland and Pillar for providing HackOHI/O with prizes.
</p>
</div>
<div class="full-width bg-red">
<div class="section grp">
<div class="col third">
<div class="height-padding-lg">
<h1 class="compress txt-white">Raspberry Pi 3<br>Ultimate Starter Kit</h1>
<h2 class="compress txt-white">Best Hardware Hack</h2>
</div>
</div>
<div class="col third">
<div class="height-padding-lg">
<h1 class="compress txt-white">BB Sphero w/ Arm Band</h1>
<h2 class="compress txt-white">Best Software Hack</h2>
</div>
</div>
<div class="col third">
<div class="height-padding-lg">
<h1 class="compress txt-white">Go Pro Hero Session</h1>
<h2 class="compress txt-white">Most Impactful Application</h2>
</div>
</div>
</div>
<div class="section grp">
<div class="col third">
<div class="height-padding-lg">
<h1 class="compress txt-white">Amazon Echo</h1>
<h2 class="compress txt-white">Best Designed Hack</h2>
</div>
</div>
<div class="col third">
<div class="height-padding-lg">
<h1 class="compress txt-white">Phototonic</h1>
<h2 class="compress txt-white">Most Original Hack</h2>
</div>
</div>
<div class="col third">
<div class="height-padding-lg">
<h1 class="compress txt-white">Apple Watch</h1>
<h2 class="compress txt-white">Most Ambitious Hack</h2>
</div>
</div>
</div>
<div class="section grp">
<div class="col half">
<div class="height-padding-lg">
<h1 class="compress txt-white">Lego Mindstorm</h1>
<h2 class="compress txt-white">Share the Load</h2>
</div>
</div>
<div class="col half">
<div class="height-padding-lg">
<h1 class="compress txt-white">Hubsan Quadcopter</h1>
<h2 class="compress txt-white">Best New Hack</h2>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<div class="innerContent center">
<div class="clear"></div>
<a name="schedule"></a>
<h1>Schedule</h1>
<hr>
Here's the schedule for HackOHI/O 2016! Note that things may change slightly leading up to the event.
<h2>Saturday, November 19th</h2>
<table style="width: 70%; margin: 0 auto;">
<tr>
<td style="width: 20%;" class="box-darkgray">
Time
</td>
<td style="width: 40%;" class="box-darkgray">
Event
</td>
<td style="width: 40%;" class="box-darkgray">
Location
</td>
</tr>
<tr>
<td class="box-white">
8:00 AM
</td>
<td class="box-white">
Doors open; student and sponsor check-in; team-building event
</td>
<td class="box-white">
2nd floor, outside Ballroom
</td>
</tr>
<tr>
<td class="box-gray">
10:00 AM
</td>
<td class="box-gray">
Opening keynote
</td>
<td class="box-gray">
Ballroom
</td>
</tr>
<tr>
<td class="box-white">
11:00 AM
</td>
<td class="box-white">
Hacking begins!
</td>
<td class="box-white">
Ballroom / Great Hall
</td>
</tr>
<tr>
<td class="box-gray">
12:00 PM
</td>
<td class="box-gray">
Lunch
</td>
<td class="box-gray">
Ballroom / Great Hall
</td>
</tr>
<tr>
<td class="box-white">
2:15 PM
</td>
<td class="box-white">
Esri Talk
</td>
<td class="box-white">
Maudine Cow Room (Basement)
</td>
</tr>
<tr>
<td class="box-gray">
4:00 PM
</td>
<td class="box-gray">
Yoga with Ohio State's Counseling and Consultation Service
</td>
<td class="box-gray">
Dance Room 1 (Basement)
</td>
</tr>
<tr>
<td class="box-white">
6:00 PM
</td>
<td class="box-white">
Dinner
</td>
<td class="box-white">
Ballroom / Great Hall
</td>
</tr>
<tr>
<td class="box-gray">
7:00 PM
</td>
<td class="box-gray">
JPMorgan Chase & Co. Tech Talk and Panel
</td>
<td class="box-gray">
Maudine Cow Room (Basement)
</td>
</tr>
<tr>
<td class="box-white" style="border-bottom: #333333 1px solid;">
11:30 PM
</td>
<td class="box-white" style="border-bottom: #333333 1px solid;">
<span style="color: #BB0000;">Lockdown</span>
</td>
<td class="box-white" style="border-bottom: #333333 1px solid;">
</td>
</tr>
</table>
<h3>Saturday Long-Term Activities</h3>
<table style="width: 70%; margin: 0 auto;">
<tr>
<td style="width: 20%;" class="box-darkgray">
Time
</td>
<td style="width: 40%;" class="box-darkgray">
Event
</td>
<td style="width: 40%;" class="box-darkgray">
Location
</td>
</tr>
<tr>
<td class="box-white">
11:00 AM - 5:00 PM
</td>
<td class="box-white">
Relaxation Lounge: Arts, Games, and Yoga
</td>
<td class="box-white">
Dance Room 1 (Basement)
</td>
</tr>
<tr>
<td class="box-gray">
11:00 AM - 11:00 PM
</td>
<td class="box-gray">
JPMorgan Chase & Co. Networking Event
</td>
<td class="box-gray">
Dance Room 2 (Basement)
</td>
</tr>
<tr>
<td class="box-white" style="border-bottom: #333333 1px solid;">
11:00 AM - 8:00 PM
</td>
<td class="box-white" style="border-bottom: #333333 1px solid;">
Microsoft Xbox Lounge
</td>
<td class="box-white" style="border-bottom: #333333 1px solid;">
Arts and Crafts Room
</td>
</tr>
</table>
<h2>Sunday, November 20th</h2>
<table style="width: 70%; margin: 0 auto;">
<tr>
<td style="width: 20%;" class="box-darkgray">
Time
</td>
<td class="box-darkgray">
Event
</td>
<td class="box-darkgray">
Location
</td>
</tr>
<tr>
<td class="box-white">
7:00 AM
</td>
<td class="box-white">
<span style="color: #BB0000;">Lockdown ends</span>
</td>
<td class="box-white">
</td>
</tr>
<tr>
<td class="box-gray">
9:00 AM
</td>
<td class="box-gray">
Teams register for judging
</td>
<td class="box-gray">
West Ballroom / Great Hall
</td>
</tr>
<tr>
<td class="box-white">
9:30 AM
</td>
<td class="box-white">
Brunch
</td>
<td class="box-white">
West Ballroom / Great Hall
</td>
</tr>
<tr>
<td class="box-gray">
11:00 AM
</td>
<td class="box-gray">
Hacking ends
</td>
<td class="box-gray">
Ballroom / Great Hall
</td>
</tr>
<tr>
<td class="box-white">
11:30 AM
</td>
<td class="box-white">
Judging begins
</td>
<td class="box-white">
Ballroom
</td>
</tr>
<tr>
<td class="box-gray">
1:30 PM
</td>
<td class="box-gray">
Judging ends
</td>
<td class="box-gray">
Ballroom
</td>
</tr>
<tr>
<td class="box-white">
2:30 PM
</td>
<td class="box-white">
Showcase begins
</td>
<td class="box-white">
Performance Hall
</td>
</tr>
<tr>
<td class="box-gray" style="border-bottom: #333333 1px solid;">
4:30 PM
</td>
<td class="box-gray" style="border-bottom: #333333 1px solid;">
Showcase ends
</td>
<td class="box-gray" style="border-bottom: #333333 1px solid;">
Performance Hall
</td>
</tr>
</table>
</div>
<div class="innerContent center">
<div class="clear"></div>
<a name="faq"></a>
<h1>FAQs</h1>
<hr>
<p>
Here are some common questions that people ask. If you have any additional questions please contact us at <a class="txt-red" href="mailto:hackathon@osu.edu">hackathon@osu.edu</a>.
</p>
<div class="section grp">
<div class= "col fourth">
<h3>What is a hackathon?</h3>
<p class="faqText">
A hackathon is a fun 24 or 36 hour event that brings together multi-disciplinary students with varying experience from across the nation together to create, innovate, and build a project all within one weekend.
Students have access to professional mentors, workshops, and loaner hardware during the event.
They also have the opportunity to showcase and demo their work projects to judges and other exposition attendees at the end of the event.
</p>
</div>
<div class= "col fourth">
<h3>What sort of projects do people make?</h3>
<p class="faqText">
All sorts of things! Previous projects have included mobile apps, websites, smart mirrors, light-up glasses, pancake printers...the possibilities are endless.
</p>
</div>
<div class= "col fourth">
<h3>But... I don't know how to code!</h3>
<p class="faqText">
Not to worry! HackOHI/O provides opportunities for first-time programmers. From workshops, to resources to mentors and teammates, you'll be sure to pick up skills over the weekend.
Past that, teams need more than just coders and great projects always start with diverse teams.
Everyone has some knowledge and perspective they can bring to the table.
</p>
</div>
<div class= "col fourth">
<h3>Is it free? What about food?</h3>
<p class="faqText">
HackOHI/O is free to participate in! We'll be providing you with great meals, snacks, and drinks throughout the entire event. We've got participants' food restrictions covered, too.
</p>
</div>
</div>
<div class="section grp">
<div class= "col fourth">
<h3>Who can participate?</h3>
<p class="faqText">
Anyone who is a student at a university! We encourage all levels of expertise to join.
Whether this is your first hackathon, or you've been to hackathons around the nation, HackOHI/O provides an opportunity to collaborate and create something amazing.
All participants are expected to follow our <a class="txt-red" href="https://s3.amazonaws.com/aws-website-hackohiofiles-3vyw6/HackOHIO+2016+Waiver.pdf">Code of Conduct</a>.
<br>
<br>
Anyone is welcome to attend our <a class="txt-red" href="https://www.eventbrite.com/e/hackohio-2016-showcase-tickets-28820776719">Sunday showcase</a>, where our winners will present their projects.
Please register if you plan on attending!
</p>
</div>
<div class= "col fourth">
<h3>What should I bring?</h3>
<p class="faqText">
Bring a laptop, a phone, some comfy clothes, appropriate chargers, and toiletries! Remember your toothbrush and paste.
Leave any pre-written code at home; your projects should be started and completed at the hackathon.
</p>
</div>
<div class= "col fourth">
<h3>What if I don't have a team?</h3>
<p class="faqText">
No worries! OHI/O provides opportunities before and during the hackathon to find a team.
We currently have a <a class="txt-red" href="https://www.facebook.com/groups/528788320664502/">team formation group</a> on Facebook, which you are welcome to join.
We'll be posting more information on team formation events in our newsletters and on our social media accounts - be on the lookout!
</p>
</div>
<div class= "col fourth">
<h3>How large can teams be?</h3>
<p class="faqText">
All participants should be in teams of 2 to 4. We hope to encourage teamwork while keeping team sizes manageable for a 24 hour event.
</p>
</div>
</div>
<div class="section grp">
<div class= "col fourth">
<h3>Do I have to have an idea?</h3>
<p class="faqText">
Nope! Many students come up with an idea at the hackathon.
By talking to fellow students and coming to our pre-hype events, you'll find opportunities to join an idea that piques your interest.
If you get stuck, we'll have a nice list of ideas to help you out.
</p>
</div>
<div class= "col fourth">
<h3>Can I mentor?</h3>
<p class="faqText">
Yes! We welcome individuals with knowledge and expertise in various topic areas to help mentor students at HackOHI/O. If you're interested, please fill out <a class="txt-red" href="https://docs.google.com/forms/d/e/1FAIpQLSeXW55ZglWbF5HE7_lUzIaiHVXBqOFymyw2Del9xJPk-dDBZw/viewform?c=0&w=1">this form</a>.
</p>
</div>
<div class= "col fourth">
<h3>When will I be notified of acceptance?</h3>
<p class="faqText">
We're currently in the process of reviewing all applicants and sending acceptances out in waves through the beginning of November. Stay tuned - if you've registered, you will receive an email in due time!
</p>
</div>
<div class= "col fourth">
<h3>How are projects judged?</h3>
<p class="faqText">
HackOHI/O is proud to have dozens of judges consisting of academia, industry professionals, and alumni.
On Sunday, participants will share their projects with two sets of two judges, who will score the project based on several criteria: technical difficulty, functionality, intuitiveness, usefulness/impact, creativity, teamwork, and overall wow factor.
Remember - the competition is only a small part of the event! The most important part is to have fun and build something amazing.
</p>
</div>
</div>
<div class="section grp">
<div class= "col fourth">
<h3>Are travel reimbursements available?</h3>
<p class="faqText">
We plan on sending buses to schools in and around Ohio who have a high number of registrants.
We also have a limited number of Marathon gift certificates for students who carpool to HackOHI/O from out of the Columbus area.
</p>
</div>
<div class= "col fourth">
<h3>What is the lockdown?</h3>
<p class="faqText">
For safety, no one is allowed to enter or leave the Ohio Union between the hours of 11:30 PM and 7 AM.
If you'd like to leave the event for the night, please keep the lockdown period in mind.
</p>
</div>
<div class= "col fourth">
<h3>Can I bring my desktop computer and a monitor?</h3>
<p class="faqText">
Yep! Each participant's space isn't <i>too</i> big, but there should be enough space on the table top and ground for a desktop/monitor setup.
Please note that we do not have ethernet connections available - you should come with a wireless adapter, if you do not have one already.
</p>
</div>
<div class= "col fourth">
<h3>Wow, this all sounds so great! Who hosts HackOHI/O?</h3>
<p class="faqText">
HackOHI/O is hosted by several Ohio State student organizations united under OHI/O.
You can check out our other events at <a class="txt-red" href="http://hack.osu.edu/">http://hack.osu.edu</a>.
</p>
</div>
</div>
<div class="clear">
</div>
<a name="sponsors"></a>
<h1>Sponsors</h1>
<hr>
<p>
Without our sponsors, HackOHI/O wouldn't be possible. By joining us, you'll be in touch with some of the best developers, designers, and builders in the state. Our team will ensure that you have an incredible experience.
<br><br>
Interested in sponsoring and helping create something amazing? Take a look at our <a class="txt-red" href="http://hack.osu.edu/sponsor">sponsor page</a> and <a class="txt-red" href="mailto:sponsorship@buckhacks.org">reach out to us</a> with any questions.
<br><br>
</p>
<div class="section grp">
<a href="https://aws.amazon.com/education/awseducate/"><img class="sponsor-huge" src="images/sponsors/sponsor-aws.png" alt="Amazon Web Services"></a>
<br><br><br><br>
<a href="https://www.jpmorganchase.com/"><img class="sponsor-huge" src="images/sponsors/sponsor-jp-morgan.png" alt="JPMorgan Chase and Co."></a>
</div>
<br><br><br>
<div class="section grp">
<a href="https://wexnermedical.osu.edu/"><img class="sponsor-big" src="images/sponsors/sponsor-wexner-medical.png" alt="Wexner Medical Center"></a>
</div>
<div class="section grp">
<div class="col half">
<a href="http://aver.io/"><img class="sponsor-med" src="images/sponsors/sponsor-aver.jpg" alt="Aver"></a>
<br><br>
</div>
<div class="col half">
<a href="http://jobs-ohio.com/"><img class="sponsor-med" src="images/sponsors/sponsor-jobs-ohio.png" alt="JobsOhio" style="width: 300px;"></a>
<br><br>
</div>
</div>
<br><br>
<div class="height-padding section grp">
<div class="col half">
<a href="http://www.capitalone.io/"><img class="sponsor-med" src="images/sponsors/sponsor-capital-one.png" alt="Capital One"></a>
<br><br>
</div>
<div class="col half">
<a href="http://www.battelle.org/our-work/national-security/cyber-innovations"><img class="sponsor-med" src="images/sponsors/sponsor-battelle.png" alt="Battelle"></a>
<br><br>
</div>
</div>
<br><br>
<div class="height-padding section grp">
<div class="col half">
<a href="https://www.harris.com/"><img class="sponsor-med" src="images/sponsors/sponsor-harris.png" alt="Harris"></a>
<br><br>
</div>
<div class="col half">
<a href="http://www.paxata.com/"><img class="sponsor-med" src="images/sponsors/sponsor-paxata.png" alt="Paxata"></a>
<br><br>
</div>
</div>
<div class="height-padding section grp">
<div>
<a href="http://www.esri.com/"><img class="sponsor-med" src="images/sponsors/sponsor-esri.png" alt="Esri"></a>
<br><br>
</div>
</div>
<div class="height-padding section grp">
<div class="col third">
<a href="https://www.cas.org/"><img class="sponsor-sm" src="images/sponsors/sponsor-cas.png" alt="Chemical Abstracts Service (CAS)"></a>
<br><br><br>
<a href="https://www.accenture.com/"><img class="sponsor-sm" src="images/sponsors/sponsor-accenture.png" alt="Accenture"></a>
<br><br><br>
<a href="https://www.teksystems.com/en"><img class="sponsor-sm" src="images/sponsors/sponsor-tek.png" alt="TEKsystems"></a>
<br><br><br>
<a href="https://discovery.osu.edu/tda/"><img class="sponsor-sm" src="images/sponsors/sponsor-tda.png" alt="Translational Data Analytics at Ohio State" style="width: 260px;"></a>
<br><br><br>
<a href="http://www.exact.com/us/"><img class="sponsor-sm" src="images/sponsors/sponsor-exact.png" alt="Exact"></a>
<br><br><br>
</div>
<div class="col third">
<a href="https://github.com/"><img class="sponsor-sm" src="images/sponsors/sponsor-github.png" alt="GitHub" style="width: 260px;"></a>
<br><br><br>
<a href="https://www.rev1ventures.com/"><img class="sponsor-sm" src="images/sponsors/sponsor-rev1.png" alt="rev1 Ventures"></a>
<br><br><br>
<a href="https://www.onbase.com/"><img class="sponsor-sm" src="images/sponsors/sponsor-hyland.png" alt="Hyland, creator of Onbase"></a>
<br><br><br>
<a href="http://www.cisco.com/c/en/us/index.html"><img class="sponsor-sm" src="images/sponsors/sponsor-cisco.png" alt="Cisco Systems" style="width: 230px;"></a>
<br><br><br>
</div>
<div class="col third">
<a href="https://www.namecheap.com/"><img class="sponsor-sm" src="images/sponsors/sponsor-namecheap.png" alt="Namecheap"></a>
<br><br><br>
<a href="https://www.nationwide.com/"><img class="sponsor-sm" src="images/sponsors/sponsor-nationwide.png" alt="Nationwide"></a>
<br><br><br>
<a href="http://www.nationwidechildrens.org/"><img class="sponsor-sm" src="images/sponsors/sponsor-nationwide-childrens.png" alt="Nationwide Children's Hospital"></a>
<br><br><br>
<a href="https://www.covermymeds.com/main/"><img class="sponsor-sm" src="images/sponsors/sponsor-covermymeds.png" alt="CoverMyMeds"></a>
<br><br><br>
<a href="http://pillartechnology.com/"><img class="sponsor-sm" src="images/sponsors/sponsor-pillar.png" alt="Pillar Technologies" style="width: 230px;"></a>
<br><br><br>
</div>
</div>
<div class="clear"></div>
<h1>Supporters</h1>
<div class="height-padding section grp">
<img class="sponsor-huge" src="images/sponsors/sponsor-osu-depts.png" alt="University Libraries, College of Engineering, and the Office of the Chief Information Officer.">
</div>
<br>
<div class="height-padding section grp">
<div class="col third">
<a href="http://www.cardinalsolutions.com/"><img class="sponsor-sm" src="images/sponsors/sponsor-cardinal-solutions.png" alt="Cardinal Solutions"></a>
<br><br><br><br>
<a href="http://www.marathonpetroleum.com/"><img class="sponsor-sm" src="images/sponsors/sponsor-marathon.png" alt="Marathon" style="width: 160px;"></a>
<br><br><br><br>
<a href="http://www.ibm.com/us-en/"><img class="sponsor-sm" style="width: 220px;" src="images/sponsors/sponsor-ibm.png" alt="IBM"></a>
</div>
<div class="col third">
<br>
<a href="https://www.microsoft.com/"><img class="sponsor-sm" src="images/sponsors/sponsor-microsoft.png" alt="Microsoft"></a>
<br><br><br><br>
<a href="https://techhub.osu.edu/"><img class="sponsor-sm" src="images/sponsors/sponsor-techhub.svg" alt="TechHub"></a>
<br><br><br><br>
<a href="http://activities.osu.edu/about/student_activity_fee"><img class="sponsor-sm" src="images/sponsors/sponsor-saf.png" alt="Ohio State Student Activity Fee" style="width: 230px;"></a>
</div>
<div class="col third">
<a href="http://lumosinnovation.com/"><img class="sponsor-sm" src="images/sponsors/sponsor-lumos.png" alt="Lumos Innovation"></a>
<br><br><br><br>
<a href="https://www.google.com/"><img class="sponsor-sm" src="images/sponsors/sponsor-google.png" alt="Google"></a>
<br><br><br><br>
<a href="http://www.meetup.com/Columbus-Web-Group/"><img class="sponsor-sm" src="images/sponsors/sponsor-columbus-web-group.png" alt="Columbus Web Group"></a>
</div>
</div>
<br><br>
<div class="clear"></div>
</div>
<div id="city-footer">
</div>
<div class="innerContent center">
<footer>
<div id="footer" class="bg-dark txt-white">
<div class="bg-dark txt-white"></div>
<h2 class="txt-white">Brought to you by…</h2>
<p>
<a class="txt-white" href="http://hack.osu.edu/">OH<b>I/O</b></a>
<br>
<small><a class="txt-white" href="http://www.bdaaatohiostate.org/">BDAA</a> • <a class="txt-white" href="http://www.buckhacks.org/">Buckeye Hackers</a> • <a class="txt-white" href="https://opensource.osu.edu/">Open Source Club</a> • <a class="txt-white" href="http://electronicsclub.osu.edu/">Electronics Club</a> • <a class="txt-white" href="http://acmw.org.ohio-state.edu/">ACM-W</a> • <a class="txt-white" href="https://mobileapposu.github.io/">Mobile App Developers Club</a> • <a class="txt-white" href="http://cwdg.io/">CWDG</a> • <a class="txt-white" href="https://en.wikipedia.org/wiki/Wikipedia:Wikipedia_Connection">Wikipedia Connection</a>
<br>
<a class="txt-white" href="https://ecs.osu.edu/">Engineering Career Services</a> • <a class="txt-white" href="https://engineering.osu.edu/">College of Engineering</a> • <a class="txt-white" href="https://cse.osu.edu/">Department of Computer Science & Engineering</a> • <a class="txt-white" href="https://library.osu.edu/">University Libraries</a></small>
<br><br>
Made with <i class="fa fa-heart"></i> in Columbus
<br><br><br>