-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
935 lines (760 loc) · 38.7 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Meshcon Maker Faire, Berlin, 3. Oktober 2015</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/flexslider.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/elegant-icons.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/pe-icon-7-stroke.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/lightbox.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/theme-handbag.css" rel="stylesheet" type="text/css" media="all"/>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,300' rel='stylesheet' type='text/css'>
</head>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Meetup</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/flexslider.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/elegant-icons.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/pe-icon-7-stroke.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/lightbox.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/theme-handbag.css" rel="stylesheet" type="text/css" media="all"/>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,300' rel='stylesheet' type='text/css'>
</head>
<body class="no-loader">
<div class="loader">
<div class="strip-holder">
<div class="strip-1"></div>
<div class="strip-2"></div>
<div class="strip-3"></div>
</div>
</div>
<a id="top"></a>
<div class="nav-container"><nav class="overlay-nav">
<div class="container">
<div class="row">
<div class="col-md-2">
<img alt="Meshcon" class="logo logo-light" src="img/meshcon_white.png">
<img alt="Meshcon" class="logo logo-dark" src="img/meshcon_grey.png">
</div>
<div class="col-md-10 text-right">
<ul class="menu">
<li><a class="inner-link" href="#about" target="default">About</a></li><li><a href="https://ticketing.ticketpay.de/DSKYJUHO" target="default">Tickets</a></li><li><a class="inner-link" href="#partner" target="default">PArtner</a></li><li><a href="/schedule.pdf" target="default">Schedule</a></li><li><a class="inner-link" href="#location" target="default">Location</a></li><li><a class="inner-link" href="#press" target="default">Press</a></li>
<li><a href="http://2014.meshcon.net" target="_self">Meshcon'14</a></li>
<li class="social-link"><a href="https://twitter.com/mshcon" target="default"><i class="icon social_twitter"></i></a></li>
<li class="social-link"><a href="https://www.facebook.com/mshcn" target="default"><i class="icon social_facebook"></i></a></li>
</ul>
<div class="sidebar-menu-toggle"><i class="icon icon_menu"></i></div>
<div class="mobile-menu-toggle"><i class="icon icon_menu"></i></div>
</div>
</div>
</div>
<div class="bottom-border"></div>
<div class="sidebar-menu">
<img alt="Logo" class="logo" src="img/meshcon_light.png">
<div class="bottom-border"></div>
<div class="sidebar-content">
<div class="widget">
<ul class="menu">
<li><a class="inner-link" href="#top">Home</a></li>
<li><a class="inner-link" href="#about" target="default">About</a></li>
<li><a class="inner-link" href="#schedule" target="default">Schedule</a></li>
<li><a class="inner-link" href="#subscribe" target="default">Subscribe</a></li>
</ul>
</div>
<div class="widget">
<ul class="social-profiles">
<li><a href="https://twitter.com/mshcon" target="default"><i class="icon social_twitter"></i></a></li>
<li><a href="#"><i class="icon social_facebook"></i></a></li>
<li><a href="http://fashiontec.org" target="default"><i class="icon social_dribbble"></i></a></li>
<li><a href="https://www.flickr.com/photos/meshcon/" target="default"><i class="icon social_instagram"></i></a></li>
<li><a href="https://plus.google.com/114712991092443227807/posts" target="default"><i class="icon social_googleplus"></i></a></li>
</ul>
</div>
<div class="copy-text">
<span>© meshcon 2015</span>
</div>
</div>
</div>
</nav>
</div>
<div class="main-container"><section class="hero-slider">
<ul class="slides">
<li class="hero-slide">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="MeshCon Makerfaire Berlin" src="img/15550641365_c5390a22ed_k1.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<h1 class="large-h1 text-white">meshcon<br>@ Maker Faire Berlin<br><span>Postbahnhof at Ostbahnhof</span><span> </span><div>3 October 2015<br><br>Bringing together the Maker movements most forward thinking innovators</div></h1>
<span class="lead text-white">Participants from across the world are joining the event in Berlin city.</span>
</div>
</div>
</div>
</li>
<li class="hero-slide">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Meshcon Internet of Things" src="img/14909390304_123a81da25_k1.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<h1 class="large-h1 text-white">meshcon<br>@Maker Faire Berlin<div>Postbahnhof at Ostbahnhof<br>3 October 2015<br><br>Learn about the Internet of Things and Fashion and Technology<br></div></h1>
<span class="lead text-white">Participants from across the world are joining the event in Berlin city.</span>
</div>
</div>
</div>
</li><li class="hero-slide">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Meshcon Internet of Things" src="img/opentechknitting1.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<h1 class="large-h1 text-white">meshcon<br>@Maker Faire Berlin<div>Postbahnhof at Ostbahnhof<br>3 October 2015<br><br>Learn about the Internet of Things and Fashion and Technology<br></div></h1>
<span class="lead text-white">Participants from across the world are joining the event in Berlin city.</span>
</div>
</div>
</div>
</li>
</ul>
</section>
<section class="color-blocks">
<div class="color-block block-left col-md-6 col-sm-12"></div>
<div class="color-block block-right col-md-6 col-sm-12"></div>
<div class="container">
<div class="row">
<a href="https://ticketing.ticketpay.de/DSKYJUHO" class="block-content" target="default">
<div class="col-md-2 col-sm-4 text-center">
<i class="icon pe-7s-cash"></i>
</div>
<div class="col-md-4 col-sm-8">
<h1>Get a free ticket with the code XQTWIY and join us on Saturday 3rd October 2015!</h1>
<p>Free tickets are limited to availability. Meshcon tickets are also accepted for entrance to the Maker Faire Berlin.</p>
</div>
</a>
<a target="_blank" href="/schedule.pdf" class="block-content">
<div class="col-md-2 col-sm-4 text-center">
<i class="icon pe-7s-like2 icon-large"></i>
</div>
<div class="col-md-4 col-sm-8">
<h1>Get the schedule with talks and presentations of our awesome speakers!</h1>
</div>
</a>
</div>
</div>
</section>
<a id="partner" class="in-page-link"></a>
<section class="sponsors">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1>Proud Partners</h1>
</div>
</div>
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://mozilla.berlin" target="default">
<img alt="Mozilla Berlin" src="img/mozilla.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://makerfaire.berlin" target="default">
<img alt="Sponsor" src="img/makerfaire_berlin.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://www.opentechschool.org/" target="default">
<img alt="OpenTechSchool" src="img/opentechschool.png">
</a>
</div>
</div><div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://opntec.net" target="default">
<img alt="Open Tech Foundation" src="img/Logo_OpenTecSummit_Orange-Rectangle.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://zen.coderdojo.com/dojo/861" target="default">
<img alt="Coderdojo" src="img/coderdojo.png">
</a>
</div>
</div><div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://ffii.org" target="default">
<img alt="FFII" src="img/FFII.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://sciencehack.asia" target="default">
<img alt="Science Hack Asia" src="img/ScienceHackDay_LogoText_150_dark.png">
</a>
</div>
</div><div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://fossasia.org" target="default">
<img alt="FOSSASIA" src="img/fossasia-squarelogo.png">
</a>
</div>
</div></div>
</div>
<div class="row">
<div class="col-sm-12 text-center">
<span>Interested in becoming a partner? <a href="mailto:contact@meshcon.net" target="default">Get in touch</a></span>
</div>
</div>
</div>
</section>
<section class="contained-gallery">
<div class="container">
<div class="row">
<div class="col-md-7 col-sm-6">
<div class="lightbox-gallery">
<ul>
<li>
<a href="img/15361923259_0b9a195322_z.jpg" data-lightbox="true" data-title="Maker Faire">
<div class="background-image-holder">
<img class="background-image" alt="Maker Faire" src="img/15361923259_0b9a195322_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/15714982830_07fef80664_s.jpg" data-lightbox="true" data-title="Maker Event Meshcon Berlin">
<div class="background-image-holder">
<img class="background-image" alt="Maker Event Meshcon Berlin" src="img/15714982830_07fef80664_s.jpg">
</div>
</a>
</li>
<li>
<a href="img/15364319677_81528ae736_z.jpg" data-lightbox="true" data-title="Maker Faire Berlin">
<div class="background-image-holder">
<img class="background-image" alt="Maker Faire Berlin" src="img/15364319677_81528ae736_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/14928712593_278e784a83_o.jpg" data-lightbox="true" data-title="Girls Makers at Maker Faire Meshcon">
<div class="background-image-holder">
<img class="background-image" alt="Girls Makers at Maker Faire Meshcon" src="img/14928712593_278e784a83_o.jpg">
</div>
</a>
</li>
<li>
<a href="img/15345776488_5c21f08373_z.jpg" data-lightbox="true" data-title="Maker Events Meshcon">
<div class="background-image-holder">
<img class="background-image" alt="Maker Events Meshcon" src="img/15345776488_5c21f08373_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/lb6.jpg" data-lightbox="true" data-title="Meetup 2013">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/lb6.jpg">
</div>
</a>
</li>
<li>
<a href="img/15344713928_f34618eccd_k.jpg" data-lightbox="true" data-title="Maker Faire and Kids">
<div class="background-image-holder">
<img class="background-image" alt="Maker Faire and Kids" src="img/15344713928_f34618eccd_k.jpg">
</div>
</a>
</li>
<li>
<a href="img/makerfaire-berlin15.jpg" data-lightbox="true" data-title="Kids at Maker Event Meshcon">
<div class="background-image-holder">
<img class="background-image" alt="Kids at Maker Event Meshcon" src="img/makerfaire-berlin15.jpg">
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="col-md-5 col-sm-6">
<h1>#meshcon joins Maker Faire for a rousing success in Berlin</h1>
<p class="lead">Maker Faire is a festival for constructing, inventing, learning, recycling, inspiring and, above all, having fun. Previous Maker Faires in Germany attracted more than 50 exhibitors and over 10,000 visitors. meshcon joins up with Maker Faire on 3rd October 2015 to give attendees the chance to meet top technologists, fabricators, fashion designers and Open Tech developers of the "Internet of Things" from around the world.</p>
<a href="/schedule.pdf" class="btn" target="default">Schedule</a>
<a href="http://makerfaire.berlin" class="btn btn-hollow" target="default">Makerfaire.Berlin</a>
</div>
</div>
</div>
</section>
<a id="topics" class="in-page-link"></a>
<section class="duplicatable-content visitor-info">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Workshops & Topics</h1>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Venue" src="img/15548603831_55dcc9e4eb_z.jpg">
<h3>Awesome Shield</h3>
<p>We'll introduce you to Awesome Shield and Arduino. You’ll coding basics, and build some fun projects. If you've never coded before, we promise you won't be able to say that any more after this event. <div><br><div><br></div><div>.</div></div></p>
<div class="text-link">
<a href="http://awesomeshield.com/" target="default">Website</a>
<a href="http://www.meetup.com/OpenXLab/events/225644525/" target="default">Workshop Registration</a>
</div>
</div>
</div><div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="FashionTec" src="img/17584005999_b79dc45d34_z.jpg">
<h3>FashionTec and Wearables</h3>
<p>Wearables and machines for fashion production. Learn about the prototypes for local manufacturing. See computer upgraded knitting machines in action and knit your logo and images at meshcon.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://github.com/fashiontec/knitapps" target="default">Website</a>
<a href="http://www.meetup.com/FashionTec-Meetup-Berlin/" target="default">Workshop Registration</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Coderdojo" src="img/17768869032_3d1ee63d61_z.jpg">
<h3>Coderdojo</h3>
<p>Wir machen ein tolles Technologie-Programm für Kinder, Jugendliche und Erwachsene - alle die coden lernen wollen. Es gibt Mentoren und ihr könnt neue Freunde treffen. Wir haben
einen Coder-Space mit Nicco und vielen Mentoren. // Learn to code, no matter how old you are: Join <a href="http://www.opentechschool.org/" target="_blank">OpenTechSchool</a> and <a href="http://zen.coderdojo.com/dojo/861" target="_blank">Coder Dojo Potsdam</a>.
We coach in Python, Javascript, Arduino and more.</p>
<div class="text-link">
<a href="http://www.meetup.com/OpenXLab/events/225644499/" target="default">Workshop Registrierung</a>
</div>
</div>
</div><div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Local Production" src="img/IMG_8533.JPG">
<h3>Local and Participatory Production</h3>
<p>How to reap the benefits of participatory production? Get to know the makers developing concepts for local production and technologies for fair and environment friendly manufacturing. A focus of the Meshcon is garments and textiles at home and in the industry. Fashiontec.org develops tools and app to achieve the goal of local producation.<div><br></div></p>
<div class="text-link">
<a href="http://fashiontec.org" target="default">Fashiontec.org Website</a>
</div>
</div>
</div><div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Open Data, Open Standards, Patents" src="img/ffiipress-wide.jpg">
<h3>Open Data, Standards, Patents</h3>
<p>The FFII is a global network of associations dedicated to consumer rights and education about digital media, genuine open standards and patent systems with lesser barriers to competition. The FFII continues to protect consumers and defends your right to freedom of information and a free and competitive software market by developing educational materials, running campaigns and organizing events. Learn more about our activities at Meshcon.<div><br></div></p>
<div class="text-link">
<a href="http://ffii.org" target="default">FFII.org Website</a>
</div>
</div>
</div><div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Open Networks" src="img/olsrmapberlinkrass9zh.jpg">
<h3>Refugee Hackathon</h3>
<p>There are many different challenges for refugees in Germany, where simpler access to information and existing services can reduce barriers to integration. Very often, this approach can also be solved with practical apps that can be used at a smartphone. We want to develop such solutions together at a refugee hackathon. Learn how you can join us at Meshcon with <a href="http://ankedomscheitberg.de/">Anke Domscheit-Berg</a>.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="http://refugeehackathon.de/" target="default">Refugee Hackathon</a>
</div>
</div>
</div>
</div>
</div>
</section>
<a id="about" class="in-page-link"></a>
<section class="inline-video">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>About meshcon</h1>
</div>
</div>
<div class="row">
<div class="col-md-6">
<p class="lead">
At meshcon we are developing concepts and open technologies for the Internet of Things and local and fair production with a special focus to FashionTec.
</p><p>In 2015 meshcon joins up with Maker Faire Berlin for the first time to bring together Open Web makers, IoT experts, industry representatives, fashion designers, producers, knitters, textile manipulators, software developers and DIY hardware makers. On Saturday 3rd October 2015 participants from across the world are joining the event in Berlin city. Participatory workshops for people of all ages are organized by <a href="http://www.opentechschool.org/" target="_blank">OpenTechSchool</a> and <a href="http://zen.coderdojo.com/dojo/861" target="_blank">Coder Dojo Potsdam</a>.</p>
<a target="default" href="https://ticketing.ticketpay.de/DSKYJUHO" class="btn">Get Tickets</a>
<a href="/volunteers/" class="btn btn-hollow" target="default">Volunteers</a>
</div><div class="col-md-6">
<div class="embedded-video-holder vju">
<iframe src="https://www.youtube.com/embed/D-oLxNv_hTM?showinfo=0&rel=0&modestbranding=1"></iframe>
</div>
</div></div>
</div>
</section>
<section class="image-with-text testimonials preserve-3d">
<div class="go-left side-image col-md-6 col-sm-4">
<div class="background-image-holder">
<img class="background-image" alt="Fashion Designers at Meshcon" src="img/15346065710_f4de997d1e_k.jpg">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-md-offset-7 col-sm-7 col-sm-offset-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>"meshcon was chock full of useful stuff. My head was spinning with all those cool IoT projects!"</h1>
</li>
<li>
<h1>"Last year's meshcon completely changed my approach to open technologies and the maker community!"</h1>
</li>
<li>
<h1>Technologists, Makers, Designers, Developers, Internet of Things</h1>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<a id="schedule" class="in-page-link"></a>
<section class="schedule schedule-with-text">
<div class="container">
<div class="row">
<div class="col-md-5 col-sm-6">
<h1>meshcon @Maker Faire Berlin is set on 3rd October 2015 - one day of ground-breaking speeches of Open Tech makers, creators and fabricators of the Internet of Things</h1>
<p>meshcon @Maker Faire Berlin brings together Open Web makers, IoT experts, industry representatives, fashion designers, local producers, knitters, textile manipulators, software developers and DIY hardware makers. Participants from across the world are joining the event in Berlin city on Saturday 3rd October 2015.</p>
<a target="default" href="https://ticketing.ticketpay.de/DSKYJUHO" class="btn">Get a ticket</a><a target="default" href="/schedule.pdf" class="btn">Detailed Schedule</a>
</div>
<div class="col-md-7 col-sm-6">
<ul class="schedule-overview">
<li>
<div class="schedule-title">
<span class="time">10:00am am</span>
<span class="title">Welcome & Registration</span>
</div>
<div class="schedule-text">
<p>
Welcome creators from all over the world.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">11am - 1pm</span>
<span class="title">Learning - Makers and Open Technologies</span>
</div>
<div class="schedule-text">
<p>
Makers and Technologists from across the world are share their knowledge and insights.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">1pm - 2pm</span><span class="title"> Performance by Will Power</span>
</div>
<div class="schedule-text">
<p>
Enjoy the performance of Will Power.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li><li>
<div class="schedule-title">
<span class="time">2pm - 4pm</span><span class="title">Focus Fashion and Technology</span>
</div>
<div class="schedule-text">
<p>Talks and Workshops</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">4pm - 5:30pm</span>
<span class="title">Usability, User Experience and the Internet of Things</span>
</div>
<div class="schedule-text">
<p>
Creators from across the world are sharing their experience and ideas.
</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li><li>
<div class="schedule-title">
<span class="time">5.30 pm</span>
<span class="title">Tech & Society: Refugees at Hackathon</span>
</div>
<div class="schedule-text">
<p>Afterwards: Join us for a wonderful evening.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="image-with-text background-dark preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<h1 class="text-white">meshcon is the annual conference of the Open Tech Maker, Internet of Things and FashionTec movement in Berlin featuring prominent icons from around the world.</h1>
<p class="lead text-white">meshcon @Maker Faire Berlin brings together Open Web makers, IoT experts, industry representatives, fashion designers, local producers, knitters, textile manipulators, software developers and DIY hardware makers.</p>
</div>
</div>
</div>
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="Makerfaire Berlin" src="img/15638505656_8592a61b32_k.jpg">
</div>
</div>
</section>
<a id="subscribe" class="in-page-link"></a>
<section class="subscribe-2">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<i class="icon pe-7s-pen"></i>
<i class="icon pe-7s-mail-open-file"></i>
<i class="icon pe-7s-paper-plane"></i>
<h1 class="large-h1">Subscribe to stay informed</h1>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2">
<form class="email-subscribe mail-list-signup">
<div class="col-sm-7">
<input class="form-email signup-email-field" placeholder="Enter your email address" type="text">
</div>
<div class="col-sm-5">
<input class="btn" value="Subscribe" type="submit">
</div>
<div class="col-sm-12 text-center">
<span>*We never share your email with 3rd parties</span>
</div>
<iframe class="mail-list-form" srcdoc="<!-- Begin MailChimp Signup Form --> <link href="//cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css"> <style type="text/css"> #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; } /* Add your own MailChimp form style overrides in your site stylesheet or in this style block. We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */ </style> <div id="mc_embed_signup"> <form action="//ffii.us10.list-manage.com/subscribe/post?u=0b56d766334175815ba96eb06&amp;id=ab6c167d49" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> <div id="mc_embed_signup_scroll"> <label for="mce-EMAIL">Subscribe to our mailing list</label> <input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups--> <div style="position: absolute; left: -5000px;"><input type="text" name="b_0b56d766334175815ba96eb06_ab6c167d49" tabindex="-1" value=""></div> <div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div> </div> </form> </div> <!--End mc_embed_signup-->">
</iframe>
</form>
</div>
</div>
</div>
</section>
<section class="lightbox-gallery preserve-3d">
<div class="gallery-holder">
<ul>
<li>
<a href="img/14931552314_c1b2a9a62e_z.jpg" data-lightbox="true" data-title="Berlin Partner">
<div class="background-image-holder">
<img class="background-image" alt="Berlin Partner" src="img/14931552314_c1b2a9a62e_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/15364496200_f5bdb259cb_z.jpg" data-lightbox="true" data-title="Maker Faire Berlin Knitting Machine">
<div class="background-image-holder">
<img class="background-image" alt="Maker Faire Berlin Knitting Machine" src="img/15364496200_f5bdb259cb_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/IMG_8515.JPG" data-lightbox="true" data-title="Open Technologies for Kids">
<div class="background-image-holder">
<img class="background-image" alt="Open Technologies for Kids" src="img/IMG_8515.JPG">
</div>
</a>
</li>
<li>
<a href="img/15366353347_c2cc08e73b_z.jpg" data-lightbox="true" data-title="Designer">
<div class="background-image-holder">
<img class="background-image" alt="Designer" src="img/15366353347_c2cc08e73b_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/15345636298_a891a410f3_k.jpg" data-lightbox="true" data-title="Meschcon Makerfaire">
<div class="background-image-holder">
<img class="background-image" alt="Meschcon Makerfaire" src="img/15345636298_a891a410f3_k.jpg">
</div>
</a>
</li>
<li>
<a href="img/15527642496_537c617e5d_z.jpg" data-lightbox="true" data-title="Knitapps">
<div class="background-image-holder">
<img class="background-image" alt="Knitapps" src="img/15527642496_537c617e5d_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/15364228027_a610516efc_z.jpg" data-lightbox="true" data-title="Ayab Knitting Hacks">
<div class="background-image-holder">
<img class="background-image" alt="Ayab Knitting Hacks" src="img/15364228027_a610516efc_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/15366066490_79d6b9796f_k.jpg" data-lightbox="true" data-title="Makerfaire Meshcon">
<div class="background-image-holder">
<img class="background-image" alt="Makerfaire Meshcon" src="img/15366066490_79d6b9796f_k.jpg">
</div>
</a>
</li>
<li>
<a href="img/15354819220_34f595016c_z.jpg" data-lightbox="true" data-title="Fashion Designer">
<div class="background-image-holder">
<img class="background-image" alt="Fashion Designer" src="img/15354819220_34f595016c_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/15365549807_5d1078e6cf_z.jpg" data-lightbox="true" data-title="Fashion Maker 3D model">
<div class="background-image-holder">
<img class="background-image" alt="Fashion Maker 3D model" src="img/15365549807_5d1078e6cf_z.jpg">
</div>
</a>
</li>
</ul>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div>
<i class="icon pe-7s-camera text-white"></i>
<h1 class="text-white">Meshcon</h1>
</div>
</div>
</div>
</div>
</section>
<a id="press" class="in-page-link"></a>
<section class="color-blocks">
<div class="color-block block-left col-md-6 col-sm-12"></div>
<div class="color-block block-right col-md-6 col-sm-12"></div>
<div class="container">
<div class="row">
<a href="http://tinyurl.com/mcpress" class="block-content" target="default">
<div class="col-md-2 col-sm-4 text-center">
<i class="icon pe-7s-id icon-large"></i>
</div>
<div class="col-md-4 col-sm-8">
<h1>Register as Press!</h1>
</div>
</a>
<a href="MeshCon-PressPackage.zip" class="block-content" target="default">
<div class="col-md-2 col-sm-4 text-center">
<i class="icon pe-7s-airplay icon-large"></i>
</div>
<div class="col-md-4 col-sm-8">
<h1>Download the meshcon Press Kit</h1>
</div>
</a>
</div>
</div>
</section>
<section class="strip-divider call-to-action">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="BG Image" src="img/grey-bg.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1>What are you waiting for? Join us on October 3rd in Berlin!</h1>
<span class="uppercase">Don't Wait, Get your tickets right now<div>We have a Limited Number of Free Tickets: Use the Code "XQTWIY"</div></span>
<a class="btn btn-lg" href="https://ticketing.ticketpay.de/DSKYJUHO" target="default">Purchase Tickets</a>
<span class="uppercase">Oh, invite your friends too</span>
<a href="https://www.facebook.com/fashiontecorg" target="default"><i class="icon social_facebook"></i></a>
<a href="https://twitter.com/mshcon" target="default"><i class="icon social_twitter"></i></a>
</div>
</div>
</div>
</section>
<a id="location" class="in-page-link"></a>
<section class="contact-tweets">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-6">
<i class="icon social_twitter"></i>
<div class="tweets-feed" data-widget-id="623903332676075520">
</div>
<span class="text-white">Follow <a href="https://twitter.com/mshcon" target="default">@mshcon</a> for more updates</span>
</div>
</div>
</div>
<div class="map-holder col-md-6 col-sm-4">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d9713.72344893374!2d13.433618206237789!3d52.50754122385526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47a84e4644e2707f%3A0xca0538d958c1561c!2sStr.+der+Pariser+Kommune+8!5e0!3m2!1sen!2sde!4v1437585597302"></iframe>
</div>
</section>
</div>
<div class="footer-container">
<footer class="classic">
<div class="container">
<div class="row ui-sortable">
<div class="col-sm-3">
<ul class="menu">
<li><a class="inner-link" href="#press" target="default">Press</a></li>
<li><a target="default" href="https://ticketing.ticketpay.de/DSKYJUHO">Tickets</a></li>
<li><a class="inner-link" href="#about" target="default">About</a></li>
<li><a href="/schedule.pdf" target="default">Schedule</a></li>
<li><a class="inner-link back-to-top" href="#top">Back To Top</a></li>
</ul>
</div>
<div class="col-sm-6">
<span class="lead color-heading">About </span>
<p>meshcon @Maker Faire Berlin brings together Open Web makers, IoT experts, industry representatives, fashion designers, local producers, knitters, textile manipulators, software developers and DIY hardware makers. On Saturday 3rd October 2015 participants from across the world are joining the event in Berlin city. Previous meshcon events took place at Technische Universität Berlin and during OpenDesign Weeks Asia in Saigon and Cambodia.</p>
</div>
<div class="col-sm-3">
<ul class="contact-methods">
<li><i class="icon pe-7s-mail"></i><span>contact@meshcon.net</span></li>
<li><i class="icon pe-7s-map-marker"></i><span>Postbahnhof, </span><span>Strasse der Pariser Kommune 8, 10243 Berlin, Germany </span></li>
</ul>
</div>
</div>
<div class="row ui-sortable">
<div class="col-sm-12 text-center">
<ul class="social-profiles">
<li><a href="https://twitter.com/MshCon" target="default"><i class="icon social_twitter"></i></a></li>
<li><a href="https://www.facebook.com/mshcn" target="default"><i class="icon social_facebook"></i></a></li>
<li><a href="http://fashiontec.org" target="default"><i class="icon social_dribbble"></i></a></li>
<li><a href="https://www.flickr.com/photos/meshcon" target="default"><i class="icon social_instagram"></i></a></li>
<li><a href="https://plus.google.com/u/0/b/114712991092443227807/114712991092443227807/posts" target="default"><i class="icon social_googleplus"></i></a></li>
</ul>
</div>
</div>
</div>
</footer>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js" ></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/skrollr.min.js"></script>
<script src="js/spectragram.min.js"></script>
<script src="js/flexslider.min.js"></script>
<script src="js/jquery.plugin.min.js"></script>
<script src="js/jquery.countdown.min.js"></script>
<script src="js/lightbox.min.js"></script>
<script src="js/smooth-scroll.min.js"></script>
<script src="js/twitterfetcher.min.js"></script>
<script src="js/placeholders.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>