This repository has been archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·1110 lines (1079 loc) · 56.3 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
<!--
$$\ $$\ $$\ $$\ $$$$$$\ $$$$$$\ $$\ $$\ $$$$$$\
$$$\ $$$ |$$ | $$ |$$ __$$\ $$ __$$\ $$ | $$ |$$ __$$\
$$$$\ $$$$ |$$ | $$ |$$ / $$ |$$ / \__|$$ |$$ / $$ / \__|
$$\$$\$$ $$ |$$$$$$$$ |$$$$$$$$ |$$ | $$$$$ / \$$$$$$\
$$ \$$$ $$ |$$ __$$ |$$ __$$ |$$ | $$ $$< \____$$\
$$ |\$ /$$ |$$ | $$ |$$ | $$ |$$ | $$\ $$ |\$$\ $$\ $$ |
$$ | \_/ $$ |$$ | $$ |$$ | $$ |\$$$$$$ |$$ | \$$\ \$$$$$$ |
\__| \__|\__| \__|\__| \__| \______/ \__| \__| \______/
http://www.youtube.com/watch?v=8To-6VIJZRE
#developersdevelopersdevelopers
Made with love by the MHacks Tech "Do you even hack, bro?" Team
-->
<!DOCTYPE html>
<html class="no-js carousel">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>MHacks IV Is Coming</title>
<meta property="og:title" name="og:title" content="MHacks IV Is Coming"/>
<meta property="og:site_name" name="og:site_name" content="MHacks"/>
<meta property="og:url" name="og:url" content="http://mhacks.org"/>
<meta property="og:image" name="og:content" content="http://mhacks.org/img/og-cover.jpg?v=4"/>
<meta name="description" property="description" content="The Most Epic Hackathon returns September 5-7. Are you ready?">
<meta name="og:description" property="og:description" content="The Most Epic Hackathon returns September 5-7. Are you ready?">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="image_src" href="img/mhacks_frame.png" >
<link rel="shortcut icon" href="img/mhacks_frame.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/lavish-bootstrap.css">
<link rel="stylesheet" href="css/typeahead.css">
<link rel="stylesheet" href="css/main.css">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
<!-- start Mixpanel --><script type="text/javascript">(function(f,b){if(!b.__SV){var a,e,i,g;window.mixpanel=b;b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" ");
for(g=0;g<i.length;g++)f(c,i[g]);b._i.push([a,e,d])};b.__SV=1.2;a=f.createElement("script");a.type="text/javascript";a.async=!0;a.src="//cdn.mxpnl.com/libs/mixpanel-2.2.min.js";e=f.getElementsByTagName("script")[0];e.parentNode.insertBefore(a,e)}})(document,window.mixpanel||[]);
mixpanel.init("cdc2b7170091990b82c91dc27da8c7a5");</script><!-- end Mixpanel -->
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBdVaHIXO92K3gEkbfYu3cs25Atv_clQd0">
</script>
</head>
<body>
<div id="fixed-header"></div>
<div id="loading-curtain" class="fade-animated locked">
<div class="loading-icon"></div>
</div>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&appId=567361250010506&version=v2.0";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div id="logo-wrapper" class="full invisible locked fade-animated">
<div id="social-applets">
<div class="twitter">
<a href="https://twitter.com/mhacks" class="twitter-follow-button" data-show-count="false" data-lang="en">Follow @mhacks</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<div class="facebook fb-like" data-href="https://www.facebook.com/MHacksHackathon" data-layout="button_count" data-action="like" data-show-faces="false" data-share="true"></div>
</div>
<svg id="logo-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 600" class="logo-animated" style="height: 50%; width: 100%;">
<path id="logo-outline-path" length="2345.321044921875"
d="M377.206,110.58c-23.801,40.272-47.359,78.114-71.243,115.471c-23.879-37.357-47.744-75.199-71.545-115.471C179.678,105.373,125.5,94.176,72.5,76.993c0,155.082,0,310.153,0,465.234c53-17.186,106-28.38,160-33.587c0-45.299,0-90.597,0-135.896c28,25.883,48.621,51.223,72.5,77.378c23.879-26.155,45.5-51.495,72.5-77.378c0,45.299,0,90.597,0,135.896c54,5.207,108,16.401,161,33.587c0-155.081,0-310.152,0-465.234C485.5,94.176,431.945,105.373,377.206,110.58z"
></path>
<circle class="shrunken grow-animated" cx="98.859" cy="144.016" len="0" r="10.613"></circle>
<circle class="shrunken grow-animated" cx="324.738" cy="352.357" len="0" r="13.846"></circle>
<circle class="shrunken grow-animated" cx="489.964" cy="147.25" len="0" r="13.846"></circle>
<circle class="shrunken grow-animated" cx="484.765" cy="378.602" len="0" r="19.045"></circle>
<circle class="shrunken grow-animated" cx="120.145" cy="488.788" len="0" r="13.846"></circle>
<circle class="shrunken grow-animated" cx="167.788" cy="299.998" len="0" r="21.147"></circle>
<circle class="shrunken grow-animated" cx="391.885" cy="233.814" len="0" r="11.807"></circle>
<circle class="shrunken grow-animated" cx="392.962" cy="315.377" len="0" r="5.767" stroke-width="3"></circle>
<circle class="shrunken grow-animated" cx="194.192" cy="411.494" len="0" r="13.846"></circle>
<circle class="shrunken grow-animated" cx="470.919" cy="474.942" len="0" r="13.846"></circle>
<circle class="shrunken grow-animated" cx="232.977" cy="184.764" len="0" r="5.767" stroke-width="3"></circle>
<path length="341.06646728515625" d="M98.859,144.016L167.788,299.998z"></path>
<path length="389.4176330566406" d="M167.788,299.998L120.145,488.788z"></path>
<path length="614.5804443359375" d="M98.859,144.016L324.738,352.357z"></path>
<path length="690.8568725585938" d="M98.859,144.016L120.145,488.788z"></path>
<path length="222.93666076660156" d="M484.765,378.602L392.962,315.377z"></path>
<path length="155.20352172851562" d="M324.738,352.357L392.962,315.377z"></path>
<path length="462.82080078125" d="M489.964,147.25L484.765,378.602z"></path>
<path length="229.1595916748047" d="M167.788,299.998L194.192,411.494z"></path>
<path length="214.0777587890625" d="M194.192,411.494L120.145,488.788z"></path>
<path length="261.63189697265625" d="M391.885,233.814L489.964,147.25z"></path>
<path length="272.47869873046875" d="M391.885,233.814L324.738,352.357z"></path>
<path length="467.33197021484375" d="M167.788,299.998L391.885,233.814z"></path>
<path length="344.036376953125" d="M484.765,378.602L391.885,233.814z"></path>
<path length="194.65977478027344" d="M470.919,474.942L484.765,378.602z"></path>
<path length="355.18035888671875" d="M470.919,474.942L392.962,315.377z"></path>
<path length="382.138671875" d="M324.738,352.357L232.977,184.764z"></path>
<path length="252.84983825683594" d="M167.788,293.086L232.977,184.764z"></path>
<path length="144.38075256347656" d="M98.859,144.016L72.038,76.993z"></path>
<path length="387.38067626953125" d="M72.038,76.993L232.977,184.764z"></path>
<path length="143.80555725097656" d="M120.145,488.788L72.038,542.227z"></path>
<path length="227.2808380126953" d="M120.145,488.788L232.038,508.64z"></path>
<path length="208.51541137695312" d="M194.192,411.494L232.038,508.64z"></path>
<path length="108.33064270019531" d="M194.192,411.494L232.038,372.744z"></path>
<path length="194.1138153076172" d="M232.038,372.744L167.788,299.998z"></path>
<path length="112.26608276367188" d="M324.738,352.357L377.038,372.744z"></path>
<path length="173.46624755859375" d="M391.885,233.814L305.5,226.051z"></path>
<path length="248.32154846191406" d="M391.885,233.814L376.743,110.58z"></path>
<path length="170.260498046875" d="M489.964,147.25L538.038,76.993z"></path>
<path length="344.1578369140625" d="M484.765,378.602L538.038,542.227z"></path>
<path length="190.07614135742188" d="M470.919,474.942L538.038,542.227z"></path>
<path length="199.49136352539062" d="M470.919,474.942L377.038,508.64z"></path>
<path length="215.77235412597656" d="M377.038,372.744L484.765,378.602z"></path>
<path length="337.7276916503906" d="M484.765,378.602L377.038,508.64z"></path>
<path length="199.66009521484375" d="M324.738,352.357L304.538,450.122z"></path>
<path length="189.8306884765625" d="M232.038,372.744L324.738,352.357z"></path>
<path length="148.3809051513672" d="M232.977,184.764L233.955,110.58z"></path>
<path length="238.0225067138672" d="M489.964,147.25L376.743,110.58z"></path>
</svg>
<div id="anchor-greeting" class="locked">
<h1>THE ORIGINAL</h1>
<h1>EPIC HACKATHON</h1>
<h2>SEPT 5-7, ANN ARBOR</h2>
<a href="#apply" class="btn btn-default smoothed colorified">APPLY</a>
</div>
</div>
<div id="main-container" class="container transparent fade-animated" style="margin-top: -66px;">
<nav id="main-nav" class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="#faq" class="mixpanel-tracked" type="nav-faq">FAQ</a></li>
<li><a href="#apply" class="mixpanel-tracked" type="nav-apply">Apply</a></li>
<li><a href="#sponsors" class="mixpanel-tracked" type="nav-sponsors">Sponsors</a></li>
<li><a href="http://blog.mhacks.org" target="_blank" class="mixpanel-tracked" type="nav-blog">Blog</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<section id="faq">
<div class="row">
<div class="col-md-12">
<h2>What is MHacks?</h2>
<p>A hackathon is the single greatest thing to happen to education since the Internet. Hacking isn't breaking into anything-- Its breaking your ideas out of the confines of your mind and building them in front of your own eyes and sharing that product with the world.</p><p>Students from across the world come to MHacks to build amazing things, transform dreams into realities, and to meet with other people with the same level of passion to build their future. MHacks is for creators. Students spend 36 hours building anything they can imagine, and take breaks to interact with technology visionaries, founders, and find new mentors. They meet with the hottest, most sought-after companies in the world who vie for hackers' attention. For MHacks, students give up a weekend of partying to invest a weekend in their personal growth by learning something new, and creating solutions to problems they see in the world. MHacks isn't just a hackathon -- its a community of people who have ideas and build them. Apply now and join us.</p>
</div>
</div>
<div class="row" style="text-align: center">
<h3>
<a id="faq-see-more" href="#">See More FAQ</a>
</h3>
</div>
</section>
<section class="row" id="faq-secondary" style="padding: 0; overflow: hidden; margin-bottom: 0;">
<div id="faq-pane" class="slide-animated faq-rolled colorified" style="position: relative;">
<div class="row">
<div class="col-md-4">
<h3>What can I hack on?</h3>
<p>First off, bring your laptop and smartphone. Additionally, we'll be providing lots of awesome hardware to hack on courtesy of our sponsors. Stay tuned to this page and MHacks social media for updates on specifics.</p>
</div>
<div class="col-md-4">
<h3>How will I get there?</h3>
<p>After your registration is confirmed and you receive word that you're coming to MHacks, we'll share information about buses and travel reimbursements. More than likely, we'll be sending a bus to a school near you.</p>
</div>
<div class="col-md-4">
<h3>What should I bring?</h3>
<p>Bring your laptop, smartphone, Student ID, sleeping bag if you have one, a change of clothes, toiletries, and a well-rested open mind. We'll do our best to get you anything else you need, so leave it to us to blow your mind.</p>
</div>
</div>
<h2 style="margin-top: 40px; margin-bottom: 0;">What if...</h2>
<div class="row">
<div class="col-md-4">
<h3>...I don't have an idea?</h3>
<p>No problem! Many hackers arrive at a hackathon with little to no idea of what they'll be building over the next 36 hours. Check out our API expo to see what's available to you as a result of our sponsors and talk to your team. Aim for a prize, or don't. Totally up to you.</p>
</div>
<div class="col-md-4">
<h3>...I don't have a team?</h3>
<p>A few weeks before MHacks, we'll connect ticketed hackers with a database of other available hackers looking for a team. If this is your first hackathon, there will definitely be others who don't have prior experience that are looking for team members, so don't worry.</p>
</div>
<div class="col-md-4">
<h3>...I'm broke?</h3>
<p>As a result of our committed sponsors, MHacks is free for undergraduates and high school students from across the world. If you don't fall into this category, contact us for how you can get involved.</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h3>...I live far away?</h3>
<p>We're willing to reimburse up to $300, depending on location, availability of transportation, and experience. We recommend you complete the application first, and after hearing back from us, consider travel logistics.</p>
</div>
<div class="col-md-4">
<h3>...I don't want to hack?</h3>
<p>You'll be allowed to come and see the expo on Sunday as everyone finishes up their hacks. We'll be sharing more information about the public expo soon. Please do not fill out the MHacks registration application.</p>
</div>
<div class="col-md-4">
<h3>...just let me register!</h3>
<p>You're in the right place! Just fill out our application at the bottom of this page. We want to know more about you and the projects you've worked on in the past, so feel free to include anything extra you think we should know.</p>
</div>
</div>
</div>
</section>
<section id="stats" class="slide-animated">
<div id="map-wrapper" style="position: relative;">
<div id="map-canvas"></div>
<div id="map-overlay" class="row">
<div class="col-md-3">
<div>
<div>
<h2>36<span class="glyphicon glyphicon-time" style="font-size: 70px;"></span></h2>
</div>
<div>
<h2>Hours</h2>
</div>
</div>
</div>
<div class="col-md-6">
<div>
<div>
<h1>7:1</h1>
</div>
<div>
<h2>Hacker:Mentor</h2>
</div>
<div>
<h2>Ratio</h2>
</div>
</div>
</div>
<div class="col-md-3">
<div>
<div>
<h2>1000</h2>
</div>
<div>
<h2>Hackers</h2>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="apply">
<form class="form-horizontal">
<fieldset>
<!-- Form Name -->
<legend>Apply</legend>
<h3 style="margin-top: 0; margin-bottom: 40px; text-align: center;">We've closed our first round of applications, but you can still apply in case spots open up.</h3>
<!-- Text input-->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="name">Your Name</label>
<div class="col-md-5">
<input id="name" name="name" type="text" placeholder="Student Hacker" class="form-control input-md" required="">
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="email">Your Email</label>
<div class="col-md-5">
<input id="email" name="email" type="text" placeholder="[email protected]" class="form-control input-md" required="">
<span class="help-block">Use your .edu email address, if possible.</span>
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="major">Your Major</label>
<div class="col-md-5">
<input id="major" name="major" type="text" placeholder="Design" class="form-control input-md" required="">
<span class="help-block">As of now, what's your intended major?</span>
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="school">Your School</label>
<div class="col-md-5">
<input id="school" name="school" type="text" placeholder="University" class="form-control input-md" required="">
</div>
</div>
<!-- Multiple Radios (inline) -->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="gender">Gender?</label>
<div class="col-md-5">
<label class="radio-inline" for="gender-0">
<input type="radio" name="gender" id="gender-0" value="male" checked="checked">
Male
</label>
<label class="radio-inline" for="gender-1">
<input type="radio" name="gender" id="gender-1" value="female">
Female
</label>
<label class="radio-inline" for="gender-2">
<input type="radio" name="gender" id="gender-2" value="other">
Other
</label>
</div>
</div>
<!-- Multiple Radios (inline) -->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="grad_status">What grade will you be in this Fall?</label>
<div class="col-md-5">
<label class="radio-inline" for="grad_status-0">
<input type="radio" name="grad_status" id="grad_status-0" value="freshman" checked="checked">
Freshman
</label>
<label class="radio-inline" for="grad_status-1">
<input type="radio" name="grad_status" id="grad_status-1" value="sophomore">
Sophomore
</label>
<label class="radio-inline" for="grad_status-2">
<input type="radio" name="grad_status" id="grad_status-2" value="junior">
Junior
</label>
<label class="radio-inline" for="grad_status-3">
<input type="radio" name="grad_status" id="grad_status-3" value="senior">
Senior
</label>
<label class="radio" for="grad_status-4">
<input type="radio" name="grad_status" id="grad_status-4" value="highschool">
High School
</label>
<label class="radio" for="grad_status-5">
<input type="radio" name="grad_status" id="grad_status-5" value="graduate">
Graduate Student
</label>
</div>
</div>
<!-- Multiple Radios (inline) -->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="experienced_hacker">Will this be your first hackathon?</label>
<div class="col-md-5">
<label class="radio" for="experienced_hacker-1">
<input type="radio" name="experienced_hacker" id="experienced_hacker-1" value="false" checked="checked">
Hellyeah!
</label>
<label class="radio" for="experienced_hacker-0">
<input type="radio" name="experienced_hacker" id="experienced_hacker-0" value="true">
I've built something at a hackathon before
</label>
</div>
</div>
<div id="experienced-form" class="contextual-form hidden fade-animated">
<!-- Text input-->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="last_hackathon_attended">Which hackathon did you last attend?</label>
<div class="col-md-5">
<input id="last_hackathon_attended" name="last_hackathon_attended" type="text" placeholder="MHacks Winter 2013" class="form-control input-md">
</div>
</div>
<!-- Textarea -->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="experience">Hackathons are about imagining and building ideas in real-time. What do you need to build something EPIC at MHacks IV?</label>
<div class="col-md-5">
<textarea class="form-control" id="experience" name="experience"></textarea>
</div>
</div>
<!-- Multiple Radios (inline) -->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="possible_mentor">Would you consider spending some time mentoring during MHacks?</label>
<div class="col-md-5">
<label class="radio-inline" for="possible_mentor-1">
<input type="radio" name="possible_mentor" id="possible_mentor-1" value="true" checked="checked">
Yes
</label>
<label class="radio-inline" for="possible_mentor-0">
<input type="radio" name="possible_mentor" id="possible_mentor-0" value="false">
No
</label>
</div>
</div>
</div>
<!-- Textarea -->
<div id="noob-form" class="contextual-form form-group fade-animated">
<label class="col-md-5 col-md-offset-1 control-label" for="new_hacker_thoughts">MHacks IV is about taking risks, learning and creating amazing things. How do you want to start your hackathon journey?</label>
<div class="col-md-5">
<textarea class="form-control" id="new_hacker_thoughts" name="new_hacker_thoughts"></textarea>
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="github">Your GitHub</label>
<div class="col-md-5">
<input id="github" name="github" type="text" placeholder="@you" class="form-control input-md">
<span class="help-block">A link to your profile or your handle are both acceptable.</span>
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="linkedin">Your LinkedIn</label>
<div class="col-md-5">
<input id="linkedin" name="linkedin" type="text" placeholder="https://www.linkedin.com/profile/@you" class="form-control input-md">
<span class="help-block">A link to your profile is preferred.</span>
</div>
</div>
<!-- Multiple Radios (inline) -->
<div class="form-group">
<label class="col-md-5 col-md-offset-1 control-label" for="requests_reimbursement">Will you need a travel reimbursement/arrangement to attend MHacks?</label>
<div class="col-md-5">
<label class="radio-inline" for="requests_reimbursement-1">
<input type="radio" name="requests_reimbursement" id="requests_reimbursement-1" value="true" required="">
Yes
</label>
<label class="radio-inline" for="requests_reimbursement-0">
<input type="radio" name="requests_reimbursement" id="requests_reimbursement-0" value="false" required="">
No
</label>
</div>
</div>
<!-- Button -->
<div class="form-group">
<div class="col-md-4 col-md-offset-4">
<button id="submit" type="submit" name="submit" data-loading-text="Submitting..." class="btn btn-primary">Let's Go</button>
</div>
</div>
</fieldset>
</form>
</section>
<section id="sponsors">
<div class="row">
<div class="col-md-12">
<h2 style="color: #191919;">Sponsors</h2>
</div>
</div>
<div class="row unobtanium">
<div class="col-md-10 col-md-offset-1">
<!--
___ _
/ _ \ _ _(_)_ _____ _ _
| | | | | | | \ \/ / _ \ | | |
| |_| | |_| | |> < __/ |_| |
\__\_\\__,_|_/_/\_\___|\__, |
|___/
-->
<a class="sponsor" target="_blank" href="https://www.quixey.com/" style="background-image: url(/img/sponsors/quixey/basic.png);"></a>
</div>
</div>
<div class="row gold">
<div class="col-md-6">
<!--
_ _ ___
/ \ _ __ _ __ | | ___ |_ _|_ __ ___
/ _ \ | '_ \| '_ \| |/ _ \ | || '_ \ / __|
/ ___ \| |_) | |_) | | __/_ | || | | | (__ _
/_/ \_\ .__/| .__/|_|\___( ) |___|_| |_|\___(_)
|_| |_| |/
-->
<a class="sponsor" target="_blank" href="http://www.apple.com/jobs/students" style="background-image: url(/img/sponsors/apple/rasterized.png); height: 110px; margin-top: 20px; margin-bottom: 60px;"></a>
</div>
<div class="col-md-6">
<!--
____ _ _
| __ )| | ___ ___ _ __ ___ | |__ ___ _ __ __ _
| _ \| |/ _ \ / _ \| '_ ` _ \| '_ \ / _ \ '__/ _` |
| |_) | | (_) | (_) | | | | | | |_) | __/ | | (_| |
|____/|_|\___/ \___/|_| |_| |_|_.__/ \___|_| \__, |
|___/
-->
<a class="sponsor" target="_blank" href="http://www.bloomberg.com/" style="background-image: url(/img/sponsors/bloomberg/standard_transparent.png);"></a>
</div>
</div>
<div class="row gold">
<div class="col-md-6">
<!--
____ _ _
/ ___| |__ _ __ _ _ ___| | ___ _ __
| | | '_ \| '__| | | / __| |/ _ \ '__|
| |___| | | | | | |_| \__ \ | __/ |
\____|_| |_|_| \__, |___/_|\___|_|
|___/
-->
<a class="sponsor" target="_blank" href="http://www.chryslercareers.com/" style="background-image: url(/img/sponsors/chrysler/standard.png); border-top: 20px solid transparent;"></a>
</div>
<div class="col-md-6">
<!--
_ __
__ _/ |/ /_ ____
/ _` | | '_ \_ /
| (_| | | (_) / /
\__,_|_|\___/___|
-->
<a class="sponsor" target="_blank" href="http://a16z.com/" style="background-image: url(/img/sponsors/a16z/new_grey_transparent.png); border-top: 20px solid transparent; border-bottom: 30px solid transparent;"></a>
</div>
</div>
<div class="row gold">
<div class="col-md-6">
<!--
____ _ _ _ ___
/ ___|__ _ _ __ (_) |_ __ _| | / _ \ _ __ ___
| | / _` | '_ \| | __/ _` | | | | | | '_ \ / _ \
| |__| (_| | |_) | | || (_| | | | |_| | | | | __/
\____\__,_| .__/|_|\__\__,_|_| \___/|_| |_|\___|
|_|
-->
<a class="sponsor" target="_blank" href="https://www.capitalone.com/" style="background-image: url(/img/sponsors/capitalone/better.png);"></a>
</div>
<div class="col-md-6">
<!--
_____ _ _ ____
| ___|_ _ ___ ___| |__ ___ ___ | | __ _ | _ \ __ _ _ __ ___ ___
| |_ / _` |/ __/ _ \ '_ \ / _ \ / _ \| |/ / _| |_ | |_) / _` | '__/ __|/ _ \
| _| (_| | (_| __/ |_) | (_) | (_) | < |_ _| | __/ (_| | | \__ \ __/
|_| \__,_|\___\___|_.__/ \___/ \___/|_|\_\ |_| |_| \__,_|_| |___/\___|
-->
<a class="sponsor" target="_blank" href="https://parse.com/" style="background-image: url(/img/sponsors/fbparse/combined.png);"></a>
</div>
</div>
<div class="row gold">
<div class="col-md-6 col-md-offset-3">
<!--
____ _ _ _ _ _
/ ___|___ __| (_) (_) |_ _ _
| | / _ \ / _` | | | | __| | | |
| |__| (_) | (_| | | | | |_| |_| |
\____\___/ \__,_|_|_|_|\__|\__, |
|___/
-->
<a class="sponsor" target="_blank" href="https://codility.com/" style="background-image: url(/img/sponsors/codility/transparent.png);"></a>
</div>
</div>
<div class="row silver">
<div class="col-sm-4">
<!--
____ _ _ _
| _ \(_) | | __ _ _ __
| |_) | | | |/ _` | '__|
| __/| | | | (_| | |
|_| |_|_|_|\__,_|_|
-->
<a class="sponsor" target="_blank" href="http://pillartechnology.com/careers/" style="background-image: url(/img/sponsors/pillar/standard.png); border: 10px solid transparent;"></a>
</div>
<div class="col-sm-4">
<!--
_ _ _
| | | | |__ ___ _ __
| | | | '_ \ / _ \ '__|
| |_| | |_) | __/ |
\___/|_.__/ \___|_|
-->
<a class="sponsor" target="_blank" href="https://www.uber.com/" style="background-image: url(/img/sponsors/uber/logotype_black.png);"></a>
</div>
<div class="col-sm-4">
<!--
_ _ _ ____ ____ _ ____ _ __
/ \ _ __ _ __ / \ _ __| |__ ___ _ __ / ___|| _ \ / \ | _ \| |/ /
/ _ \ | '_ \| '_ \ / _ \ | '__| '_ \ / _ \| '__| \___ \| |_) / _ \ | |_) | ' /
/ ___ \| | | | | | | / ___ \| | | |_) | (_) | | ___) | __/ ___ \| _ <| . \
/_/ \_\_| |_|_| |_| /_/ \_\_| |_.__/ \___/|_| |____/|_| /_/ \_\_| \_\_|\_\
-->
<a class="sponsor" target="_blank" href="http://www.annarborusa.org/" style="background-image: url(/img/sponsors/spark/standard.png); border: 10px solid transparent;"></a>
</div>
</div>
<div class="row silver">
<div class="col-sm-4">
<!--
__ __ _
| \/ | _____ _| |_ _ __ __ _
| |\/| |/ _ \ \/ / __| '__/ _` |
| | | | (_) > <| |_| | | (_| |
|_| |_|\___/_/\_\\__|_| \__,_|
-->
<a class="sponsor" target="_blank" href="http://developer.moxtra.com/moxo/index.html" style="background-image: url(/img/sponsors/moxtra/standard.png);"></a>
</div>
<div class="col-sm-4">
<!--
____ _ ____ _ _ _
| _ \ _ __(_)_ _____ / ___|__ _ _ __ (_) |_ __ _| |
| | | | '__| \ \ / / _ \ | | / _` | '_ \| | __/ _` | |
| |_| | | | |\ V / __/ | |__| (_| | |_) | | || (_| | |
|____/|_| |_| \_/ \___| \____\__,_| .__/|_|\__\__,_|_|
|_|
-->
<a class="sponsor" target="_blank" href="http://www.drivecapital.com/" style="background-image: url(/img/sponsors/drive/standard.png);"></a>
</div>
<div class="col-sm-4">
<!--
_____ _ ____ _ _ _
|_ _|__ ___| |__ / ___| _ __ ___ (_) |_| |__
| |/ _ \/ __| '_ \\___ \| '_ ` _ \| | __| '_ \
| | __/ (__| | | |___) | | | | | | | |_| | | |
|_|\___|\___|_| |_|____/|_| |_| |_|_|\__|_| |_|
-->
<a class="sponsor" target="_blank" href="http://www.techsmith.com/" style="background-image: url(/img/sponsors/tsc/transparent.png);"></a>
</div>
</div>
<div class="row silver">
<div class="col-sm-4">
<!--
_ ___ _
| |/ (_) | __
| ' /| | |/ /
| . \| | <
|_|\_\_|_|\_\
-->
<a class="sponsor" target="_blank" href="http://www.kik.com/careers" style="background-image: url(/img/sponsors/kik/standard_transparent.png);"></a>
</div>
<div class="col-sm-4">
<!--
____ _ _ ____ _
/ ___| ___ | | __| |_ __ ___ __ _ _ __ / ___| __ _ ___| |__ ___
| | _ / _ \| |/ _` | '_ ` _ \ / _` | '_ \ \___ \ / _` |/ __| '_ \/ __|
| |_| | (_) | | (_| | | | | | | (_| | | | | ___) | (_| | (__| | | \__ \
\____|\___/|_|\__,_|_| |_| |_|\__,_|_| |_| |____/ \__,_|\___|_| |_|___/
-->
<a class="sponsor" target="_blank" href="http://www.goldmansachs.com/careers/" style="background-image: url(/img/sponsors/goldmansachs/signature_black.png);"></a>
</div>
<div class="col-sm-4">
<!--
____ _
| _ \ ___ _ __ ___ (_)_ __ ___ ___
| | | |/ _ \| '_ ` _ \| | '_ \ / _ \/ __|
| |_| | (_) | | | | | | | | | | (_) \__ \
|____/ \___/|_| |_| |_|_|_| |_|\___/|___/
-->
<a class="sponsor" target="_blank" href="http://www.dominosbiz.com/Biz-Public-EN/Site+Content/Secondary/Careers/" style="background-image: url(/img/sponsors/dominos/standard.png);"></a>
</div>
</div>
<div class="row silver">
<div class="col-sm-4">
<!--
_ _
/ \ ___ ___ ___| |
/ _ \ / __/ __/ _ \ |
/ ___ \ (_| (_| __/ |
/_/ \_\___\___\___|_|
-->
<a class="sponsor" target="_blank" href="http://www.accel.com/" style="background-image: url(/img/sponsors/accel/standard.png);"></a>
</div>
<div class="col-sm-4">
<!--
____ _ _ _____
/ ___|| |_ __ _| |_ ___ | ___|_ _ _ __ _ __ ___
\___ \| __/ _` | __/ _ \ | |_ / _` | '__| '_ ` _ \
___) | || (_| | || __/ | _| (_| | | | | | | | |
|____/ \__\__,_|\__\___| |_| \__,_|_| |_| |_| |_|
-->
<a class="sponsor" target="_blank" href="http://www.statefarm.com/it" style="background-image: url(/img/sponsors/statefarm/standard.png);"></a>
</div>
<div class="col-sm-4">
<!--
____ _ __ __ _
| __ )| |_ _ ___| \/ (_)_ __
| _ \| | | | |/ _ \ |\/| | \ \/ /
| |_) | | |_| | __/ | | | |> <
|____/|_|\__,_|\___|_| |_|_/_/\_\
-->
<a class="sponsor" target="_blank" href="http://ibm.biz/HackBluemix" style="background-image: url(/img/sponsors/bluemix/ibm.png);"></a>
</div>
</div>
<div class="row silver">
<div class="col-sm-4">
<!--
____ _
/ ___| ___ ___ __ _| | ___
| | _ / _ \ / _ \ / _` | |/ _ \
| |_| | (_) | (_) | (_| | | __/
\____|\___/ \___/ \__, |_|\___|
|___/
-->
<a class="sponsor" target="_blank" href="https://www.google.com/" style="background-image: url(/img/sponsors/google/logo11w.png);"></a>
</div>
<div class="col-sm-4">
<!--
_ ______ ____ ____
| |/ / _ \ / ___| __ )
| ' /| |_) | | | _ \
| . \| __/| |___| |_) |
|_|\_\_| \____|____/
-->
<a class="sponsor" target="_blank" href="http://kpcbfellows.com/" style="background-image: url(/img/sponsors/kpcb/new.png);"></a>
</div>
<div class="col-sm-4">
<!--
__ __ _ __ _
| \/ (_) ___ _ __ ___ ___ ___ / _| |_
| |\/| | |/ __| '__/ _ \/ __|/ _ \| |_| __|
| | | | | (__| | | (_) \__ \ (_) | _| |_
|_| |_|_|\___|_| \___/|___/\___/|_| \__|
-->
<a class="sponsor" target="_blank" href="http://careers.microsoft.com/careers/en/us/collegehome.aspx" style="background-image: url(/img/sponsors/microsoft/standard.png);"></a>
</div>
</div>
<div class="row silver">
<div class="col-sm-4 col-sm-offset-4">
<!--
_ _ __ __ _ _ ____ ____ _____
| | | | \/ (_) ___| |__ / ___/ ___|| ____|
| | | | |\/| | |/ __| '_ \ | | \___ \| _|
| |_| | | | | | (__| | | | | |___ ___) | |___
\___/|_| |_|_|\___|_| |_| \____|____/|_____|
-->
<a class="sponsor" target="_blank" href="https://www.cse.umich.edu/" style="background-image: url(/img/sponsors/cse/rasterized.png);"></a>
</div>
</div>
<div class="row bronze">
<div class="col-sm-6">
<div class="col-xs-6">
<!--
_ _ _
| \ | | ___ ___| |_
| \| |/ _ \/ __| __|
| |\ | __/\__ \ |_
|_| \_|\___||___/\__|
-->
<a class="sponsor" target="_blank" href="https://nest.com/" style="background-image: url(/img/sponsors/nest/standard.png);"></a>
</div>
<div class="col-xs-6">
<!--
_____ _ _
| ___(_)_ __ ___| |__ __ _ ___ ___
| |_ | | '__/ _ \ '_ \ / _` / __|/ _ \
| _| | | | | __/ |_) | (_| \__ \ __/
|_| |_|_| \___|_.__/ \__,_|___/\___|
-->
<a class="sponsor" target="_blank" href="https://www.firebase.com/?utm_source=sponsorship&utm_medium=website&utm_campaign=mhacks" style="background-image: url(/img/sponsors/firebase/standard_transparent.png);"></a>
</div>
</div>
<div class="col-sm-6">
<div class="col-xs-6">
<!--
___ __ __ _ _
/ _ \ _ __ ___| \/ | ___ _ __ | |_| |__
| | | | '_ \ / _ \ |\/| |/ _ \| '_ \| __| '_ \
| |_| | | | | __/ | | | (_) | | | | |_| | | |
\___/|_| |_|\___|_| |_|\___/|_| |_|\__|_| |_|
-->
<a class="sponsor" target="_blank" href="https://onemonth.com/" style="background-image: url(/img/sponsors/onemonth/standard_transparent.png);"></a>
</div>
<div class="col-xs-6">
<!--
_ __ _
| | _ _ / _| |_
| | | | | | |_| __|
| |__| |_| | _| |_
|_____\__, |_| \__|
|___/
-->
<a class="sponsor" target="_blank" href="https://www.lyft.com/" style="background-image: url(/img/sponsors/lyft/logo_teal.png); border: 10px solid transparent;"></a>
</div>
</div>
</div>
<div class="row bronze">
<div class="col-sm-6">
<div class="col-xs-6">
<!--
__ __ _
| \/ | ___ ___| |_ _ _ _ __
| |\/| |/ _ \/ _ \ __| | | | '_ \
| | | | __/ __/ |_| |_| | |_) |
|_| |_|\___|\___|\__|\__,_| .__/
|_|
-->
<a class="sponsor" target="_blank" href="http://www.meetup.com/jobs/" style="background-image: url(/img/sponsors/meetup/standard_transparent.png);"></a>
</div>
<div class="col-xs-6">
<!--
_ _
| | ___ | |__
| | / _ \| '_ \
| |__| (_) | |_) |
|_____\___/|_.__/
-->
<a class="sponsor" target="_blank" href="https://www.lob.com/" style="background-image: url(/img/sponsors/lob/transparent.png);"></a>
</div>
</div>
<div class="col-sm-6">
<div class="col-xs-6">
<!--
_____ _
| ___|_ _ _ __ _ __ ___ | | ___ __ _ ___
| |_ / _` | '__| '_ ` _ \| | / _ \ / _` / __|
| _| (_| | | | | | | | | |__| (_) | (_| \__ \
|_| \__,_|_| |_| |_| |_|_____\___/ \__, |___/
|___/
-->
<a class="sponsor" target="_blank" href="https://farmlogs.com/" style="background-image: url(/img/sponsors/farmlogs/logotype_green.png);"></a>
</div>
<div class="col-xs-6">
<!--
_ _ _ ____ _ __ _
| | | |_ __ (_) ___ _ __ | _ \ __ _ ___(_)/ _(_) ___
| | | | '_ \| |/ _ \| '_ \ | |_) / _` |/ __| | |_| |/ __|
| |_| | | | | | (_) | | | | | __/ (_| | (__| | _| | (__
\___/|_| |_|_|\___/|_| |_| |_| \__,_|\___|_|_| |_|\___|
-->
<a class="sponsor" target="_blank" href="https://up.jobs/students.html" style="background-image: url(/img/sponsors/unionpacific/standard_transparent.png);"></a>
</div>
</div>
</div>
<div class="row bronze">
<div class="col-sm-6">
<div class="col-xs-6">
<!--
__ __
\ \ / /__
\ V / _ \
| | (_) |
|_|\___/
-->
<a class="sponsor" target="_blank" href="http://www.justyo.co/" style="background-image: url(/img/sponsors/yo/standard.jpg);"></a>
</div>
<div class="col-xs-6">
<!--
____
___| __ ) __ _ _ _
/ _ \ _ \ / _` | | | |
| __/ |_) | (_| | |_| |
\___|____/ \__,_|\__, |
|___/
-->
<a class="sponsor" target="_blank" href="http://www.ebay.com/" style="background-image: url(/img/sponsors/ebay/transparent.png);"></a>
</div>
</div>
<div class="col-sm-6">
<div class="col-xs-6">
<!--
_____ _____ __ __ ____
| ____|_ _| \/ |/ ___|
| _| | | | |\/| | |
| |___ | | | | | | |___
|_____| |_| |_| |_|\____|
-->
<a class="sponsor" target="_blank" href="http://www.salesforce.com/marketing-cloud/overview/" style="background-image: url(/img/sponsors/etmc/etmc_transparent.png);"></a>
</div>
<div class="col-xs-6">
<!--
____ _ _
| __ ) _ __(_) __ _ __ _ __| | ___
| _ \| '__| |/ _` |/ _` |/ _` |/ _ \
| |_) | | | | (_| | (_| | (_| | __/
|____/|_| |_|\__, |\__,_|\__,_|\___|
|___/
-->
<a class="sponsor" target="_blank" href="https://brigade.com/" style="background-image: url(/img/sponsors/brigade/square.jpg);"></a>
</div>
</div>
</div>
<div class="row bronze">
<div class="col-sm-6">
<div class="col-xs-6">
<!--
_____ _ _ _ _ _
|_ _| |__ __ _| |_ __ ___ (_) ___ | | __ _| |__ ___
| | | '_ \ / _` | | '_ ` _ \| |/ __| | | / _` | '_ \/ __|
| | | | | | (_| | | | | | | | | (__ | |__| (_| | |_) \__ \
|_| |_| |_|\__,_|_|_| |_| |_|_|\___| |_____\__,_|_.__/|___/
-->
<a class="sponsor" target="_blank" href="https://www.thalmic.com/" style="background-image: url(/img/sponsors/thalmic/standard.png);"></a>
</div>
<div class="col-xs-6">
<!--
____ _ _ ___ ___
| _ \ ___| | __ _| |_ ___|_ _/ _ \
| |_) / _ \ |/ _` | __/ _ \| | | | |
| _ < __/ | (_| | || __/| | |_| |
|_| \_\___|_|\__,_|\__\___|___\__\_\
-->
<a class="sponsor" target="_blank" href="https://www.relateiq.com/" style="background-image: url(/img/sponsors/relateiq/standard.png);"></a>
</div>
</div>
<div class="col-sm-6">
<div class="col-xs-6">
<!--
_ _ _ _ _
| | | | __ _ _ __ __| |___| |__ __ _| | _____
| |_| |/ _` | '_ \ / _` / __| '_ \ / _` | |/ / _ \
| _ | (_| | | | | (_| \__ \ | | | (_| | < __/
|_| |_|\__,_|_| |_|\__,_|___/_| |_|\__,_|_|\_\___|
-->
<a class="sponsor" target="_blank" href="http://joinhandshake.com/" style="background-image: url(/img/sponsors/handshake/vertical.png);"></a>
</div>
<div class="col-xs-6">
<!--
____ _____ _____
| _ \_ _| ____|
| | | || | | _|
| |_| || | | |___
|____/ |_| |_____|
-->
<a class="sponsor" target="_blank" href="https://www2.dteenergy.com/wps/portal/dte/aboutus/careers/" style="background-image: url(/img/sponsors/dte/standard.png);"></a>
</div>
</div>
</div>
<div class="row bronze">
<div class="col-sm-6">
<div class="col-xs-6">
<!--
_____ _ _ _ _____ _ _ _
|_ _| |__ (_) ___| | | ___|__ _ _ _ __ __| | __ _| |_(_) ___ _ __
| | | '_ \| |/ _ \ | | |_ / _ \| | | | '_ \ / _` |/ _` | __| |/ _ \| '_ \
| | | | | | | __/ | | _| (_) | |_| | | | | (_| | (_| | |_| | (_) | | | |
|_| |_| |_|_|\___|_| |_| \___/ \__,_|_| |_|\__,_|\__,_|\__|_|\___/|_| |_|
-->
<a class="sponsor" target="_blank" href="http://thielfoundation.org/" style="background-image: url(/img/sponsors/thiel/dark.png);"></a>
</div>
<div class="col-xs-6">
<!--
_ _ _
___| |_ __ _ ___| | _______ _____| |__ __ _ _ __ __ _ ___
/ __| __/ _` |/ __| |/ / _ \ \/ / __| '_ \ / _` | '_ \ / _` |/ _ \
\__ \ || (_| | (__| < __/> < (__| | | | (_| | | | | (_| | __/
|___/\__\__,_|\___|_|\_\___/_/\_\___|_| |_|\__,_|_| |_|\__, |\___|
|___/
-->
<a class="sponsor" target="_blank" href="http://stackoverflow.com/" style="background-image: url(/img/sponsors/stackexchange/stackoverflow.png);"></a>
</div>
</div>
<div class="col-sm-6">
<div class="col-xs-6">
<!--
___ _ _
|_ _|_ __ __| | ___ ___ __| |
| || '_ \ / _` |/ _ \/ _ \/ _` |
| || | | | (_| | __/ __/ (_| |
|___|_| |_|\__,_|\___|\___|\__,_|
-->
<a class="sponsor" target="_blank" href="http://www.indeed.com/" style="background-image: url(/img/sponsors/indeed/primary_logotype_tagline.png);"></a>
</div>
<div class="col-xs-6">
<!--
______
|__ (_) __ _ __ _ ___ ___
/ /| |/ _` |/ _` |/ _ \/ _ \
/ /_| | (_| | (_| | __/ (_) |
/____|_|\__, |\__, |\___|\___/
|___/ |___/
-->
<a class="sponsor" target="_blank" href="https://www.ziggeo.com/" style="background-image: url(/img/sponsors/ziggeo/standard.png);"></a>
</div>
</div>
</div>
<div class="row bronze">
<div class="col-sm-6">
<div class="col-xs-6">
<!--
__ __ _ _ _
| \/ | | | | | |
| |\/| | | | |_| |
| | | | |___| _ |
|_| |_|_____|_| |_|
-->
<a class="sponsor" target="_blank" href="http://mlh.io/" style="background-image: url(/img/sponsors/mlh/standard.png);"></a>
</div>
<div class="col-xs-6">
<!--
_____ _ _ _
|_ _|_ _(_) (_) ___
| | \ \ /\ / / | | |/ _ \
| | \ V V /| | | | (_) |
|_| \_/\_/ |_|_|_|\___/
-->
<a class="sponsor" target="_blank" href="http://bit.ly/1piG0pz" style="background-image: url(/img/sponsors/mlh/twilio/standard.png);"></a>
</div>
</div>
<div class="col-sm-6">
<div class="col-xs-6">
<!--
__ __ ____ ____
| \/ | ___ _ __ __ _ ___ | _ \| __ )
| |\/| |/ _ \| '_ \ / _` |/ _ \| | | | _ \
| | | | (_) | | | | (_| | (_) | |_| | |_) |
|_| |_|\___/|_| |_|\__, |\___/|____/|____/
|___/
-->
<a class="sponsor" target="_blank" href="http://www.mongodb.org/" style="background-image: url(/img/sponsors/mlh/mongodb/transparent.png);"></a>
</div>
<div class="col-xs-6">
<!--
__ __ _
| \/ | __ _ ___| |__ ___ _ __ _ _
| |\/| |/ _` / __| '_ \ / _ \ '__| | | |