-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
576 lines (514 loc) · 20.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Madhacks</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta property="og:url" content="https://www.madhacks.org/">
<meta property="og:title" content="MadHacks">
<meta property="og:description" content="UW-Madison's national hackathon">
<meta property="og:image" content="https://www.madhacks.org/assets/img/mh.png">
<link rel="shortcut icon" href="assets/img/favicon.png">
<link rel="stylesheet" href="assets/css/bootstrap.css" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/mobile.css" />
<link href='https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,900italic,900,700italic,700'
rel='stylesheet' type='text/css'>
<!-- 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', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-59745668-1', 'auto');
ga('send', 'pageview');
</script>
<script>
/**
* Function that tracks a click on an outbound link in Analytics.
* This function takes a valid URL string as an argument, and uses that URL string
* as the event label. Setting the transport method to 'beacon' lets the hit be sent
* using 'navigator.sendBeacon' in browser that support it.
*/
var trackOutboundLink = function (url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function () { document.location = url; }
});
}
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<!-- Sets up live Twitter -->
<script>
window.twttr = (function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0],
t = window.twttr || {};
if (d.getElementById(id)) return t;
js = d.createElement(s);
js.id = id;
js.src = "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
t._e = [];
t.ready = function (f) {
t._e.push(f);
};
return t;
}(document, "script", "twitter-wjs"));
</script>
<!-- Sets up google map -->
<script>
function initMap() {
var uluru = { lat: 43.071495, lng: -89.406558 };
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 16,
center: uluru
});
var marker = new google.maps.Marker({
position: uluru,
map: map
});
}
</script>
</head>
<body>
<a id="mlh-trust-badge" href="https://mlh.io/seasons/na-2018/events?utm_source=na-2018&utm_medium=TrustBadge&utm_campaign=na-2018&utm_content=white"
- target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2018/white.svg" alt="Major League Hacking 2018 Hackathon Season" style="width:100%"></a>
<section id="header">
<div class="col-sm-2 col-md-3 hidden-xs"></div>
<div class="container col-xs-12 col-sm-8 col-md-6">
<div id="header-container">
<div id="header-left" class="col-xs-3 col-sm-4">
<img src="assets/img/mh.png" id="header-logo">
</div>
<div id="header-right" class="col-xs-9 col-sm-8">
<div id="header-text">
<span id="page-title">JOIN US AT</span><br/>
<span id="logo-large">MADHACKS</span><br/>
<span id="term">SPRING 2018</span>
</div>
</div>
</div>
<section id="social">
<span id="follow">FOLLOW US</span>
<a href="https://twitter.com/MadHacksUW" class="svg">
<object data="assets/img/facebook.svg" type="image/svg+xml" id="follow-img">
</object>
</a>
<a href="https://twitter.com/MadHacksUW" class="svg">
<object data="assets/img/twitter.svg" type="image/svg+xml" id="follow-img">
</object>
</a>
<a href="mailto:team@madhacks.org" class="svg">
<object data="assets/img/email.svg" type="image/svg+xml" id="follow-img">
</object>
</a>
</section>
</div>
</section>
<!-- This is the bulk of the content and should be centered on larger screens -->
<div class="row" id="body-content">
<!-- This div just helps to give space on either side of the content -->
<div class="hidden-xs hidden-sm col-md-2 col-lg-3 clearfix outside"></div>
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-6">
<!-- All content should go after this line -->
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<!-- Application -->
<div id="application-text" class="row">
<p>Stay tuned for MadHacks Spring 2018!</p>
</div>
<div id="button-holder" class="row">
<a href="#sponsor-header">
<div class="col-sm-12 info-button">Sponsorship</div>
</a>
</div>
<div id="about-us-header" class="section-header">
UPDATES
</div>
<a class="twitter-timeline col-xs-12" data-height="300" data-theme="dark" data-link-color="#2B7BB9" href="https://twitter.com/MadHacksUW">Tweets by MadHacksUW</a>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<!-- About us -->
<div id="about-us-header" class="section-header">
ABOUT US
</div>
<div id="about-us-content" class="row">
<div id="about-us-what-img" class="col-sm-5"></div>
<div id="about-us-what-text" class="container-fluid col-sm-7">
<div id="about-us-large">
WHAT
</div>
<div id="about-us-what-text-text" class="col-xs-12">
What happens when you mix hackers and electronic medical devices?
Come to MadHacks and find out!
We'll have hardware, mentors, introductory projects, tech talks, team challenges, games, and activities for everyone interested in computer science, information security and biomedical engineering.
</div>
</div>
</div>
<div id="about-us-content" class="row">
<div id="about-us-who-text" class="col-xs-12">
<div id="about-us-large">
HOW
</div>
<div id="about-us-what-text-text" class="col-xs-12">
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.
</div>
</div>
</div>
<div id="about-us-content" class="row">
<div id="about-us-who-text" class="col-xs-12">
<div id="about-us-large">
WHERE
</div>
<div id="about-us-what-text-text" class="col-xs-12">
<div class="row">
<div id="address" class="col-sm-4">
Computer Sciences<br>
Room 1240<br><br>
1210 W Dayton St<br>
Madison, WI 53706<br><br>
</div>
<div id="map" class="col-sm-8"></div>
</div>
</div>
</div>
</div>
<!-- FAQ -->
<div id="faq-header" class="section-header">
F.A.Q.
</div>
<div id="faq-content" class="row">
<div id="faq-text" class="col-xs-12">
<div id="faq-large">
What is a Hackathon?
</div>
<div id="faq-text-inner" class="col-xs-12">
If you've never had the pleasure of attending a hackathon before,
<a href="https://medium.com/hackathons-anonymous/wtf-is-a-hackathon-92668579601#.67r2pnzap">checkout this post</a> about what a hackathon is and why you should attend one!
<br>
<br> Be sure to review the <a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf">MLH code of conduct</a> to know what to expect at MadHacks!
</div>
</div>
</div>
<div id="faq-content" class="row">
<div id="faq-text" class="col-xs-12">
<div id="faq-large">
What should I bring?
</div>
<div id="faq-text-inner" class="col-xs-12">
Please bring your student ID or government issued ID for check-in.
</div>
</div>
</div>
<div id="faq-content" class="row">
<div id="faq-text" class="col-xs-12">
<div id="faq-large">
How can I help?
</div>
<div id="faq-text-inner" class="col-xs-12">
We're always looking for extra hands! Please contact <a href="mailto:team@madhacks.org">team@madhacks.org</a> if you are interested in pitching in.
</div>
</div>
</div>
<div id="faq-content" class="row">
<div id="faq-text" class="col-xs-12">
<div id="faq-large">
Anything else I should know?
</div>
<div id="faq-text-inner" class="col-xs-12">
Please be aware that by attending this event, you agree to the MLH Data Sharing Notice:
<br>
<br>
<em>I agree to the terms of both the <a href="https://github.com/MLH/mlh-policies/tree/master/prize-terms-and-conditions">MLH Contest Terms and Conditions</a>
and the <a href="https://mlh.io/privacy">MLH Privacy Policy</a>. Please note that you may receive pre and post-event informational e-mails and occasional
messages about hackathons from MLH as per the MLH Privacy Policy.
</em>
</div>
</div>
</div>
<!-- Sponsorship -->
<div id="sponsor-header" class="section-header">
SPONSORSHIP
</div>
<div class="row">
<div id="sponsor-img" class="col-sm-6">
</div>
<div id="sponsors-text" class="col-sm-6">
<p>FIND OUT MORE ABOUT OUR SPONSORSHIP TIERS</p>
<a href="https://www.madhacks.org/files/sponsor.pdf">
<div id="sponsorship-button">
SPONSOR >
</div>
</a>
</div>
</div>
<!-- Sponsor images -->
<div class="row">
<div class="col-sm-4 spons-logo-container">
<img class="spons-logo" src="assets/img/heartbleed-logos/singlewire.png">
</div>
<div class="col-sm-4 spons-logo-container">
<img class="spons-logo" src="assets/img/heartbleed-logos/microsoft.png">
</div>
<div class="col-sm-4 spons-logo-container">
<img class="spons-logo" src="assets/img/heartbleed-logos/liberty_mutual.png">
</div>
</div>
<div class="row">
<div class="col-sm-4 spons-logo-container">
<img class="spons-logo" src="assets/img/heartbleed-logos/widen.png">
</div>
<div class="col-sm-4 spons-logo-container">
<img class="spons-logo" src="assets/img/heartbleed-logos/shopbop_east_dane.png">
</div>
<div class="col-sm-4 spons-logo-container">
<img class="spons-logo" src="assets/img/heartbleed-logos/CITI_FINTECH_LOGO_NEW_OBP.SVG">
</div>
</div>
<div class="row">
<div class="col-sm-3 col-sm-offset-3">
<img class="spons-logo" src="assets/img/heartbleed-logos/Epic.png">
</div>
<div class="col-sm-3 spons-logo-container">
<img class="spons-logo" src="assets/img/heartbleed-logos/american_family.png">
</div>
</div>
<div class="row">
<div class="col-sm-3 col-sm-offset-3">
<img class="spons-logo" src="assets/img/heartbleed-logos/warf.png">
</div>
<div class="col-sm-3 spons-logo-container">
<img class="spons-logo" src="assets/img/heartbleed-logos/perblue.png">
</div>
</div>
<hr/>
<div class="row">
<div class="col-sm-4 col-sm-offset-4">
<img class="spons-logo" src="assets/img/logos/mlh-logo-white.png">
</div>
</div>
<div class="section-header">
Volunteer
</div>
<div id="application-text" class="row">
<p>Want to help for the next hackathon?</p>
</div>
<div id="button-holder" class="row">
<a href="http://goo.gl/forms/rmMHXN5KtKqMxkGj2">
<div class="col-sm-12 info-button"> Volunteer!</div>
</a>
</div>
<div id="acknowledgements-header" class="section-header">
Credits
</div>
<div class="row" id="acknowledgements-title">
<p>We would like to give a special thanks to all of the volunteers who make MadHacks possible:</p>
<div class="acknowledgements-text">
<div class="row credits">
<div class="col-sm-4">
<a href="https://www.linkedin.com/in/jacobahamel/" target="_blank">Jake Hamel</a>
</div>
<div class="col-sm-8">
Madhacks Director
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
<a href="https://www.linkedin.com/in/carolinehardin" target="_blank">Caroline D. Hardin</a>
</div>
<div class="col-sm-8">
MadHacks Director Emeritus, Assistant Director, PhD Student of Computer Science Education
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
<a href="https://austinhartzheim.me/" target="_blank">Austin Hartzheim</a>
</div>
<div class="col-sm-8">
MadHacks Director Emeritus, Support Coordinator
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
Matthew Parker
</div>
<div class="col-sm-8">
Admissions Coordinator
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
<a href="https://www.linkedin.com/in/andrew-nguyen-87a82987?trk=hp-identity-name" target="_blank">Andrew Nguyen</a>
</div>
<div class="col-sm-8">
Engineering/Design Coordinator
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
<a href="https://www.linkedin.com/in/hjennye/" target="_blank">Haengjung Ye</a>
</div>
<div class="col-sm-8">
Mentorship Team Coordinator
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
Nathaniel Krakauer
</div>
<div class="col-sm-8">
Public Relations Coordinator
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
<a href="http://jeichenhofer.com/" target="_blank">Joe Eichenhofer</a>
</div>
<div class="col-sm-8">
Public Relations Team Member
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
Jeremy Koritzinsky
</div>
<div class="col-sm-8">
Sponsor Coordinator
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
Yuke Liang
</div>
<div class="col-sm-8">
Sponsor Team Member
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
Payton Garland
</div>
<div class="col-sm-8">
Sponsor Team Member
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
Andrew Turner
</div>
<div class="col-sm-8">
Sponsor Team Member
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
Aaron Levin
</div>
<div class="col-sm-8">
Sponsor Team Member
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
<a href="https://linkedin.com/in/yash-shah-bb8b29127" target="_blank">Yash Shah</a>
</div>
<div class="col-sm-8">
Travel Coordinator
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
<a href="https://www.linkedin.com/in/muhamad-firdaus-husaini-6a0b5113b/" target="_blank">Muhamad Firdaus Husaini</a>
</div>
<div class="col-sm-8">
Volunteer Coordinator
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
Ian Mark
</div>
<div class="col-sm-8">
Treasurer
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
Ying Ashley Zhang
</div>
<div class="col-sm-8">
Activites Team Member
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
<a href="https://www.linkedin.com/in/adalvi97/" target="_blank">Aniket Dalvi</a>
</div>
<div class="col-sm-8">
Food Coordinator
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
<a href="https://www.linkedin.com/in/quinn-siebers-2515a964/" target="_blank">Quinn Siebers</a>
</div>
<div class="col-sm-8">
Graphic Design Coordinator
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
Kara Edelstein
</div>
<div class="col-sm-8">
Graphic Design Team Member
</div>
</div>
<div class="row credits">
<div class="col-sm-4">
Educational Sciences Department<br> DoIT<br> WACM<br> Matthew Berland
</div>
<div class="col-sm-8">
Campus Support
</div>
</div>
</div>
</div>
<!-- In the news -->
<div class="row">
<a href="http://isthmus.com/news/news/madhacks-focuses-on-drawing-novices/">
<div id="in-the-news-text" class="col-sm-6">
<i>IN THE NEWS</i><br/>
<img id="isthmus" src="assets/img/isthmus-logo.png">
</div>
</a>
<div id="in-the-news-picture" class="col-sm-6">
</div>
</div>
<!-- End body content -->
</div>
</div>
<section id="contact" class="contact-bkg col-xs-12">
<div class="hidden-xs hidden-sm col-md-2 col-lg-3 clearfix"></div>
<div class="container-fluid col-xs-12 col-sm-8 col-md-8 col-lg-6 clearfix">
<div id="contact-header"><i>CONTACT US</i></div>
<a href="mailto:team@madhacks.org">
<div id="contact-email">
team@madhacks.org
</div>
</a>
<div class="col-xs-12" id="contact-credit">
Photo Credit: MLH Made by MadHacks
</div>
</div>
</section>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/jquery-2.1.4.min.js"></script>
<script src="assets/js/functions.js" type="text/javascript"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAe9DfnZkp4zlexhjUnIdMDX_jEJJrIMzs&callback=initMap"></script>
</body>
</html>