-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
562 lines (538 loc) · 27.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="iNTUition 2016, NTU's only student-run 24 hour hackathon!">
<meta name="author" content="IEEE NTU Student Branch">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="http://intuition16.ieeentu.com" />
<meta property="og:title" content="iNTUition 2016" />
<meta property="og:description" content="NTU's only student-run 24 hour hackathon organized by NTU IEEE Students' Branch. This hackathon is open to all students currently studying in Singapore." />
<meta property="og:image" content="http://intuition16.ieeentu.com/assets/banner.png" />
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css">
<!-- Custom Fonts -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic|Merriweather+Sans:400,300,300italic,400italic,700,700italic,800,800italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/custom.css" type="text/css">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<title>iNTUition 2016</title>
</head>
<body id="page-top">
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" 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>
<a class="navbar-brand page-scroll" href="#page-top"><img src="assets/logo-navbar.png" class="navbar-img"></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a class="page-scroll" href="#faqs">FAQs</a>
</li>
<li>
<a class="page-scroll" href="#prizes">Prizes</a>
</li>
<li>
<a class="page-scroll" href="#schedule">Schedule</a>
</li>
<li>
<a class="page-scroll" href="#judges">Judges</a>
</li>
<li>
<a class="page-scroll" href="#getting-here">Getting Here</a>
</li>
<li>
<a class="page-scroll" href="#sponsors">Sponsors</a>
</li>
</ul>
</div>
</div>
</nav>
<header>
<div class="header-content">
<div class="header-content-inner">
<img src="assets/main-logo.png" height="300px" width="auto" style="margin-top: 10px;">
<h1>A 24 hour free-for-all hackathon!</h1>
<h4>12 PM, 12 March - 5 PM, 13 March 2016 @ NTU, Singapore</h4>
<h4 style="padding-top: 10px;"><strong>This hackathon is now over. You can check out the hacks built <a href="https://sprint.hackerearth.com/sprints/intuition-2016/">here</a> & photos from the event <a href="https://www.facebook.com/media/set/?set=a.1084450471617227.1073741839.429723073756640&type=1&l=9ee4da928f">here</a>.</strong></h4>
<hr>
<div class="container-fluid">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="row">
<div class="col-md-6">
<a href="https://www.facebook.com/events/502317373280826/" target="_blank" class="btn btn-primary btn-xl">Facebook Event Page</a>
</div>
<div class="col-md-6">
<a class="btn btn-primary btn-xl typeform-share" href="https://ckjoshi9.typeform.com/to/BezoQE" data-mode="1" target="_blank">Signups Closed</a>
</div>
</div>
</div>
</div>
</div>
<script>
(function () {
var qs, js, q, s, d = document,
gi = d.getElementById,
ce = d.createElement,
gt = d.getElementsByTagName,
id = 'typef_orm',
b = 'https://s3-eu-west-1.amazonaws.com/share.typeform.com/';
if (!gi.call(d, id)) {
js = ce.call(d, 'script');
js.id = id;
js.src = b + 'share.js';
q = gt.call(d, 'script')[0];
q.parentNode.insertBefore(js, q)
}
id = id + '_';
if (!gi.call(d, id)) {
qs = ce.call(d, 'link');
qs.rel = 'stylesheet';
qs.id = id;
qs.href = b + 'share-button.css';
s = gt.call(d, 'head')[0];
s.appendChild(qs, s)
}
})()
</script>
</div>
</div>
</header>
<section class="bg-dark" id="faqs">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>FREQUENTLY ASKED QUESTIONS</h1>
<hr class="primary">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4 text-left">
<div class="faq-box">
<h3>What is <em>iNTUition?</em></h3>
<p><em>iNTUition</em> is NTU's only student-run 24 hour hackathon, held by <a href="https://www.facebook.com/IEEENTU/" target="_blank">IEEE NTU Student Branch</a>. A hackathon is an event where newbies and seasoned veterans alike spend the weekend building meaningful and/or crazy projects from scratch. The term "hack" is used to describe how multiple technologies can be used together in a new and innovative way.</p>
</div>
</div>
<div class="col-md-4 text-left">
<div class="faq-box">
<h3>Who can participate?</h3>
<p>Students of all levels in any educational institution in Singapore & South-East Asia can sign up for <em>iNTUition</em>. If you are passionate about learning new technologies, building awesome projects and meeting like-minded hackers, we want you here!</p>
</div>
</div>
<div class="col-md-4 text-left">
<div class="faq-box">
<h3>Does this cost money?</h3>
<p>Nope! Admission is free. Just register online and show up at the <a href="#getting-here" class="page-scroll">venue</a> on 12th March! We'll provide food, caffeine, Red Bull, WiFi and a place for you to hack for the entire duration of the event.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 text-left">
<div class="faq-box">
<h3>What should I bring?</h3>
<p>Bring your Matriculation Card/Student ID for admission and your laptop/hardware for hacking. We’ll provide snacks and meals throughout the event. You can also bring your sleeping bag and toiletries.</p>
</div>
</div>
<div class="col-md-4 text-left">
<div class="faq-box">
<h3>What if I don't know how to code?</h3>
<p>No worries! Hackathons are the perfect environment to learn and apply something new in a short period of time! We are also organizing <em>Road to iNTUition</em>, a series of workshops before the actual hackathon to help you build something you can be proud of by the end of the weekend.</p>
</div>
</div>
<div class="col-md-4 text-left">
<div class="faq-box">
<h3>How do teams work?</h3>
<p>A team can have between 2 and 4 members. You can sign up as a team or start/join one on the spot. Note that at least one team member must be present throughout the competition. Flying solo is also an option, although hackathons are more fun when you work together!</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 text-left">
<div class="faq-box">
<h3>What do I build?</h3>
<p>Build something new and crazy that you are passionate about; <em>iNTUition</em> has no theme! Hacks will be ranked on technical difficulty, creativity, design & general impressiveness. Please note that you cannot recycle old projects or start developing your hack beforehand, however, you may use parts of projects you've built before.</p>
</div>
</div>
<div class="col-md-4 text-left">
<div class="faq-box">
<h3>What about hardware hacks?</h3>
<p>This year, <em>iNTUition</em> has partnered up with 12Geeks to provide you with the opportunity to loan a variety of hardware kits including Arduino Unos, Raspberry Pis and Spark Photons for free to help you with your hack! Just let us know before the hackathon if you would like to reserve a kit. You can also buy these kits from 12Geeks during the hackathon if you want to take one home.</p>
</div>
</div>
<div class="col-md-4 text-left">
<div class="faq-box">
<h3>How does judging/pitching work?</h3>
<p>After the development period, a panel of judges will choose the top 7 teams to do short pitches of their hacks. You can find out about our prizes <a href="#prizes" class="page-scroll">here</a>.</p>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-12 text-center">
<div class="faq-box">
<h3>404: Question not found?</h3>
<p>Feel free to drop us an <a href="mailto:[email protected]">e-mail</a> or reach out to us on <a href="https://www.facebook.com/events/502317373280826/">Facebook</a>.</p>
</div>
</div>
</div>
</div>
</section>
<section class="bg-primary" id="prizes">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>PRIZES</h1>
<hr class="light">
</div>
</div>
</div>
<div class="container">
<div class="row text-center">
<div class="col-md-6 col-md-offset-3">
<h2>1st Prize</h2>
<h4>Lenovo Phablets</h4>
</div>
</div>
<div class="row text-center">
<div class="col-md-6 col-md-offset-3">
<h2>2nd Prize</h2>
<h4>Sonic Ear Xenon 2 Gaming Headphones</h4>
<h4>$200 Amazon Gift Card</h4>
</div>
</div>
<div class="row text-center">
<div class="col-md-6 col-md-offset-3">
<h2>3rd Prize</h2>
<h4>LG Music Flow</h4>
<h4>30% off Yoga 260</h4>
<h4>25% off Yoga 8" & Yoga 10"</h4>
</div>
</div>
<div class="row text-center">
<div class="col-md-6 col-md-offset-3">
<h2>Best Hardware Hack</h2>
<h4>Particle Photons</h4>
</div>
</div>
<div class="row text-center">
<div class="col-md-6 col-md-offset-3">
<h2>Best PayPal/Braintree API Integration</h2>
<h4>BB-8 App-Enabled Droid by Sphero</h4>
<h4>Razer Mouse</h4>
<h4>Arduino Starter Packs</h4>
</div>
</div>
</div>
</section>
<section class="bg-dark" id="schedule">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>SCHEDULE</h1>
<hr>
</div>
</div>
</div>
<div class="container" style="margin-top: 30px;">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="row">
<div class="col-md-6">
<div class="table-responsive">
<table class="table">
<tr>
<th colspan="3">Day 1 (12th March)</th>
</tr>
<tr>
<td>1200</td>
<td>1300</td>
<td>Registration</td>
</tr>
<tr>
<td>1300</td>
<td>1400</td>
<td>Briefing & Sponsor Talks</td>
</tr>
<tr>
<td colspan="2">1400</td>
<td>Hacking Begins!</td>
</tr>
<tr>
<td>1600</td>
<td>1730</td>
<td>Workshop by PayPal</td>
</tr>
<tr>
<td>1800</td>
<td>1900</td>
<td>Dinner</td>
</tr>
<tr>
<td>2300</td>
<td>2400</td>
<td>Supper</td>
</tr>
</table>
</div>
</div>
<div class="col-md-6">
<div class="table-responsive">
<table class="table">
<tr>
<th colspan="3">Day 2 (13th March)</th>
</tr>
<tr>
<td>0600</td>
<td>0700</td>
<td>Breakfast</td>
</tr>
<tr>
<td>1000</td>
<td>1030</td>
<td>Snacks</td>
</tr>
<tr>
<td>1200</td>
<td>1300</td>
<td>Lunch</td>
</tr>
<tr>
<td colspan="2">1400</td>
<td>Hacking Ends!</td>
</tr>
<tr>
<td>1500</td>
<td>1530</td>
<td>Presentations by Selected Teams</td>
</tr>
<tr>
<td>1600</td>
<td>1630</td>
<td>Prize Presentation</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bg-primary" id="judges">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>OUR JUDGES</h1>
<hr class="light">
</div>
</div>
</div>
<div class="container" style="margin-top: 40px; padding-bottom: 40px;">
<div class="row">
<div class="col-md-3 col-md-offset-1 text-right">
<h2>Fazli Mansoor</h2>
<h4><em>Director, 12Geeks</em></h4>
</div>
<div class="col-md-2">
<img src="assets/Fazli.jpg" class="img-responsive img-circle">
</div>
<div class="col-md-2">
<img src="assets/Viren.jpg" class="img-responsive img-circle">
</div>
<div class="col-md-3">
<h2>Viren Shetty</h2>
<h4><em>Co-Founder, PlusMargin</em></h4>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<div class="col-md-3 col-md-offset-1 text-right">
<h2>Deepank Vora</h2>
<h4><em>Developer, PayPal</em></h4>
</div>
<div class="col-md-2">
<img src="assets/Deepank.jpg" class="img-responsive img-circle">
</div>
<div class="col-md-2">
<img src="assets/Raj%20Vijay.jpg" class="img-responsive img-circle">
</div>
<div class="col-md-3">
<h2>Raj Vijay</h2>
<h4><em>Developer, PayPal</em></h4>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<div class="col-md-2 col-md-offset-5">
<img src="assets/Sahil.jpg" class="img-responsive img-circle">
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center">
<h2>Sahil Punjabi</h2>
<h4><em>President, IEEE NTU</em></h4>
</div>
</div>
</div>
</section>
<section class="bg-dark" id="getting-here">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>GETTING HERE</h1>
<hr>
</div>
</div>
</div>
<div class="container" style="margin-top: 30px;">
<div class="row">
<div class="col-md-5 col-md-offset-1">
<div style="overflow:hidden;width:500px;height:300px;resize:none;max-width:100%;">
<div id="embed-map-display" style="height:100%; width:100%;max-width:100%;">
<iframe style="height:100%;width:100%;border:0;" frameborder="0" src="https://www.google.com/maps/embed/v1/place?q=The+Hive+NTU+Singapore&key=AIzaSyAN0om9mFmy1QN6Wf54tXAowK4eT0ZUPrU"></iframe>
</div>
</div>
<script src="https://www.bootstrapskins.com/google-maps-authorization.js?id=fda353b3-6519-7774-04c2-362d409fcde5&c=google-map-html&u=1455830347" defer="defer" async="async"></script>
</div>
<div class="col-md-5">
<p class="text-justify">Take the East West MRT Line to Pioneer MRT Station. Get down the flight of stairs to your left as you get out of the station and take the 179 bus from <em>Blk 651A</em>. Alight after 12 stops at Innovation Centre, NTU. You'll see a building shaped like dim sum baskets to your right. That's <span style="font-weight: 800;">The Hive</span>! See you at Level B1 of The Hive!</p>
</div>
</div>
</div>
</section>
<section id="sponsors">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>SPONSORS</h1>
<hr class="primary">
</div>
</div>
</div>
<div class="container" style="margin-top: 50px;">
<div class="row">
<h2 align="center" style="margin: -20px 0 40px 0">Title Sponsors</h2>
</div>
<div class="row">
<div class="col-md-4 col-md-offset-2 text-center">
<img src="assets/Lenovo.png" class="img-responsive">
</div>
<div class="col-md-4 text-center">
<img src="assets/NTU.png" class="img-responsive">
</div>
</div>
<div class="row">
<h2 align="center" style="margin: 60px 0 20px 0">Hardware Sponsor</h2>
</div>
<div class="row">
<div class="col-md-2 col-md-offset-5 text-center">
<img src="assets/12Geeks.png" class="img-responsive">
</div>
</div>
<div class="row">
<h2 align="center" style="margin: 50px 0 40px 0">Programming Partner</h2>
</div>
<div class="row">
<div class="col-md-4 col-md-offset-4 text-center">
<img src="assets/HackerEarth.png" class="img-responsive">
</div>
</div>
<div class="row">
<h2 align="center" style="margin: 70px 0 40px 0">Special Sponsors</h2>
</div>
<div class="row">
<div class="col-md-4 text-center">
<img src="assets/PayPal.png" class="img-responsive">
</div>
<div class="col-md-4 text-center">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<img src="assets/NYC.png" class="img-responsive">
</div>
</div>
</div>
<div class="col-md-4 text-center">
<img src="assets/BitTitan.png" class="img-responsive">
</div>
</div>
</div>
<div class="container" style="margin-top: 80px;">
<div class="row text-center">
<div class="col-md-6 col-md-offset-3">
<h3><em>Interested? <a href="mailto:[email protected]">Contact us</a>.</em></h3>
</div>
</div>
</div>
</section>
<section class="bg-primary text-center">
<h2>"The only real valuable thing is <span style="font-weight: 600;">iNTUition</span>."</h2>
<h3><em>- Albert Einstein</em></h3>
<a class="btn btn-default btn-xl typeform-share" href="https://ckjoshi9.typeform.com/to/BezoQE" data-mode="1" target="_blank" style="margin-top: 20px; width: 200px;">Signups Closed</a>
<script>
(function () {
var qs, js, q, s, d = document,
gi = d.getElementById,
ce = d.createElement,
gt = d.getElementsByTagName,
id = 'typef_orm',
b = 'https://s3-eu-west-1.amazonaws.com/share.typeform.com/';
if (!gi.call(d, id)) {
js = ce.call(d, 'script');
js.id = id;
js.src = b + 'share.js';
q = gt.call(d, 'script')[0];
q.parentNode.insertBefore(js, q)
}
id = id + '_';
if (!gi.call(d, id)) {
qs = ce.call(d, 'link');
qs.rel = 'stylesheet';
qs.id = id;
qs.href = b + 'share-button.css';
s = gt.call(d, 'head')[0];
s.appendChild(qs, s)
}
})()
</script>
</section>
<div class="bg-dark text-center" style="padding: 20px 0;">
<h5>Made with <span class="fa fa-heart fa-fw" style="color: #ff0000;"></span> by <a href="http://suyashlakhotia.com" target="_blank" style="color: white;">Suyash Lakhotia</a>. Source code <a href="https://github.com/IEEENTU/iNTUition-2016" target="_blank" style="color: white;">here</a>.</h5>
</div>
<!-- jQuery -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="js/jquery.easing.min.js"></script>
<!-- Custom JavaScript -->
<script src="js/main.js"></script>
</body>
</html>