-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1270 lines (1237 loc) · 69.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MeshCon Berlin 2014 - Fashion and Technology Event</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="MeshCon Berlin 2014 - Fashion and Technology Event">
<meta name="author" content="Mario Behling">
<!-- Styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/agenda.css" rel="stylesheet">
<link rel='stylesheet' id='prettyphoto-css' href="css/prettyPhoto.css" type='text/css' media='all'>
<link href="css/fontello.css" type="text/css" rel="stylesheet">
<!--[if lt IE 7]>
<link href="css/fontello-ie7.css" type="text/css" rel="stylesheet">
<![endif]-->
<!-- Google Web fonts -->
<link href='http://fonts.googleapis.com/css?family=Quattrocento:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Patua+One' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon.ico">
<!-- JQuery -->
<script type="text/javascript" src="js/jquery.js"></script>
<!-- Load ScrollTo -->
<script type="text/javascript" src="js/jquery.scrollTo-1.4.2-min.js"></script>
<!-- Load LocalScroll -->
<script type="text/javascript" src="js/jquery.localscroll-1.2.7-min.js"></script>
<!-- prettyPhoto Initialization -->
<script type="text/javascript" charset="utf-8">
ument).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>
</head>
<body>
<!--******************** NAVBAR ********************-->
<div class="navbar-wrapper">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<!-- Responsive Navbar Part 1: Button for triggering responsive navbar (not covered in tutorial). Include responsive CSS to utilize. -->
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a>
<h1 class="brand"><a href="#top">MeshCon '14</a></h1>
<!-- Responsive Navbar Part 2: Place all navbar contents you want collapsed withing .navbar-collapse.collapse. -->
<nav class="pull-right nav-collapse collapse">
<ul id="menu-main" class="nav">
<!-- <li><a title="top" href="#top">Home</a></li> -->
<li><a title="portfolio" href="#portfolio">About</a></li>
<li><a title="agenda" href="#agenda">Agenda</a></li>
<!-- <li><a title="services" href="#services">Registration</a></li> -->
<li><a title="speaker" href="#speaker">Speaker</a></li>
<li><a title="team" href="#team">Team</a></li>
<li><a title="sponsors" href="#sponsors">Partner</a></li>
<li><a title="news" href="#news">Press</a></li>
<li><a title="pano" href="panorama/">Panorama</a></li>
<li><a title="meschon" href="http://meshcon.net">Meshcon'15</a></li>
<li><a title="blog" href="http://fashiontec.org">Blog</a></li>
<!-- <li><a title="contact" href="#contact">Contact</a></li> -->
<!-- <li>
<a href='https://pledgie.com/campaigns/26623'><img alt='Click here to lend your support to: MeshCon 2014 - We are developing technologies for fair and environment friendly production of garments and textiles. Please help us to meet at MeshCon in Berlin in October to continue our work. and make a donation at pledgie.com !' src='https://pledgie.com/campaigns/26623.png?skin_name=chrome' border='0' ></a>
</li> -->
<li>
<iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Ffashiontecorg&width=125&layout=button_count&action=like&show_faces=true&share=false&height=17&appId=139059259570625" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:125px; height:17px; padding-top:10px; padding-left:10px;" allowTransparency="true"></iframe>
</li>
</ul>
</nav>
</div>
<!-- /.container -->
</div>
<!-- /.navbar-inner -->
</div>
<!-- /.navbar -->
</div>
<!-- /.navbar-wrapper -->
<div id="top"></div>
<!-- ******************** HeaderWrap ********************-->
<div id="headerwrap">
<header class="clearfix">
<a href="http://tu-berlin.de" ><img src="img/logo/TUBerlin_FashionTec.jpg"></a>
<h1><span>MeshCon 10-15 Oct. 2014 </span></br>Fashion and Technology Week</br>Technische Universität Berlin</h1>
<div class="container">
<div class="row">
<div class="span12">
<!-- <h2>Fashion and Tec Week, Technische Universität Berlin, TU Berlin</h2> -->
<div class="row">
<!-- <h2>Signup for our Newsletter to be updated</h2>
<input type="text" name="your-email" placeholder="you@yourmail.com" class="cform-text" size="40" title="your email">
<input type="submit" value="Notify me" class="cform-submit"> -->
<!-- <a class= "btn btn-large" href="#services">Registration</a> -->
</div>
</div>
</div>
<div class="row">
<div class="span12">
<ul class="icon">
<!-- <li><a href="#" target="_blank"><i class="icon-pinterest-circled"></i></a></li> -->
<li><a href="https://www.facebook.com/events/1437460133192230/" target="_blank"><i class="icon-facebook-circled"></i></a></li>
<li><a href="https://twitter.com/mshcon" target="_blank"><i class="icon-twitter-circled"></i></a></li>
<li><a href="https://plus.google.com/u/0/b/114712991092443227807/114712991092443227807/posts" target="_blank"><i class="icon-gplus-circled"></i></a></li>
<!-- <li><a href="#" target="_blank"><i class="icon-skype-circled"></i></a></li> -->
</ul>
</div>
</div>
</div>
</header>
</div>
<!--******************** Feature ********************-->
<div class="scrollblock">
<section id="feature">
<div class="container">
<div class="row">
<div class="span12">
<article>
<p>The benefits of participatory production in the textile industry. Software developers, hardware makers, fashion designers, pattern creators, knitters, and textile manipulators exchange ideas for fair personalized fashion and future technologies of production.</p>
</article>
</div>
<!-- ./span12 -->
</div>
<!-- .row -->
</div>
<!-- ./container -->
</section>
</div>
<!--******************** Portfolio Section ********************-->
<section id="portfolio" class="single-page scrollblock">
<div class="container">
<div class="align"><i class="icon-terminal"></i></div>
<h1>What is MeshCon</h1>
<center><iframe width="853" height="480" src="//www.youtube-nocookie.com/embed/D-oLxNv_hTM" frameborder="0" allowfullscreen></iframe></center>
<br><br>
<p>How to reap the benefits of participatory production in the textile industry is the topic of the first edition of MeshCon taking place in Berlin from October 10-15, 2014.</p>
<p>We are developing concepts and Free and Open Source technologies for fair and environment friendly production of garments and textiles at home and in the industry. MeshCon Berlin brings together industry representatives, fashion designers, pattern creators, knitters, textile manipulators, FOSS developers and DIY hardware makers. The event offers a place to exchange new ideas in personalized fashion and technologies in the garment production.</p>
<p>Participants from across the world are joining the five day event at locations around Berlin city. The first day will start with a conference at the Technische Universität Berlin. In the following days you can learn how to create your own fashion and wearables at workshops at the Wikimedia Deutschland e.V. office.</p>
<p>Some of the projects presented at the event are below.</p>
<!-- Three columns -->
<div class="row">
<article class="span4 post"> <img class="img-news" src="img/AYAB.jpg" alt="">
<div class="inside">
<h2>Beautiful Knitting with your PC</h2>
<div class="entry-content">
<p>Use a digital image from your computer and simple software such as Paint or GIMP under Windows, Mac or Linux and create beautiful knits. We upgrade your old Brother knitting machines with our AYAB electronic shields. In a few easy steps you replace the existing control board of your machine with the AYAB controller. Then plugin in the cable with the Arduino part to your computer and start knitting with your PC like in the 21st century!</p>
<a href="http://ayab-knitting.com" class="more-link">Project Website</a> </div>
</div>
<!-- /.inside -->
</article>
<!-- /.span4 -->
<article class="span4 post"> <img class="img-news" src="img/PedroLopesProject.jpg" alt="">
<div class="inside">
<h2>Wearables: Fashion Gaming with Feeling Forces</h2>
<div class="entry-content">
<p>We are creating compelling wearables that provide exciting haptic feedback. Our approach achieves a low hardware footprint by leveraging the user's own muscle power through electrical-muscle stimulation. We demonstrate how our research at the Human Computer Interaction lab in the Hasso Plattner Institute enables wearable devices to become more immersive without sacrificing their form factor.</p>
<a href="http://plopes.org" class="more-link">Project Website</a> </div>
</div>
<!-- /.inside -->
</article>
<!-- /.span4 -->
<article class="span4 post"> <img class="img-news" src="img/Valentina.png" alt="">
<div class="inside">
<h2>Pattern Software for Fashion Makers</h2>
<div class="entry-content">
<p>Valentina is a new Free and Open Source patternmaking software for fashion designers and manufacturers with an app like interface. Valentina patterns can fit an actual person using precision formulas and real body measurements. Valentina provides tools to reduce the amount of manual work required for patternmaking. The project uses open data formats which are readable by any computer system.</p>
<a href="http://valentinaproject.bitbucket.org" class="more-link">Project Website</a> </div>
</div>
<!-- /.inside -->
</article>
<!-- /.span4 -->
</div>
<hr>
<!-- Three columns -->
<div class="row">
<article class="span4 post"> <img class="img-news" src="img/HardCoreVein.jpg" alt="">
<div class="inside">
<h2>Hard Core Vein: Wearable Tube Suit Prototype</h2>
<div class="entry-content">
<p>Hard Core Vein is a wearable prototype suit like piece that combines fashion with technology, music, and 3D printed illustrations. The suit is made of transparent tubes with ink in them. The tubes form patterns and illustrative figures, and are connected to small pumps that respond to musical beats. The liquid can thus be made to move to the rhythm of the music, just like blood being pumped through arteries.</p>
<a href="http://www.maartjedijkstra.com/collections/reflect-horridus.html" class="more-link">Project Website</a> </div>
</div>
<!-- /.inside -->
</article>
<!-- /.span4 -->
<article class="span4 post"> <img class="img-news" src="img/BodyApps.png" alt="">
<div class="inside">
<h2>Body Apps Measurement Solution for Customized Production</h2>
<div class="entry-content">
<p>Body Apps helps users to collect and manage their body data. Individual measurements can be stored offline or online where they can be shared with garment sellers that can match their cloth to their customers. Based on the data customized patterns can be generated for tailor-made clothes. The app generates 3D figures, that can ultimately be dressed and exported to virtual realities. The project is supported by Google Summer of Code 2014.</p>
<a href="https://github.com/fashiontec/bodyapps-android" class="more-link">Project Website</a> </div>
</div>
<!-- /.inside -->
</article>
<!-- /.span4 -->
<article class="span4 post"> <img class="img-news" src="img/Embroidermodder.png" alt="">
<div class="inside">
<h2>Embroidery for the Masses</h2>
<div class="entry-content">
<p>Embroidermodder is a free machine embroidery software tool that supports a variety of formats and allows the user to add custom modifications to their embroidery designs. One of the byproducts of Embroidermodder 2 was the creation of libembroidery. libembroidery is written in C. It supports reading and writing of a variety of embroidery formats, and several vector formats which are not commonly used in embroidery.</p>
<a href="http://embroidermodder.github.io" class="more-link">Project Website</a> </div>
</div>
<!-- /.inside -->
</article>
<!-- /.span4 -->
</div>
<!-- /.inside -->
</article>
<!-- /.span4 -->
</div>
<!-- /.row -->
<!-- /.container -->
</section>
<hr>
<!--******************** Agenda Section ********************-->
<section id="agenda" class="single-page scrollblock">
<div class="container">
<div class="align"><i class="icon-clipboard"></i></div>
<h1>Agenda</h1>
<!-- Three columns -->
<p></p> <br>
<div class="row">
<div class="span4">
<div class="mask2"> <a href="MeshCon2014Agenda-Overview-Full.png" rel="prettyPhoto"><img src="img/MeshCon2014Agenda-Overview.png" alt=""></a> </div>
<div class="inside">
<hgroup>
<h2>MeshCon Agenda Overview and Locations</h2>
</hgroup>
<div class="entry-content">
<p></p>
<a class="more-link" href="MeshCon2014Agenda-Overview.pdf">PDF Download</a> </div>
</div>
<!-- /.inside -->
</div>
<!-- /.span4 -->
<div class="span4">
<div class="mask2"> <a href="MeshCon2014Agenda-10+11+12Oct.png" rel="prettyPhoto"><img src="img/MeshCon2014Agenda1.png" alt=""></a> </div>
<div class="inside">
<hgroup>
<h2>MeshCon Agenda Oct. 10, 11, 12</h2>
</hgroup>
<div class="entry-content">
<p></p>
<a class="more-link" href="MeshCon2014Agenda-10+11+12Oct.pdf">PDF Download</a> </div>
</div>
<!-- /.inside -->
</div>
<!-- /.span4 -->
<div class="span4">
<div class="mask2"> <a href="MeshCon2014Agenda-13+14+15Oct.png" rel="prettyPhoto"><img src="img/MeshCon2014Agenda2.png" alt=""></a> </div>
<div class="inside">
<hgroup>
<h2>MeshCon Agenda Oct. 13, 14, 15</h2>
</hgroup>
<div class="entry-content">
<p></p>
<a class="more-link" href="MeshCon2014Agenda-13+14+15Oct.pdf">PDF Download</a> </div>
</div>
<!-- /.inside -->
</div>
<!-- /.span4 -->
</div>
<!-- /.row -->
<p></p>
<br><br>
<table class="table_programa" border="1" width="100%">
<tr class="header">
<td width="13%">Time</td>
<td width="60%">Activity</td>
<td width="27%">Location</td>
</tr>
<td>Thu Oct. 9 </br>19:00</td>
<td>Social Pre-Event Meetup <a href="http://www.meetup.com/FashionTec-Meetup-Berlin/events/210300402/" data-event="210300402" >More/RSVP</a></td>
<td>Kremanski, Adalbertstr. 96, Kreuzberg<br>(near U Kottbusser Tor)</td>
</tr>
<tr>
<td>Fri Oct. 10 </br>9:30-17.00</td>
<td>
<p>Presentations and Talks<br>
* Fashion and Technology Projects from Around the World <br>with 23 Speakers from 12 Countries <a href="http://www.meetup.com/FashionTec-Meetup-Berlin/events/210243822/" data-event="210243822" >More/RSVP</a><br>
* Afterwards Apperitivo and Berlin Style Dinner</p>
</td>
<td>Technische Universität Berlin<br>Marchstrasse 23, 10587 Berlin<br>(near U Ernst Reuter Platz)<br><br>
Apotheke Hackesches Quartier<br>Henriette-Herz-Platz 3, Berlin<br>(opposite S Hackescher Markt)</td>
</tr>
<tr>
<td>Sat Oct. 11 </br>9:30-17.00</td>
<td>
<p>Talks and Workshops<br>
* Machine Knitting with AYAB & friends. Use images from your PCs and transfer them to a knitting machine with an Arduino and AYAB shield With Christian Obersteiner, Andz and Kerstin Michler <a href="http://www.meetup.com/FashionTec-Meetup-Berlin/events/210309172/" data-event="210309172" >More/RSVP</a> <br>
* Let's make Wearables with a 4 Euro WiFi Wireless Module with Benjamin Henrion <a href="http://www.meetup.com/FashionTec-Meetup-Berlin/events/210447802/" data-event="210447802" >More/RSVP</a><br>
* Make Digital Sewing Patterns with Valentina Software and your PC with Roman Telezhinsky <a href="http://www.meetup.com/FashionTec-Meetup-Berlin/events/212055702/" data-event="212055702">More/RSVP</a><br>
* Create Apps for Firefox OS and develop FashionTec Website at the Mozilla Hacking Day <a href= "http://www.meetup.com/Berlin-Mozilla-Meetup/events/200778982/" >More/RSVP</a></p>
</td>
<td>Technische Universität Berlin<br>Marchstrasse 23, 10587 Berlin<br>(near U Ernst Reuter Platz)</td>
</tr>
<tr>
<td>Sun Oct. 12 </br>10:00-17:00</td>
<td>
<p>Meet Up<br>
* Brunch in Berlin-Friedrichshain <a href="http://www.meetup.com/FashionTec-Meetup-Berlin/events/210350342/" data-event="210350342">More/RSVP</a><br>
* Followed by visit of Berlin Co-Sewing Space Nadelwald in afternoon</p>
</td>
<td>Em-bar<br>Gabriel-Max-Straße 17, 10245 Berlin (near U+S Warschauer Str.)<br><br>Nadelwald Co-Sewing Space<br>Friedelstraße 11, 12047 Berlin<br>(near U Schönleinstr. or U Hermannplatz)
</td>
</tr>
<tr>
<td>Mon Oct. 13 </br>10:00-17:00</td>
<td>
<p>Workshops<br>
* Coole Eigene Strickfashion mit Strickmaschinen Herstellen bei Maschinenstricken für Beginner und Fortgeschrittene mit Gisela Schulz <a href="http://www.meetup.com/FashionTec-Meetup-Berlin/events/210429102/" data-event="210429102">More/RSVP</a><br>
* Verkauf und Marketing für Modedesigner und Schneider auf Fairmondo mit Katrin Bartels <a href="http://www.meetup.com/FashionTec-Meetup-Berlin/events/210743292/" data-event="210743292">More/RSVP</a><br>
* Fashion Popups: How to pop up, what to consider, what to look out for <a href="http://www.meetup.com/FashionTec-Meetup-Berlin/events/211918742/" data-event="211918742">More/RSVP</a></p>
</td>
<td>Wikimedia e.V. Deutschland<br>Tempelhofer Ufer 23/24, 10963 Berlin (near U Möckernbrücke)
</td>
</tr>
<tr>
<td>Tue Oct. 14 </br>10:00-17:00</td>
<td>
<p>Workshops<br>
* Nähcafe Co-Sewing für Fashion-Makers und Textil-Manipulatoren mit Swantje Wendt <a href="http://www.meetup.com/FashionTec-Meetup-Berlin/events/210433442/" data-event="210433442">More/RSVP</a><br>
* 3D-Druck als Werkzeug zur Herstellung von Fashion-Items für Modemacher <a href="http://www.meetup.com/FashionTec-Meetup-Berlin/events/210529022/" data-event="210529022">More/RSVP</a></p>
</td>
<td>Wikimedia e.V. Deutschland<br>Tempelhofer Ufer 23/24, 10963 Berlin (near U Möckernbrücke)
</td>
</tr>
<tr>
<td>Wed Oct. 15 </br>16:00</td>
<td>
<p>Open Space<br>
* im Elextronic & Textile Institute Berlin<br>
* mit Victoria Pawlik und Jessie Englishtsch/English) <a href="http://www.meetup.com/FashionTec-Meetup-Berlin/events/210682502/" data-event="210682502">More/RSVP</a></p>
</td>
<td>ETIB<br>Koloniestrasse 10, 13357 Berlin-Wedding (near U Osloer Str.)
</td>
</tr>
<tr>
<td>Wed Oct. 15 </br>19:00-22:00</td>
<td>
<p>M3 - Maker & Manufacturer Meetup mit Lutz Villalba-Adorno Founder von Maker Cloud <a href="http://www.eventbrite.com/e/m3-maker-manufacturer-meetup-tickets-7064785965">More/RSVP</a></p>
</td>
<td>BASE_camp, 51-53 Mittelstraße 10117 Berlin
</td>
</tr>
</table>
</section>
<hr>
<!--******************** Services Section ********************-->
<!-- <section id="services" class="single-page scrollblock">
<div class="container">
<div class="align"><i class="icon-desktop-circled"></i></div>
<h1 id="folio-headline">Registration</h1>
<div class="row">
<div style="width:100%; text-align:left;" >
<iframe src="http://eventbrite.com/tickets-external?eid=11830825317&ref=etckt" frameborder="0" height="360" width="100%" vspace="0" hspace="0" marginheight="5" marginwidth="5" scrolling="auto" allowtransparency="true"></iframe>
<div style="font-family:Helvetica, Arial; font-size:10px; padding:5px 0 5px; margin:2px; width:100%; text-align:left;" ><a style="color:#ddd; text-decoration:none;" target="_blank" href="http://www.eventbrite.com/r/etckt">Online event registration</a><span style="color:#ddd;"> for </span><a style="color:#ddd; text-decoration:none;" target="_blank" href="https://meshcon.eventbrite.com/?ref=etckt">MeshCon</a> <span style="color:#ddd;">powered by</span> <a style="color:#ddd; text-decoration:none;" target="_blank" href="http://www.eventbrite.com?ref=etckt">Eventbrite</a></div></div>
<!-- /.span4 -->
<!-- </div>
<!-- /.row -->
<!-- </div>
<!-- /.container -->
<!-- </section>
<hr> -->
<!--******************** Speaker Section ********************-->
<section id="speaker" class="single-page scrollblock">
<div class="container">
<div class="align"><i class="icon-group-circled"></i></div>
<h1>Our Rocking Speakers</h1>
<!-- Five columns -->
<div class="row">
<div class="span2 offset1">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/SoKanno.jpg" alt=""> </div>
<h3>So Kanno (Japan)</h3>
<div class="job-position">Fashion Artist and Developer</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/PedroLopes.jpg" alt=""> </div>
<h3>Pedro Lopes (Portugal)</h3>
<div class="job-position">Wearable Haptic Devices at Hasso Plattner Institute</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/AngelaIttel.jpg" alt=""> </div>
<h3>Angela Ittel (Berlin)</h3>
<div class="job-position">Professor and Vice President TU Berlin</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/RomanTelezhinsky.png" alt=""> </div>
<h3>Roman Telezhinsky (Ukraine)</h3>
<div class="job-position">Valentina Pattern Software</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/GescheJoost.jpg" alt=""> </div>
<h3>Gesche Joost (Germany)</h3>
<div class="job-position">Professor Design Theory at Universität der Künste Berlin</div>
</div>
<!-- ./span2 -->
</div>
<!-- /.row -->
<!-- Five columns -->
<div class="row">
<div class="span2 offset1">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/Andz-AndreasMueller.jpg" alt=""> </div>
<h3>Andz (Andreas Müller, Munich)</h3>
<div class="job-position">Knitting Machine Hacker</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/MaartjeDijkstra.jpg" alt=""> </div>
<h3>Maartje Dijkstra (The Netherlands)</h3>
<div class="job-position">Fashion-Music-3D Artist</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/ChristianObersteiner.jpg" alt=""> </div>
<h3>Christian Obersteiner (Munich)</h3>
<div class="job-position">Knitting Machine Software Developer</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/TankThunderbird.jpg" alt=""> </div>
<h3>Tank Thunderbird (US)</h3>
<div class="job-position">Digital Studio Manager at SP Fashion</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/JoergHenning.jpg" alt=""> </div>
<h3>Jörg Henning (Germany / Vietnam)</h3>
<div class="job-position">Body-Apps Developer</div>
</div>
<!-- ./span2 -->
</div>
<!-- /.row -->
<!-- Five columns -->
<div class="row">
<div class="span2 offset1">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/MadeleineShepherd.jpg" alt=""> </div>
<h3>Madeleine Shepherd (UK)</h3>
<div class="job-position">Botanica Mathematica & Knitting</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/OlgaNowikow.jpg" alt=""> </div>
<h3>Olga Nowikow (Berlin)</h3>
<div class="job-position">Fashionist at Lebenskleidung</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/MartinSchneider.jpg" alt=""> </div>
<h3>Martin Schneider (Weimar)</h3>
<div class="job-position">Bauhaus-Universität</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/KatharinaBredies.jpg" alt=""> </div>
<h3>Katharina Bredies (Berlin)</h3>
<div class="job-position">Designforschung Universität der Künste</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/BenjaminHenrion.jpg" alt=""> </div>
<h3>Benjamin Henrion (Belgium)</h3>
<div class="job-position">President FFII</div>
</div>
<!-- ./span2 -->
</div>
<!-- /.row -->
<!-- Five columns -->
<div class="row">
<div class="span2 offset1">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/SabineHuelsebus.jpg" alt=""> </div>
<h3>Sabine Hülsebus (Berlin)</h3>
<div class="job-position">Project Manager Fashion Network</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/BoernLebenstedt.jpg" alt=""> </div>
<h3>Beorn Lebenstedt aka Newk (The Netherlands)</h3>
<div class="job-position">Fashion Technologist and DJ</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/CokoDiamond.png" alt=""> </div>
<h3>Coko Diamond (Berlin)</h3>
<div class="job-position">Founder Presema</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/JulianRenard.jpg" alt=""> </div>
<h3>Julian Renard (Paris)</h3>
<div class="job-position">Fashion Startup Holyvice</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/HongPhucDang.jpg" alt=""> </div>
<h3>Hong Phuc Dang (Vietnam)</h3>
<div class="job-position">Mathematical Sewing Patterns with Processing</div>
</div>
<!-- ./span2 -->
</div>
<!-- Five columns -->
<div class="row">
<div class="span2 offset1">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/AnnaWieland.jpg" alt=""> </div>
<h3>Anna Wieland (Karlsruhe)</h3>
<div class="job-position">Virtual Fashion Experience</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/JuliaKuemmel.jpg" alt=""> </div>
<h3>Julia Kümmel (Berlin)</h3>
<div class="job-position">Maker and Process Coach at Making Things Happen</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/JeffDonaldson.jpg" alt=""> </div>
<h3>Jeff Donaldson (USA)</h3>
<div class="job-position">Founder Glitchaus</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/KerstinMichler.jpg" alt=""> </div>
<h3>Kerstin Michler (Jena)</h3>
<div class="job-position">Founder Knitting Forum</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/Jean-MichelArgaud.jpg" alt=""> </div>
<h3>Jean-Michel Argaud (France)</h3>
<div class="job-position">Entrepreneur and Founder Kodewear</div>
</div>
<!-- ./span2 -->
</div>
<!-- Five columns -->
<div class="row">
<div class="span2 offset1">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/MargaretZollinger.jpg" alt=""> </div>
<h3>Margaret Zollinger (Switzerland)</h3>
<div class="job-position">Knitting & Wearables, Kunsthochschule Weissensee</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/SwantjeWendt.jpg" alt=""> </div>
<h3>Swantje Wendt</h3>
<div class="job-position">Nadelwald Co-Sewing Space</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/KatrinBartels.png" alt=""> </div>
<h3>Katrin Bartels (Berlin)</h3>
<div class="job-position">Fairmondo</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/YvesPierre.jpg" alt=""> </div>
<h3>Yves Pierre (Haiti)</h3>
<div class="job-position">Founder Copertura</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/LutzVillalba-Adorno.png" alt=""> </div>
<h3>Lutz Villalba-Adorno</h3>
<div class="job-position">eBusiness Consultant & agile Productmanager</div>
</div>
<!-- ./span2 -->
</div>
<!-- Five columns -->
<div class="row">
<div class="span2 offset1">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/GiselaSchulz.jpg" alt=""> </div>
<h3>Gisela Schulz (Germany)</h3>
<div class="job-position">Knitting Machine Expert</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/EmilyShurey.jpg" alt=""> </div>
<h3>Emily Shurey (UK)</h3>
<div class="job-position">We Are Pop Up</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/PatrickProy.jpg" alt=""> </div>
<h3>Patrick Proy (France)</h3>
<div class="job-position">Patternmaking on the Web</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/VictoriaPawlik.jpg" alt=""> </div>
<h3>Victoria Pawlik (Berlin)</h3>
<div class="job-position">Electronic Textile Institute</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/MichaelKohler.jpg" alt=""> </div>
<h3>Michael Kohler</h3>
<div class="job-position">Developer and Mozilla Rep</div>
</div>
<!-- ./span2 -->
</div>
<!-- /.row -->
<!-- <div class="row">
<div class="span10 offset1">
<hr class="featurette-divider">
<div class="featurette">
<h2 class="featurette-heading">Want to know more? <span class="muted">| about MeshCon</span></h2>
<p>The first edition of MeshCon is taking place in Berlin from October 10-15, 2014 with the topic how to reap the benefits of participatory production in the textile industry.</p>
<p>MeshCon Berlin brings together industry representatives, fashion designers, pattern creators, knitters, textile manipulators, programmers and DIY hardware makers. The event offers a place to exchange new ideas in personalized fashion and technologies in the garment production.</p>
<p>Participants from across the world are joining the five day event at locations around Berlin city. The first day will start with a conference at the Technische Universität Berlin. In the following days you can learn how to create your own fashion and wearables at workshops at the Wikimedia Deutschland e.V. office.</p>
</div>
<!-- /.featurette -->
<hr class="featurette-divider">
</div>
<!-- .span10 -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</section>
<!--******************** Team Section ********************-->
<section id="team" class="single-page scrollblock">
<div class="container">
<div class="align"><i class="icon-group-circled"></i></div>
<h1>Meet the team</h1>
<!-- Five columns -->
<div class="row">
<div class="span2 offset3">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/Hans-LiudgerDienel.jpg" alt=""> </div>
<h3>Prof. Dr. Hans-Liudger Dienel </h3>
<div class="job-position">TU Berlin</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/JosephineBarbe.jpg" alt=""> </div>
<h3>Dr. Josephine Barbe</h3>
<div class="job-position">TU Berlin</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/MarioBehling.jpg" alt=""> </div>
<h3>Mario Behling</h3>
<div class="job-position">MBM Managing Director</div>
</div>
<!-- ./span2 -->
</div>
<!-- /.row -->
<!-- Five columns -->
<div class="row">
<div class="span2 offset3">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/AndreRebentisch.jpg" alt=""> </div>
<h3>André Rebentisch </h3>
<div class="job-position">Technologist</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/OliverMacconnell.jpg" alt=""> </div>
<h3>Prof. Oliver MacConnell</h3>
<div class="job-position">Modemanagement BBW Hochschule</div>
</div>
<!-- ./span2 -->
<div class="span2">
<div class="teamalign"> <img class="team-thumb img-circle" src="img/MelanieStilz.jpg" alt=""> </div>
<h3>Melanie Stilz</h3>
<div class="job-position">TU Berlin</div>
</div>
<!-- ./span2 -->
<div class="row">
<div class="span10 offset1">
<hr class="featurette-divider">
<!-- <div class="featurette">
<h2 class="featurette-heading">Want to know more? <span class="muted">| a little about us</span></h2>
<p>Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular. Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores.</p>
<p>At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues.</p>
<p>A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es.</p>
</div>
<!-- /.featurette -->
<!-- <hr class="featurette-divider">
--> </div>
<!-- .span10 -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</section>
<!--******************** Other Section ********************-->
<!-- <section id="agenda" class="single-page scrollblock">
<div class="container">
<div class="align"><i class="icon-clipboard"></i></div>
<h1>Agenda</h1>
</div>
<!-- /.container -->
</section>
<!-- <hr>
<!--******************** Location Section ********************-->
<section id="location" class="single-page scrollblock">
<div class="container">
<div class="align"><i class="icon-cog-circled"></i></div>
<h1>Locations</h1>
<!-- Four columns -->
<div class="row">
<div class="span3">
<div class="align"> <i class="icon-desktop sev_icon"></i> </div>
<h2>Fr.10/Sat.11 Oct<br><a href= "http://tu-berlin.de" target="_blank">Technische Universität Berlin</a></br>
Marchstrasse 23, MAR 1-1</br>
10587 Berlin<br>
(U1 Ernst-Reuter-Platz)</h2>
<p></p>
</div>
<!-- /.span3 -->
<div class="span3">
<div class="align"> <i class="icon-vector sev_icon"></i> </div>
<h2>Su.12 Oct<br><a href="http://nadelwald.me" >Nadelwald Co-Sewing Space</a><br>
Friedelstr.11, 12047 Berlin<br>
(near U8 Schönleinstr., U7, U8 Hermannplatz) </h2>
<p></p>
</div>
<!-- /.span3 -->
<div class="span3">
<div class="align"> <i class="icon-lamp sev_icon"></i> </div>
<h2>Mo.13/Tue.14 Oct<br><a href="https://wikimedia.de/">Wikimedia Deutschland</a><br>
Tempelhofer Ufer 23/24<br>
10963 Berlin<br>
(near U1, U7 Möckernbrücke) </h2>
<p></p>
</div>
<!-- /.span3 -->
<div class="span3">
<div class="align"> <i class="icon-rocket sev_icon"></i> </div>
<h2>Wed. 15.Oct.<br><a href="http://etib.org/">Electronic & Textile Institute</a><br>
Koloniestrasse 10<br>
13357 Berlin-Wedding<br>
(near U Osloer Str.) </h2>
<p></p>
</div>
<!-- /.span3 -->
<br>
</div>
<!-- /.row -->
<!-- </div>
<!-- /.container -->
<hr>
<iframe src="https://www.google.com/maps/d/embed?mid=zixPfRnqJQps.kSLi2SSR_yCo" width="100%" height="600"></iframe>
</section>
<!-- <hr>-->
<!--******************** Testimonials Section ********************-->
<section id="testimonials" class="single-page hidden-phone">
<div class="container">
<div class="row">
<div class="blockquote-wrapper">
<blockquote class="mega">
<div class="span4">
<p class="cite">André Rebentisch:</p>
</div>
<div class="span8">
<p class="alignright">"Meshcon is an exciting event, where creative minds merge and develop ideas. Join us and become part of the team. Please fill out the form for Volunteering <a href="https://docs.google.com/spreadsheet/viewform?usp=drive_web&formkey=dGhEQ3RmRzhBdDU4TVpDQmtJTk9ua1E6MA#gid=0" target="_blank">here</a>."</p>
</div>
</blockquote>
</div>
<!-- /.blockquote-wrapper -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</section>
<!-- <hr>
<!--******************** Wear IT Section ********************-->
<section id="wearit" class="single-page scrollblock">
<div class="container">
<div class="align"><i class="icon-tools"></i></div>
<h1>Wear It - Our Festival Partner</h1>
<div class="span10 offset1">
<a href="http://wearit-berlin.com" target="_blank"><img src="img/wear-it-berlin.jpg"></a><br><br><br>
</div>
<div class="span8 offset1">
<div class="featurette">
<h2 class="featurette-heading">Wear It | festival for wearable electronics and arts</h2>
<h2><span class="muted"><p> 11th and 12th of October 2014 at Betahaus Berlin and Platoon Kunsthalle. Wearables are shaping up to be the next big thing and we're kicking off the first ever Wear It festival with the theme "Make Your Dress Code". <a href="https://wearit-berlin.com"></b>More Info..</a></span></h2>
</div>
<!-- /.featurette -->
</div>
<hr class="featurette-divider">
</div>
</section>
<!--******************** Sponsors Section ********************-->
<section id="sponsors" class="single-page scrollblock">
<div class="container">
<div class="align"><i class="icon-pencil-circled"></i></div>
<!--- <h1>Our Partners</h1>
<div class="row">
<article class="span4 post"> <div class="mask2"><a href="www.berlin.de/sen/wirtschaft/" target="_blank"><img class="img-news" src="img/logo/senatsverwaltung-wirtschaft.png" alt="Senatsverwaltung fuer Wirtschaft, Technologie und Forschung"></a></div>
</article>
<!-- /.span4 -->
<!-- <article class="span4 post"> <div class="mask2"><a href="http://wikimedia.de/" target="_blank"><img class="img-news" src="img/logo/Wikimedia.png" alt="Wikimedia Germany"></a></div>
</article>
<!-- /.span4 -->
<!-- <article class="span4 post"> <div class="mask2"><a href="http://nadelwald.me/" target="_blank"><img class="img-news" src="img/logo/nadelwald.png" alt="Nadelwald Co-Sewing Space Berlin"></a></div>
</article>
<!-- /.span4 -->
<!--- </div>
<!-- /.row -->
<h1>Our Hosts</h1>
<div class="row">
<article class="span4 post"> <div class="mask2"><a href="http://tu-berlin.de/" target="_blank"><img class="img-news" src="img/logo/TUBerlin.png" alt="TU Berlin"></a></div>
</article>
<!-- /.span4 -->
<article class="span4 post"> <div class="mask2"><a href="http://wikimedia.de/" target="_blank"><img class="img-news" src="img/logo/Wikimedia.png" alt="Wikimedia Germany"></a></div>
</article>
<!-- /.span4 -->
<article class="span4 post"> <div class="mask2"><a href="http://nadelwald.me/" target="_blank"><img class="img-news" src="img/logo/nadelwald.png" alt="Nadelwald Co-Sewing Space Berlin"></a></div>
</article>
<!-- /.span4 -->
</div>
<!-- /.row -->
<h1>Our Partners</h1>
<!-- Five columns -->
<div class="row">
<div class="span2 offset1">
<div class="align"> <div class="mask2"><a href="http://ffii.org/" target="_blank"><img src="img/logo/FFII.png"></a></div></div>
<h2>Foundation for a Free Information Infrastructure e.V.</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://ayab-knitting.com" target="_blank"><img src="img/logo/ayab.png"></a></div></div>
<h2>AYAB</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="https://reps.mozilla.org/e/mozilla-mozilla-hacking-day-2/" target="_blank"><img src="img/logo/mozilla.png"></a></div></div>
<h2>Mozilla Hacking Day Berlin</h2
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://www.eventbrite.com/e/m3-maker-manufacturer-meetup-tickets-7064785965" target="_blank"><img src="img/logo/m3meshcon.png"></a></div></div>
<h2>m3 Maker & Manufacturer Event</h2
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://www.bbw-hochschule.de/" target="_blank"><img src="img/logo/bbw.png"></a></div></div>
<h2>BBW Hochschule</h2>
<p></p>
</div>
</div>
<!-- /.container -->
<!-- Five columns -->
<div class="row">
<div class="span2 offset1">
<div class="align"> <div class="mask2"><a href="http://holyvice.com" target="_blank"><img src="img/logo/holyvice.png"></a></div></div>
<h2>Holyvice</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://interges.org" target="_blank"><img src="img/logo/InternationaleGesellschaft.png"></a></div></div>
<h2>Internationale Gesellschaft</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://lxde.org/" target="_blank"><img src="img/logo/LXDE_Foundation.png"></a></div></div>
<h2>LXDE Foundation e.V.</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://wearit-berlin.com/" target="_blank"><img src="img/logo/wearit.png"></a></div></div>
<h2>Wear It Berlin</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://nemona.de/" target="_blank"><img src="img/logo/nemona.png"></a></div></div>
<h2>NEMONA - Netzwerk Mode und Nähen</h2>
<p></p>
</div>
</div>
<!-- /.container -->
<!-- Five columns -->
<div class="row">
<div class="span2 offset1">
<div class="align"> <div class="mask2"><a href="http://valentinaproject.bitbucket.org" target="_blank"><img src="img/logo/Valentina-Logo.png"></a></div></div>
<h2>Project Valentina Patternmaking</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="https://fashiontec.org/" target="_blank"><img src="img/logo/fashionindustry.png"></a></div></div>
<h2>Focus on Fashion and Industry</h2
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://strickforum.de/" target="_blank"><img src="img/logo/strickforum.png"></a></div></div>
<h2>Strickforum Deutschland</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://www.etib.org" target="_blank"><img src="img/logo/etib.png"></a></div></div>
<h2>Electronic & Textile Institute</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://okfn.de/" target="_blank"><img src="img/logo/okfn.png"></a></div></div>
<h2>Open Knowledge Foundation Deutschland</h2>
<p></p>
</div>
</div>
<!-- /.container -->
<h1>Media and Supporting Partners</h1>
<!-- Five columns -->
<div class="row">
<div class="span2 offset1">
<div class="align"> <div class="mask2"><a href="https://voicerepublic.com/venues/meshcon-berlin" target="_blank"><img src="img/logo/VoiceRepublic.jpg"></a></div></div>
<h2>Voice Republic</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://makercloud.io" target="_blank"><img src="img/logo/makercloud.png"></a></div></div>
<h2>Makercloud</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://www.think-big.org" target="_blank"><img src="img/logo/Logo-Think-Big.png"></a></div></div>
<h2>Think Big</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://berlinergazette.de/" target="_blank"><img src="img/logo/BerlinerGazette.png"></a></div></div>
<h2>Berliner Gazette</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://www.berlin.de/projektzukunft/ikt-wirtschaft/internet/artikel/fashion-meets-tech-im-rahmen-der-meshcon-und-wear-it-in-berlin/" target="_blank"><img src="img/logo/senatsveraltung-wirtschaft-small.png"></a></div></div>
<h2>Senatsverwaltung für Wirtschaft</h2>
<p></p>
</div>
</div>
<!-- /.container -->
<!-- Five columns -->
<div class="row">
<div class="span2 offset1">
<div class="align"> <div class="mask2"><a href="http://www.fairmondo.de/" target="_blank"><img src="img/logo/fairnopoly.jpg"></a></div></div>
<h2>Fairmondo</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://www.popupvillage.de" target="_blank"><img src="img/logo/PopupVillage.png"></a></div></div>
<h2>Pop-up Village</h2>
<p></p>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://www.kodewear.com" target="_blank"><img src="img/logo/Kodewear.png"></a></div></div>
<h2>Kodewear</h2>
<p></p>
</div>
<!-- /.span2 -->
<div class="span2">
<div class="align"> <div class="mask2"><a href="http://www.creative-city-berlin.de" target="_blank"><img src="img/logo/CreativeCityBerlin.png"></a></div></div>
<h2>Creative City Berlin</h2>
<p></p>