-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
948 lines (820 loc) · 35.8 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>MadHacks 2015</title>
<meta name="description"
content="MadHacks 2015 is UW-Madison's first large-scale hackathon, April 18th-19th.">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- LGTM 1027 -->
<!-- jQuery -->
<script src="js/jquery-2.1.3.min.js"></script>
<!-- Bootstrap imports -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<script src="js/bootstrap.min.js"></script>
<!-- User sheets -->
<link rel="stylesheet" href="css/madhacks2015.css">
<!-- Analytics -->
<!-- Google analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59745668-1', 'auto');
ga('send', 'pageview');
</script>
<script>
// Mobile check to see if we need to disable smooth animations
function isMobile() {
var check = false;
(function(a,b){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0,4)))check = true})(navigator.userAgent||navigator.vendor||window.opera);
return check;
}
// Define a scroll-to-top convenience method.
function toTop(element) {
if (isMobile()) {
// Do nothing, let the anchor tags handle it...
//$('html, body').scrollTop($(element).offset().top);
}else {
$('html, body').animate({
scrollTop: $(element).offset().top
}, 500);
}
}
</script>
</head>
<body style="background-color: #222;;">
<div class="row vpRow bg1" id="row1">
<div class="col-lg-6 col-md-12">
<img class="headerImage"
src="img/madhacks2048.png"
alt="MadHacks 2015" />
<div class="overlayBlockDark haxcontainer">
<p class="text-center haxtext">
<strong>April
18th-19th</strong> in
<strong>Madison, WI</strong>
<br /><span style="font-size:0.75em">Mad Geniuses Welcome</span>
</p>
</div>
</div>
<div class="col-lg-1 col-md-12"></div>
<div class="col-lg-5 col-md-12">
<div class="overlayBlockDark">
<br /><br />
<h1>MadHacks 2015</h1>
<p>A premier Midwestern hackathon </p>
<br /><br />
<p>Join us for a weekend of non-stop hacking, and show us
what
you're made of!</p>
<a href="#row4"
class="btn-lg usr-btn-red btn-block"
onclick="toTop('#schedule');" >MadHacks Schedule</a>
<br /><br />
<p>Have questions about what to expect?</p>
<a href="#row3" class="btn-lg usr-btn-red btn-block" onclick="toTop('#row3');">
View frequently asked questions
</a>
<br /><br />
<p>Are you interested in sponsoring, volunteering, or mentoring?</p>
<a href="#row5"
class="btn-lg usr-btn-dark btn-block"
onclick="toTop('#row5');" >Sponsor MadHacks!</a>
<br /><br />
<p>See how MadHacks will change the landscape of hackathons!
</p>
<a href="#row2"
class="btn-lg usr-btn-dark btn-block"
onclick="toTop('#row2');">
Tell me more!
</a>
</div>
</div>
</div>
<div class="row vpRow bg4" id="row4">
<span id="apply"></span>
<span id="schedule"></span>
<div class="row">
<div class="col-md-12">
<div class="overlayBlockDark text-center">
<h1 class="haxtext">MadHacks 2015</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="overlayBlockDark">
<h3>When</h3>
<p>
<ul class="schedule">
<li><strong>4/18</strong><em>Day One</em>
<ul>
<li><strong>09:00–10:30</strong> Check-in</li>
<li><strong>11:00</strong> Opening Ceremony</li>
<li><strong>12:00</strong> Hacking Begins</li>
<li><strong>13:00</strong> Lunch</li>
<li><strong>19:00</strong> Dinner</li>
</ul>
</li>
<li><strong>4/19</strong><em>Day Two</em>
<ul>
<li><strong>06:30</strong> Breakfast</li>
<li><strong>11:00</strong> Lunch</li>
<li><strong>12:00</strong> Hacking Ends</li>
<li><strong>12:30–14:00</strong> Expo</li>
<li><strong>16:00</strong> Dinner</li>
</ul>
</li>
</ul>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="overlayBlockDark">
<h2>Are you a MAD GENIUS?</h2>
<p> Unfortunately, applications are now closed for students
outside of UW-Madison. If you attend UW-Madison and are interested in applying,
there are a few open spots left for you — please contact <a
href="mailto:team@madhacks.org">team@madhacks.org</a> as soon as possible!
</p>
<!--
<a href="http://goo.gl/forms/yjRZ4u7W9E" class="btn btn-block usr-btn-red"><h1>Let's do
this!</h1></a>
<h3>When do I know if I'm in?</h3>
<p>Keep
an eye on your email for messages from
<a href="mailto:team@madhacks.org">team@madhacks.org</a> for
acceptance details!</p>
<h3>How many people get accepted?</h3>
<p>We're looking to accept about 300 from across
the
country. We hope to see you here!</p>
-->
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="overlayBlockDark">
<h3>What are people saying about MadHacks?</h3>
<p>We've already got optimism pouring in from your applications - check out what other hackers are excited about and looking forward to at MadHacks:</p>
<div id="testiHolder" class="testimonial">
<span id="testiContent">Loading...</span>
</div>
<script type="text/javascript">
var testimonials = [
"MadHacks seems like a really interesting and innovative hackathon and I would love to check it out and contribute by making something awesome!",
"The focus on crazy, wild ideas and pushing the boundaries that MadHacks emphasizes.",
"You guys use art to show your rad-ness instead of pushing the idea of eliteness on everyone. That means you really have to be extraordinary. Props!",
"You guys sound like you would be open to accepting a Mechanical Engineer. [...] I want to show that hackathons are not just for computer oriented majors.",
"I love the mad scientist idea, most hackathons have cliche projects; I want to see the truly original and the insane!",
"MadHacks is exciting to me because of its focus on the wacky.",
"This hackathon seems unique because it encourages originality and cool hacks. It would be fun to be judged by other contestants!",
"The no-holds-barred attitude. I get the feeling that this is a hackathon where it isn't just acceptable but encouraged to do something other than a web application.",
"The statement about the event being about the crazy and weird really speaks for itself and makes it sound EVEN more amazing!",
"Winners being chosen by the developers instead of judges... and your cool website.",
"I've met some people from UW-Madison at hackathons and they're all pretty rad.",
];
var curIdx = ~~(Math.random() * testimonials.length);
function setQuote(idx) {
$('#testiContent').text(testimonials[idx % testimonials.length]);
}
setQuote(curIdx);
function nextQuote() {
setQuote(++curIdx);
}
</script>
<br />
<div>
<a href="#" onclick="nextQuote(); return false;" class="btn btn-block">Next testimonial!</a>
</div>
</div>
</div>
<div class="col-md-4">
</div>
<div class="col-md-4">
<div class="overlayBlockDark">
<h3>Who else will be there?</h3>
<p>In addition to your fellow hackers-in-arms, we've got a
wonderful group of sponsors that help us put on this massive
event. Sponsors are being added by the day, so keep an eye out for
your favorite tech product, company, or platform!
</p>
<a href="#row5" class="btn btn-block"
onclick="toTop('#row5');">
Sponsor details
</a>
</div>
</div>
</div>
</div>
<div class="row vpRow bg2" id="row2">
<span id="about"></span>
<div class="row">
<div class="col-md-12">
<div class="overlayBlockDark text-center">
<h1 class="haxtext">About MadHacks</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="overlayBlock">
<h3>What</h3>
<p>MadHacks 2015 is UW-Madison's first intercollegiate national
hackathon. Come make history with 300 of your peers
in one of the Midwest's greatest
collaborative events this spring.</p>
<h3>Where</h3>
<p>MadHacks will be hosted at 605 Science Drive, Madison, WI. We're in an
abandoned-laboratory-turned-hackerspace this year — how fitting!</p>
<h3>Who</h3>
<p>You! If you're 18+ and in school, you should apply to MadHacks to
come showcase your talents! Students of all backgrounds and skill
levels are welcome!</p>
<h3>How</h3>
<p>You'll spend 24 hours hacking on a new project in teams of 1-4.
At the end of it all, you'll demo your project to
the other hackers. In the meantime, you'll have free food,
enjoy activities such as: a costume contest, dance competition,
and gaming in our dedicated leisure lounge; meet
wonderful sponsors, and make lifelong
friends. May the maddest project win!
</p>
</div>
</div>
<div class="col-md-4">
</div>
<div class="col-md-4">
<div class="overlayBlock">
<h3>What's a Hackathon?</h3>
<p>If you've never had the pleasure of attending a hackathon before,
<a href="https://medium.com/hackathons-anonymous/wtf-is-a-hackathon-92668579601">check out this post</a>
about what a hackathon is and why you should attend one!</p>
<p>Be sure to review the <a
href="http://static.mlh.io/docs/mlh-code-of-conduct.pdf">
MLH code of conduct</a> to know what to expect at MadHacks!
</p>
</div>
<div class="overlayBlock">
<h3>What makes MadHacks different?</h3>
<p>Unlike other hackathons, MadHacks is going to be putting
emphasis on the wacky, the original, and the downright
impossible! Like the mad geniuses, tinkerers, makers, and designers preceding
us, we want to test our boundaries like never before! We're
reaching out to the highly dedicated risk-takers, the
envelope pushers, and the daredevils. We hope to produce a
new kind of hackathon: where the winners are chosen by the
hackers, and the sponsors feel like they are right in the
middle of the hacker community itself — rather than on
the outside looking in.</p>
<a href="#row3" class="btn-lg btn-block"
onclick="toTop('#row3');">
I've got more questions...
</a>
</div>
</div>
</div>
</div>
<div class="row vpRow bg3" id="row3">
<span id="questions"></span>
<div class="row">
<div class="col-md-12">
<div class="overlayBlockDark text-center">
<h1 class="haxtext">Frequently Asked Questions</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="overlayBlock">
<h3>Who can attend?</h3>
<p>You must be at least 18 years old to attend MadHacks, unless you are a volunteer from a local high school.</p>
</div>
<div class="overlayBlock">
<h3>Is MadHacks free?</h3>
<p>Yep! If you're accepted, you'll be attending MadHacks for free.</p>
</div>
<div class="overlayBlock">
<h3>Will there be mentors at MadHacks?</h3>
<p>Yes - we will have plenty of resources for first-time hackers, including mentors from top employers. Be sure to visit their offices and ask questions!</p>
</div>
<div class="overlayBlock">
<h3>What's the food situation?</h3>
<p>MadHacks will be catered with enough food to keep you
hacking well into the night, thanks to our wonderful
sponsors.
In our registration form, please indicate any dietary
restrictions you have so we are able to accommodate you as
we attempt create orders.
</p>
</div>
<div class="overlayBlock">
<h3>If I drive, where can I park?</h3>
<p>The wonderful thing about our venue is we can offer you
free parking, while supplies last! Please indicate this in your application so we know what the
demand is like.</p>
</div>
<div class="overlayBlock">
<h3>How can I find a carpool?</h3>
<p>If you wish to provide a ride to hackers in your area, please contact <a href="mailto:team@madhacks.org">team@madhacks.org</a> — if you're looking to join a carpool, please indicate this on the RSVP form.</p>
</div>
</div>
<div class="col-md-4">
<div class="overlayBlock">
<h3>Will there be buses or travel reimbursement?</h3>
<p>We have included travel costs into our budget, but
routes and reimbursements will be dependent on demand, as well as pricing. It's
likely that we'll be sending buses along
major routes for nearby (Midwest) colleges. Please
indicate your preference for travel on your application
to help us better determine allocations.
</p>
</div>
<div class="overlayBlock">
<h3>What kind of hardware is available to hack with?</h3>
<p>You can always bring your own hardware along to hack, but we'll have some available to check out for
the weekend! Here's a sample of what we've got:
</p>
<ul>
<li>6x Arduino</li>
<li>6x Breadboards</li>
<li>3x Dell Monitors</li>
<li>10x Leap Motion</li>
<li>3x Muse</li>
<li>19x Myo</li>
<li>6x Oculus Rift</li>
<li>15x Pebble</li>
<li>6x Sparkcore</li>
<li>1x Galileo board</li>
</ul>
<p>
Hardware is supply-limited, so be sure to check it out early if you're interested!
</p>
</div>
<div class="overlayBlock">
<h3>How can I form my team?</h3>
<p>If you do not have a team and would like to form one prior to the event, consider posting in the
<a href="https://facebook.com/groups/1550934531853346/">MadHacks Participants Group</a>.</p>
<p>There will also be a team forming session near the beginning of the hackathon.</p>
</div>
<div class="overlayBlock">
<h3>Will there be fun activities at MadHacks?</h3>
<p>Of course! We've got plans for some or all of the following things:
<ul>
<li>Tag</li>
<li>Frisbee</li>
<li>Costume content</li>
<li>Mafia</li>
<li>Water balloon fights</li>
<li>Video games</li>
<li>Board games</li>
<li>Card games</li>
<li>Trivia</li>
</ul>
</p>
</div>
</div>
<div class="col-md-4">
<div class="overlayBlock">
<h3>What should I bring?</h3>
<p>Whatever you need to make your hack a success! For most
people, this means a laptop, charger, smartphone, and your
friends! Optional, but nice things include: a pillow,
blanket or sleeping bag, a change
of clothes, a toothbrush, toothpaste, and deodorant.
Please don't bring anything you wouldn't take on a school
field trip.
</p>
<p>
Our venue also has a single shower, so feel free to bring
your own soap and don't forget to bring a towel.
</p>
</div>
<div class="overlayBlock">
<h3>How will my hack be judged?</h3>
<p>Fellow hackers will be your judge during the expo! This means that a voting system will be in
place for you to choose the MadHacks winners. There will be prizes for the most mad hack,
best hardware, best software, and the most complicated way to accomplish a mundane task, etc.</p>
<p>There will also be API prizes provided by our corporate sponsors. If you wish to compete for
these prizes, please indicate this when submitting your project to ChallengePost.<p>
</div>
<div class="overlayBlock">
<h3>What are the prizes?</h3>
<p>We will be releasing detailed prize information from MadHacks and sponsors closer to the
event.</p>
</div>
<div class="overlayBlock">
<h3>How big can my team be?</h3>
<p>Team sizes may be from 1 to 4 members.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="overlayBlock">
<h3>Where's the event relative to the UW campus? How can I get there?</h3>
<p>The hackathon will be taking place at 605 Science Drive.
Take a look at the following map for an idea of where
the location is with respect to the UW campus.</p>
<a
href="https://www.google.com/maps/place/605+Science+Dr,+Madison,+WI+53711/@43.0550119,-89.4701382,17z/">
<img src="img/map.png" alt="A map to 605 Science Drive."
class="mapImage" />
</a>
<h3>Getting to MadHacks</h3>
<ul>
<li>If you're coming from the east, consider taking Badger Bus — it's $20 one-way.</li>
<li>If coming from the south, west, or north, consider Van Galder Bus Lines or Greyhound.
<li>Most major bus lines will drop you off near downtown Madison.</li>
</li>
<li>There is an airport in downtown Madison if you are flying in, but consider flying into
Milwaukee and taking the Badger Bus to Madison. This is the cheaper option.</li>
<li>If these above routes do not work, we are also arranging carpools. Please indicate your
preference on the RSVP form.</li>
<li>If you are coming from downtown #2, #6, and #7 bus lines from the Madison Metro Transit System run directly through downtown to our venue and back. All bus lines cost $2 and will
run from approximately 6:30 am CT to midnight CT. Google Maps has information on the bus
routes.</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="overlayBlock">
<a href="#row4" class="btn btn-block usr-btn-red"
onclick="toTop('#row4');">
I'm convinced! Sign me up!
</a>
</div>
</div>
</div>
</div>
<div class="row vpRow bg5" id="row5">
<span id="sponsors"></span>
<div class="row">
<div class="col-md-12">
<div class="overlayBlockDark text-center">
<h1 class="haxtext">Sponsors</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="overlayBlock">
<p>MadHacks wouldn't be possible without the gracious support
of our wonderful sponsors - and more are being
added by the day! Are you a company interested
in adding your name to the list? Email us
<a
href="mailto:admin@madhacks.org?subject=I'm interested in sponsoring MadHacks!" >here</a>. Be sure to check out our <a href="pdf/sponsorship.pdf">sponsorship tiers</a> for more information about the benefits of sponsoring.</p>
</div>
</div>
</div>
<br /><br />
<!-- Row 1. -->
<div class="row">
<div class="col-md-3 sponsorLogoCol">
<!--<a href="http://microsoft.com">
<img src="img/logos/microsoft.png"
class="sponsorLogo"
alt="Microsoft" />
</a>-->
</div>
<div class="col-md-6 sponsorLogoCol">
<div class="overlayBlock">
<a href="http://microsoft.com/">
<img src="img/logos/microsoft.png"
class="sponsorLogo"
alt="Microsoft"/>
</a>
</div>
</div>
<div class="col-md-3 sponsorLogoCol">
<!--<a href="http://sector67.org/">
<img src="img/logos/sector67.png"
class="sponsorLogo"
alt="Sector67" />
</a>-->
</div>
</div>
<!-- Row 2. -->
<div class="row">
<div class="col-md-4 sponsorLogoCol">
<div class="overlayBlock">
<a href="https://careers.epic.com/">
<img src="img/logos/epic.png"
class="sponsorLogo"
alt="Epic" />
</a>
</div>
<div class="overlayBlock">
<a href="http://getpebble.com/">
<img src="img/logos/pebble.png"
class="sponsorLogo"
alt="Pebble" />
</a>
</div>
<div class="overlayBlock">
<a href="http://www.wins.net/">
<img src="img/logos/win.png"
class="sponsorLogo"
alt="WIN" />
</a>
</div>
</div>
<div class="col-md-4 sponsorLogoCol">
<div class="overlayBlock">
<a href="http://ge.com/">
<img src="img/logos/ge.png"
class="sponsorLogo"
alt="GE" />
</a>
</div>
<div class="overlayBlock">
<a href="http://warf.org/">
<img src="img/logos/warf.png"
class="sponsorLogo"
alt="WARF" />
</a>
</div>
</div>
<div class="col-md-4 sponsorLogoCol sponsorLogoCol">
<div class="overlayBlock">
<a href="http://singlewire.com/">
<img src="img/logos/singlewire.png"
class="sponsorLogo"
alt="Singlewire"/>
</a>
</div>
<div class="overlayBlock">
<a href="http://jumptrading.com/">
<img src="img/logos/jumptrading.png"
class="sponsorLogo"
alt="Jump Trading" />
</a>
</div>
<div class="overlayBlock">
<a href="http://widen.com/">
<img src="img/logos/widen.png"
class="sponsorLogo"
alt="Widen" />
</a>
</div>
<div class="overlayBlock">
<a href="http://drifty.com/">
<img src="img/logos/drifty.png"
class="sponsorLogo"
alt="Drifty" />
</a>
</div>
</div>
</div>
<!-- Row 2.5 -->
<div class="row">
<div class="col-md-4 sponsorLogoCol">
</div>
<div class="col-md-4 sponsorLogoCol">
</div>
<div class="col-md-4 sponsorLogoCol sponsorLogoCol">
</div>
</div>
<!-- Row 3 -->
<div class="row">
<div class="col-md-4 sponsorLogoCol">
</div>
<div class="col-md-4 sponsorLogoCol">
</div>
<div class="col-md-4 sponsorLogoCol">
</div>
</div>
<!-- Row 4 -->
<div class="row">
<div class="col-md-4 sponsorLogoCol">
<!--
<div class="overlayBlock">
<a href="http://amfam.com">
<img src="img/logos/amfam.png"
class="sponsorLogo"
alt="American Family Insurance" />
</a>
</div>
-->
<div class="overlayBlock">
<a href="http://perblue.com/">
<img src="img/logos/perblue.png"
class="sponsorLogo"
alt="PerBlue" />
</a>
</div>
<div class="overlayBlock">
<a href="http://4490.ventures/">
<img src="img/logos/4490.png"
class="sponsorLogo"
alt="PerBlue" />
</a>
</div>
</div>
<div class="col-md-4 sponsorLogoCol">
<div class="overlayBlock">
<a href="http://ionicframework.com/">
<img src="img/logos/ionic.png"
class="sponsorLogo"
alt="Ionic" />
</a>
</div>
<div class="overlayBlock">
<a href="http://shopbop.com/">
<img src="img/logos/shopbop.png"
class="sponsorLogo"
alt="ShopBop" />
</a>
</div>
</div>
<div class="col-md-4 sponsorLogoCol">
<div class="overlayBlock">
<a href="http://gener8tor.com/">
<img src="img/logos/gener8tor.png"
class="sponsorLogo"
alt="gener8tor" />
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="overlayBlockDark text-center">
<h2 class="haxtext">Partners</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="overlayBlock">
<p>MadHacks would also like to thank our operational partners for their continued support!</p>
</div>
</div>
</div>
<!-- Row 5 -->
<div class="row">
<div class="col-md-4 sponsorLogoCol">
<div class="overlayBlock">
<a href="http://capitolentrepreneurs.com/">
<img src="img/logos/capitolentrepreneurs.png"
class="sponsorLogo"
alt="Capitol Entrepreneurs" />
</a>
</div>
<div class="overlayBlock">
<a href="http://sector67.org/">
<img src="img/logos/sector67.png"
class="sponsorLogo"
alt="Sector67" />
</a>
</div>
<div class="overlayBlock">
<a href="https://transcend.slc.engr.wisc.edu/">
<img src="img/logos/transcend.png"
class="sponsorLogo"
alt="Transcend" />
</a>
</div>
<div class="overlayBlock">
<a href="http://barscout.net/">
<img src="img/logos/barscout.png"
class="sponsorLogo"
alt="BarScout" />
</a>
</div>
</div>
<div class="col-md-4 sponsorLogoCol">
<div class="overlayBlock">
<a href="http://doit.wisc.edu/">
<img src="img/logos/doit.png"
class="sponsorLogo"
alt="DoIT" />
</a>
</div>
<!--<div class="overlayBlock">
<a href="http://upl.cs.wisc.edu">
<img src="img/logos/upl.png"
class="sponsorLogo"
alt="Undergraduate Projects Lab" />
</a>
</div>-->
<div class="overlayBlock">
<a href="http://win.wisc.edu/organization/hub">
<img src="img/logos/hub.png"
class="sponsorLogo"
alt="Hub" />
</a>
</div>
<div class="overlayBlock">
<a href="http://kpcb.com/">
<img src="img/logos/kpcb.png"
class="sponsorLogo"
alt="KPCB" />
</a>
</div>
<div class="overlayBlock">
<a href="http://drakontasconsulting.com/">
<img src="img/logos/drakontas.png"
class="sponsorLogo"
alt="Drakontas Consulting" />
</a>
</div>
<div class="overlayBlock">
<a href="http://github.com/">
<img src="img/logos/github.png"
class="sponsorLogo"
alt="GitHub" />
</a>
</div>
<div class="overlayBlock">
<a href="https://globalhackathon.io/">
<img src="img/logos/ghseoul.png"
class="sponsorLogo"
alt="GH Seoul" />
</a>
</div>
</div>
<div class="col-md-4 sponsorLogoCol">
<div class="overlayBlock">
<a href="http://universityresearchpark.org/">
<img src="img/logos/urp.png"
class="sponsorLogo"
alt="University Research Park" />
</a>
</div>
<div class="overlayBlock">
<a href="http://enlight.club/">
<img src="img/logos/enlight.png"
class="sponsorLogo"
alt="Enlight Fountain Control Group" />
</a>
</div>
<div class="overlayBlock">
<a href="http://technexus.com/">
<img src="img/logos/technexus.png"
class="sponsorLogo"
alt="TechNexus" />
</a>
</div>
<div class="overlayBlock">
<a href="http://qiqqa.com/">
<img src="img/logos/qiqqa.png"
class="sponsorLogo"
alt="Qiqqa" />
</a>
</div>
<div class="overlayBlock">
<a href="http://www.thalmic.com/">
<img src="img/logos/thalmiclabs.png"
class="sponsorLogo"
alt="Thalmic Labs" />
</a>
</div>
<div class="overlayBlock">
<a href="https://eatstreet.com/">
<img src="img/logos/eatstreet.jpg"
class="sponsorLogo"
alt="EatStreet" />
</a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="row footer">
<div class="col-md-4">
<h4>Stay Connected</h4>
<p>Got something you want to say? Send us an email at
<a href="mailto:team@madhacks.org">team@madhacks.org</a>, join
<a href="https://www.facebook.com/UWMadHacks">our Facebook page</a>,
or hit us up on twitter <a href="https://twitter.com/UWMadHacks">
@UWMadHacks</a>.</p>
</div>
<div class="col-md-4">
</div>
<div class="col-md-4">
<h4>Photography</h4>
<p>
<ul style="color: #eee;">
<li>1) Richard Hurd, CC BY 2.0; image reprocessed</li>
<li>2) Richard Hurd, CC BY 2.0</li>
<li>3) Richard Hurd, CC BY 2.0</li>
<li>4) Richard Hurd, CC BY 2.0</li>
<li>5) Richard Hurd, CC BY 2.0</li>
</ul>
</p>
</div>
<!-- Other footer stuff can go here too. -->
</div>
<br /><br />
</body>
</html>