-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1511 lines (1313 loc) · 59.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--
___
,-"" `.
,' _ e )`-._
/ ,' `-._<.===-' HONK HONK
/ /
/ ;
_ / ;
(`._ _.-"" ""--..__,' |
<_ `-"" \
<`- :
(__ <__. ;
`-. '-.__. _.' /
\ `-.__,-' _,'
`._ , /__,-'
""._\__,'< <____
| | `----.`.
| | \ `.
; |___ \-``
\ --<
`.`.<
`-'
-->
<!-- -->
<html lang="en">
<head>
<title>WearHacks Kitchener-Waterloo 2017</title>
<base href="/" />
<!-- Current Language: en -->
<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="author" content="WearHacks KW">
<meta http-equiv="content-language" content="en">
<meta name="description" content="Promoting innovation and entrepreneurship in emerging technologies, such as Wearables and the Internet of Things, around the globe.">
<meta name="msapplication-TileColor" content="#1e699c">
<meta name="theme-color" content="#1e699c">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel='shortcut icon' type='image/x-icon' href='/favicon.ico' />
<!-- Open Graph -->
<head prefix="og: http://ogp.me/ns#">
<meta property="og:description" content="WearHacks promotes innovation and entrepreneurship in emerging technologies, such as Wearables and the Internet of Things, all over the world. We empower hackers* all over the world with tools, resources and connections, so they can build anything they can imagine - from a tweeting lamp to a Wearables startup.">
<meta property="og:title" content="WearHacks KW: Innovation in Emerging Technologies">
<meta property="og:locale" content="en_US">
<meta property="og:image" content="images/meta/shared.jpg">
<meta property="og:image:type" content="image/jpeg">
<link href='http://fonts.googleapis.com/css?family=Raleway:400,200' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto:400,200' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,600&lang=en' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Arimo:400,700,1200' rel='stylesheet' type='text/css'>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="stylesheets/animate.min.css" type="text/css" />
<link rel="stylesheet" href="stylesheets/styles.css" type="text/css" />
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="bower_components/jquery.countdown/dist/jquery.countdown.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Google Analytics -->
</head>
<body id="page-top">
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top hidden-tablet hidden-phone" data-spy="affix" data-offset-top="10"
data-target="#header">
<div class="container-fluid">
<div class="navbar-header">
<a id="navLogo" class="navbar-brand" href="index.html"></a>
</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 class="page-scroll" href="#page-top">Attend</a>
</li>
<li>
<a class="page-scroll" href="#about">About</a>
</li>
<li>
<a class="page-scroll" href="#hardware">Hardware</a>
</li>
<li>
<a class="page-scroll" href="#schedule">Schedule</a>
</li>
<li>
<a class="page-scroll" href="#sponsors">Sponsors</a>
</li>
<li>
<a class="page-scroll" href="#speakers">Speaker</a>
</li>
<li>
<a class="page-scroll" href="#faq">FAQ</a>
</li>
<li>
<a class="page-scroll" href="#contact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<header id="header">
<div class="header-content">
<div class="header-content-inner">
<div class="row">
<div class="col-sm-12 action-panel">
<div class="row who">
<div class="col col-sm-12 col-md-12 logo"></div>
</div>
<div class="row">
<div id="headerSubtitle" class="col-xs-offset-1 col-xs-10">
<h1>KITCHENER-WATERLOO</h1>
</div>
</div>
<div class="row what">
<div class="col col-sm-2-offset-5 col-md-2-offset-5">
<p>Thank you for hacking with us between <strong>March 24-26</strong> at Open Sky Incubator! We had a blast and hope that you did as well! See you next year!</p>
</div>
</div>
<!-- Mailchimp stuff was here -->
<div class="row">
<div class="col-sm-12">
<a class="btn btn-default btn-xl" href="https://wearhacks18.typeform.com/to/BMP5pW" target="_blank">2018 Organizer Applications</a>
<a class="btn btn-default btn-xl" href="https://wearhackskw17.devpost.com/" target="_blank">Devpost</a>
<a class="btn btn-default btn-xl" href="https://www.facebook.com/pg/wearhacks/photos/?tab=album&album_id=656050601254798" target="_blank">Photos</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="background"></div>
</header>
<div class="container-fluid">
<div class="row remove-side-lines">
<div class="col-md-6 text-center hidden-xs">
<section class="bg-countdown" id="countdownSection">
<!-- Clock -->
<div id="countdown" style="margin-bottom:0em;padding-top:0em;padding-left:0em;padding-right:0em;padding-bottom:0em;text-align:center;font-family:Roboto;color:rgb(255, 255, 255)">
<div id="clock"></div>
<span class="countdownText">DAYS</span>
<span class="countdownText">HOURS</span>
<span class="countdownText">MINUTES</span>
<span class="countdownText">SECONDS</span>
<hr>
<h1>#WearHacksKW</h1>
<script type="text/javascript">
var wearHacks = new Date("Fri Mar 24 2017 20:00:00 UTC-0400");
$('#clock').countdown(wearHacks, function(event) {
var $this = $(this).html(event.strftime(''
+ '<span class="countdownTime">%D</span>'
+ '<span class="countdownTime">%H</span>'
+ '<span class="countdownTime">%M</span>'
+ '<span class="countdownTime">%S</span>'));
});
</script>
</div>
</section>
</div>
<div id="joinUs" class="col-xs-12 col-sm-12 col-md-6 text-center">
<p><h1>JOIN US</h1>
Come join us for 36 hours of learning, creating, and hacking in a city known for its technological innovations. With access
to a multitude of the best hardware on the market you’ll have the chance to design and build anything you ever dreamed
of.
</p>
</div>
</div><!--row no-side-lines-->
</div><!-- container-fluid-->
<section class="bg-primary" id="about">
<div class="container">
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-sm-3 col-sm-offset-1">
<img src="images/logo-white.png" width="100%" />
</div>
<div class="col-xs-10 col-xs-offset-1 col-sm-7 col-sm-offset-0 text-left">
<h2 class="section-heading">About WearHacks</h2>
<p class="text-faded">
Wearhacks promotes innovation, entrepreneurship, and education in the Emerging Technologies space.<br> Our fundamental
goal is to bridge the knowledge gap that exists in the IoT industry amongst technology enthusiasts from all backgrounds
through hackathons.<br> We strive to make hardware education accessible, approachable, and affordable. <br> For an
intensive 36 hours, you will learn new tools, meet industry experts, collaborate with other talented students and
young professionals and build new wearable and connected technology.
</p>
<a href="http://wearhacks.com" class="btn btn-default btn-xl">Organization Website</a>
</div>
</div>
</div>
</section>
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">What you get</h2>
<hr class="primary">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-coffee wow bounceIn text-primary"></i>
<h3>Batteries included</h3>
<p class="text-muted">We'll give you great food and lots of coffee. You build something <strong>awesome</strong>.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-users wow bounceIn text-primary" data-wow-delay=".1s"></i>
<h3>All backgrounds</h3>
<p class="text-muted">We welcome all kinds of <strong>innovators</strong> and industry experts, <strong>students and non-students</strong> alike, developers, engineers, designers, neuroscientists and <strong>curious minds</strong>.
</p>
</div>
</div>
<div class="col-lg-4 col-md-12 text-center">
<div class="service-box">
<i class="fa fa-4x fa-newspaper-o wow bounceIn text-primary" data-wow-delay=".2s"></i>
<h3>Mentorship and Promotion</h3>
<p class="text-muted">We follow-up with the teams and <strong>help promote</strong> the best projects. We organize demos, talks, etc.</p>
</div>
</div>
</div>
</div>
</section>
<section class="no-padding" id="hardware">
<div class="container-fluid">
<div class="row no-gutter remove-side-lines">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">Available Hardware</h2>
<hr class="primary">
</div>
<div class="col-lg-4 col-sm-6">
<a href="https://www.myo.com/" class="portfolio-box">
<img src="images/portfolio/myo.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Thalmic Labs Myo
</div>
<div class="project-name">
The Myo gesture control armband reads your muscle activity so you can control your favourite presentation software with gestures
and motion.
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="https://www.leapmotion.com/" class="portfolio-box">
<img src="images/portfolio/leap-motion.png" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Leap Motion
</div>
<div class="project-name">
The Leap Motion senses hand gestures so that you can manipulate virtual objects. Our technology senses how you naturally
move your hands, so you can reach into the world beyond the screen – in virtual reality, augmented reality, Mac
or PC.
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="http://www.intel.com/content/www/us/en/do-it-yourself/edison.html" class="portfolio-box">
<img src="images/portfolio/edison.png" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Intel Edison
</div>
<div class="project-name">
The Intel® Edison platform is a solution designed to lower the barriers to entry for quick prototyping and productizing the
connected computing devices driving the next industrial revolution. If you can imagine it, you can invent it.
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="http://www.seeedstudio.com/depot/Xadow-Wearable-Kit-For-Intel-Edison-p-2428.html" class="portfolio-box">
<img src="images/portfolio/xadow-kit.png" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Xadow Wearable Kit for Intel Edison
</div>
<div class="project-name">
Xadow Wearable Kit for Intel Edison is a perfect kit to make wearable devices with Intel Edison. It includes an expansion
board together with eight tiny and powerful Xadow modules, covering sensors, actuators, displays and communication
parts.
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="https://nod.com/" class="portfolio-box">
<img src="images/portfolio/nod-ring.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Nod Ring
</div>
<div class="project-name">
Nod seamlessly transforms your movements using precision skeletal tracking to fully experience VR environments, command drones
with a wave of your hand, and even interact with your favorite smart devices.
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="https://developer.oculus.com/" class="portfolio-box">
<img src="images/portfolio/rift.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Oculus Rift
</div>
<div class="project-name">
The Rift uses state of the art displays and optics designed specifically for VR. Its high refresh rate and low-persistence
display work together with its custom optics system to provide incredible visual fidelity and an immersive, wide
field of view.
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="http://estimote.com/" class="portfolio-box">
<img src="images/portfolio/estimote.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Estimote Beacons
</div>
<div class="project-name">
Stick our tiny beacons in any location or to any object to create new, contextually rich mobile experiences.
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="http://developer.pebble.com/" class="portfolio-box">
<img src="images/portfolio/pebble.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Pebble
</div>
<div class="project-name">
Pebble is a customizable watch that conveniently and subtly delivers the information that you want directly to your wrist.
Pebble connects to your iOS or Android smartphone via Bluetooth and has a rechargeable battery that lasts for 5-7
days per charge.
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="https://docs.particle.io/guide/getting-started/button/photon/" class="portfolio-box">
<img src="images/portfolio/internet-button.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Photon Internet Button
</div>
<div class="project-name">
The Photon Internet Button gives you an entirely new way to connect to the internet and build amazing IoT devices.
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="http://www.gesturesense.com/" class="portfolio-box">
<img src="images/portfolio/gesturesense.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
GestureSense
</div>
<div class="project-name">
XYZ's GestureSense allows you to detect gestures and distances in 3D space. It can be used to build anything from toys to
consumer appliances, and of course, wearables!
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="https://www.particle.io/" class="portfolio-box">
<img src="images/portfolio/particle.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Particle.io Kits
</div>
<div class="project-name">
<p>
The Electron is a tiny development kit for creating cellular-connected electronics projects and products. It comes with a
SIM card and an affordable data plan for low-bandwidth things.
</p>
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="https://relayr.io/wunderbar/" class="portfolio-box">
<img src="images/portfolio/wunderbar.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
WunderBar
</div>
<div class="project-name">
<p>
The WunderBar is built for software developers. It is a powerful rapid prototyping tool that enables developers to start creating products and solutions that utilise the Internet of Things, without any prior hardware knowledge. No soldering or electronic engineering experience is needed.
</p>
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="http://www.makeymakey.com/" class="portfolio-box">
<img src="images/portfolio/makey-makey.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Makey Makey Kits
</div>
<div class="project-name">
<p>
Makey Makey is an invention kit for the 21st century. Turn everyday objects into touchpads and combine them with the internet. It's a simple invention kit for beginners and experts doing art, engineering, and everything inbetween.
</p>
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="http://zeissvrone.tumblr.com/" class="portfolio-box">
<img src="images/portfolio/zeiss-vr-one.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Zeiss VR One
</div>
<div class="project-name">
<p>
The ZEISS VR ONE is a one-of-a-kind device allowing us to take our first steps in the world of virtual reality. Its lightweight design and 100% portability make it the perfect companion for videos, games and augmented reality.
</p>
</div>
</div>
</div>
</a>
</div>
<!--
<div class="col-lg-4 col-sm-6">
<a href="https://www.lanilabs.com/" class="portfolio-box">
<img src="images/portfolio/lani.png" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Lani 3D Printing
</div>
<div class="project-name">
Lani Labs will be providing 3D printing services at WearHacks KW! We encourage all hackathon-goers to utilize the printing
services offered at the event. Take a break and design something fun, or browse through our growing selection of
models for some inspiration to bring back to your team.
</div>
</div>
</div>
</a>
</div>
-->
</div>
</div>
</section>
<section class="bg-dark">
<div class="container text-center">
</div>
</section>
<section id="schedule" class="bg-primary">
<div class="container">
<div class="row">
<div class="col-sm-10 col-sm-offset-1 text-center">
<h2 class="section-heading">Schedule</h2>
<hr class="bg-white">
</div>
<div class="col-md-4 col-md-offset-0 col-sm-10 col-sm-offset-1 text-center">
<h4 class="service-heading"><span>Friday, Mar 24th</span></h4>
<div style="text-align:left; max-width:600px; margin:auto;">
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>7:00 PM</strong></p>
<p class="activity">
Hacker Registration Opens
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>7:30 PM</strong></p>
<p class="activity">
Team Formation Session
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>8:00 PM</strong></p>
<p class="activity">
Dinner
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>9:00 PM</strong></p>
<p class="activity">
Opening Ceremonies
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>10:00 PM</strong></p>
<p class="activity">
Hacking Begins!
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>11:00 PM</strong></p>
<p class="activity">
Hardware Workshop
</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-md-offset-0 col-sm-10 col-sm-offset-1 text-center">
<h4 class="service-heading"><span>Saturday, Mar 25th</span></h4>
<div style="text-align:left; max-width:600px; margin:auto;">
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>8:30 AM</strong></p>
<p class="activity">
Breakfast
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>10:00 AM</strong></p>
<p class="activity">
OpenSCAD Workshop
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>11:30 AM</strong></p>
<p class="activity">
Microsoft Workshop
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>1:00 PM</strong></p>
<p class="activity">
Lunch
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>2:00 PM</strong></p>
<p class="activity">
Marshmallow Challenge
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>4:00 PM</strong></p>
<p class="activity">
Nokia Workshop
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>6:00 PM</strong></p>
<p class="activity">
RL Solutions Workshop
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>7:00 PM</strong></p>
<p class="activity">
Spicy Noodle Blind UI Challenge
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>8:30 PM</strong></p>
<p class="activity">
Dinner
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>10:00 PM</strong></p>
<p class="activity">
Trivia!
</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-md-offset-0 col-sm-10 col-sm-offset-1 text-center">
<h4 class="service-heading"><span>Sunday, Mar 26th</span></h4>
<div style="text-align:left; max-width:600px; margin:auto;">
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>7:00 AM</strong></p>
<p class="activity">
Paper Airplane Challenge
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>8:00 AM</strong></p>
<p class="activity">
ECE Talk
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>9:00 AM</strong></p>
<p class="activity">
Breakfast
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>9:30 AM</strong></p>
<p class="activity">
DevPost Submissions Due
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>10:00 AM</strong></p>
<p class="activity">
Hacking Ends
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>11:00 AM</strong></p>
<p class="activity">
Judging Begins
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>1:00 PM</strong></p>
<p class="activity">
Closing Ceremonies
</p>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-12 col-md-offset-0">
<p class="time"><strong>2:00 PM</strong></p>
<p class="activity">
Hardware Returns
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="sponsors" class="sponsors">
<div class="container">
<p style="text-align: center; font-size: 1.5em;">WearHacks Kitchener-Waterloo would not be possible without the support of our amazing sponsors</p>
<div class="row col-lg-12 text-center">
<div class="section-heading">
<h1>Venue Sponsor</h1>
<hr class="primary">
</div>
</div>
<!-- premium sponsors (1/row)-->
<div class="row">
<div class="col-sm col-sm-6 text-center remove-side-lines">
<div class="sponsor-logos-container logos-premium opensky">
<a href="http://www.openskyincubator.ca/" target="_blank">
<img class="img-responsive" src="2017/images/sponsors/Open_Sky.png">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center remove-side-lines">
<div class="sponsor-logos-container logos-premium lot42">
<a href="http://www.openskyincubator.ca/" target="_blank">
<img class="img-responsive" src="2017/images/sponsors/Lot42%20Logo_400x400_Twitter.png">
</a>
</div>
</div>
</div>
<div class="row col-lg-12 text-center">
<div class="section-heading">
<h1>City Sponsors</h1>
<hr class="primary">
</div>
</div>
<div class="row">
<div class="col-sm-offset-1 col-sm-10 text-center">
<div class="row">
<div class="col-sm col-sm-12 text-center">
<div class="sponsor-logos-container logos-standard nokia">
<a href="https://networks.nokia.com/solutions/iot-platform" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="2017/images/sponsors/nokia.png">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center">
<div class="sponsor-logos-container logos-standard laurier-alumni">
<a href="http://www.laurieralumni.ca/s/1681/15/index.aspx?sid=1681&gid=2&pgid=490" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="2017/images/sponsors/laurier_alumni.png">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center">
<div class="sponsor-logos-container logos-standard ece">
<a href="https://uwaterloo.ca/electrical-computer-engineering/" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="2017/images/sponsors/ece.png">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center">
<div class="sponsor-logos-container logos-standard mme">
<a href="https://uwaterloo.ca/mechanical-mechatronics-engineering/" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="media/sponsors/mme.png">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center">
<div class="sponsor-logos-container logos-standard compsci">
<a href="https://www.wlu.ca/programs/science/undergraduate/computer-science-bsc/index.html" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="2017/images/sponsors/laurier_compsci.jpg">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center">
<div class="sponsor-logos-container logos-standard rl">
<a href="http://www.rlsolutions.com/home" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="2017/images/sponsors/rl.png">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center">
<div class="sponsor-logos-container logos-standard ieee">
<a href="https://www.ieee.org/index.html" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="2017/images/sponsors/ieee.png">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center">
<div class="sponsor-logos-container logos-standard yp">
<a href="http://yp.ieee.org/" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="2017/images/sponsors/yp.png">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center">
<div class="sponsor-logos-container logos-standard indico">
<a href="https://indico.io/" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="2017/images/sponsors/indico.png">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center">
<div class="sponsor-logos-container logos-standard twilio">
<a href="https://www.twilio.com/" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="media/sponsors/twillio.png">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center">
<div class="sponsor-logos-container logos-standard stickeryou">
<a href="http://www.stickeryou.com/2/products/custom-stickers/335?utm_source=WEARHACKS&utm_medium=Sponsorship&utm_campaign=SPONSORSHIP2017-Sponsorship" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="media/sponsors/stickeryou.png">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center">
<div class="sponsor-logos-container logos-standard guidebook">
<a href="https://guidebook.com/" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="2017/images/sponsors/guidebook.jpg">
</a>
</div>
</div>
<div class="col-sm col-sm-6 text-center">
<div class="sponsor-logos-container logos-standard tech_domains">
<a href="https://www.get.tech/" style="text-decoration: none !important;" target="_blank">
<span class="helper"></span>
<img class="img-responsive" src="2017/images/sponsors/tech_domains.png">
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Hardware Sponsors -->
<div class="row col-lg-12 text-center">
<div class="section-heading">
<h1>Hardware Sponsors</h1>
<hr class="primary">
</div>
</div>
<!-- standard sponsors (4/row)-->
<div class="row">
<div class="col-sm-offset-1 col-sm-10 text-center">