-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path00_30Jan14.html
More file actions
1455 lines (1280 loc) · 57.7 KB
/
00_30Jan14.html
File metadata and controls
1455 lines (1280 loc) · 57.7 KB
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>Open Project Management: Business Models of Open Design</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/supsi.css" id="theme">
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Fjalla+One' rel='stylesheet' type='text/css'>
<link rel="icon" href="http://www.maind.supsi.ch/Master_Interaction_Design-favicon.jpg" type="image/x-icon" />
<link rel="shortcut icon" href="http://www.maind.supsi.ch/Master_Interaction_Design-favicon.jpg" type="image/x-icon" />
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- If the query includes 'print-pdf', use the PDF print sheet -->
<script>
document.write( '<link rel="stylesheet" href="css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h1>Open Project Management</h1>
<h3>30 January 2014</h3>
</section>
<section>
<h3>1. Media ecosystem</h3>
<h3>2. Platforms</h3>
<h3>3. Business models, Money and economy</h3>
<h3>4. Business Model (Canvas)</h3>
</section>
<section>
<h1>1. Media ecosystem</h1>
</section>
<section>
<h2>Wired</h2>
<a class="image" href="http://wired.com/" target="_blank">
<img src="images/wired.jpg" >
</a>
<p class="source">Source: <a href="http://wired.com/">http://wired.com/</a></p>
</section>
<section>
<h2>DIYDrones from Chris Anderson (Wired)</h2>
<a class="image" href="http://diydrones.com/" target="_blank">
<img src="images/diydrones.jpg" >
</a>
<p class="source">Source: <a href="http://diydrones.com/">http://diydrones.com/</a></p>
</section>
<section>
<h2>DIYDrones from Chris Anderson (Wired)</h2>
<a class="image" href="http://www.wired.com/dangerroom/2012/06/ff_drones" target="_blank">
<img src="images/diydrones-wired.jpg" >
</a>
<p class="source">Source: <a href="http://www.wired.com/dangerroom/2012/06/ff_drones">http://www.wired.com/dangerroom/2012/06/ff_drones</a></p>
</section>
<section>
<h2>DIYDrones: a real factory</h2>
<a class="image" href="http://diydrones.com/profiles/blogs/tour-of-the-new-3d-robotics-factory" target="_blank">
<img src="images/diydrones-factory.jpg" >
</a>
<p class="source">Source: <a href="http://diydrones.com/profiles/blogs/tour-of-the-new-3d-robotics-factory">http://diydrones.com/profiles/blogs/tour-of-the-new-3d-robotics-factory</a></p>
</section>
<section>
<h2>"Makers" from Chris Anderson (Wired)</h2>
<a class="image" href="http://www.amazon.com/Makers-The-New-Industrial-Revolution/dp/0307720950/" target="_blank">
<img src="images/makers.jpg" >
</a>
<p class="source">Source: Anderson, Chris. Makers: The New Industrial Revolution. Crown Business, 2012.</p>
</section>
<section>
<h2>O'Reilly Media</h2>
<a class="image" href="http://oreilly.com/" target="_blank">
<img src="images/oreilly.jpg" >
</a>
<p class="source">Source: <a href="http://oreilly.com/">http://oreilly.com/</a></p>
</section>
<section>
<h2>Make Magazine</h2>
<a class="image" href="http://makezine.com/" target="_blank">
<img src="images/make-magazine.jpg" >
</a>
<p class="source">Source: <a href="http://makezine.com/">http://makezine.com//</a></p>
</section>
<section>
<h2>Maker Media</h2>
<a class="image" href="http://makermedia.com/" target="_blank">
<img src="images/makermedia.jpg" >
</a>
<p class="source">Source: <a href="http://makermedia.com/">http://makermedia.com/</a></p>
</section>
<section>
<h2>Make: Blog</h2>
<a class="image" href="http://makezine.com/blog/" target="_blank">
<img src="images/make-blog.jpg" >
</a>
<p class="source">Source: <a href="http://makezine.com/blog/">http://makezine.com/blog/</a></p>
</section>
<section>
<h2>Make: Store</h2>
<a class="image" href="http://www.makershed.com/" target="_blank">
<img src="images/make-store.jpg" >
</a>
<p class="source">Source: <a href="http://www.makershed.com/">http://www.makershed.com/</a></p>
</section>
<section>
<h2>Make: Faires</h2>
<a class="image" href="http://makerfaire.com/map/" target="_blank">
<img src="images/make-faires.jpg" >
</a>
<p class="source">Source: <a href="http://makerfaire.com/map/">http://makerfaire.com/map/</a></p>
</section>
<section>
<h2>Make: Faires. Next edition in Europe</h2>
<a class="image" href="http://www.makerfairerome.eu/news/torna-maker-faire-romedal-28-settembre-al-5-ottobre-2014/" target="_blank">
<img src="images/make-faires-rome.jpg" >
</a>
<p class="source">Source: <a href="http://www.makerfairerome.eu/news/torna-maker-faire-romedal-28-settembre-al-5-ottobre-2014/">http://www.makerfairerome.eu/news/torna-maker-faire-romedal-28-settembre-al-5-ottobre-2014/</a></p>
</section>
<section>
<h2>Make: TV</h2>
<a class="image" href="http://archive.makezine.com/tv/" target="_blank">
<img src="images/make-tv.jpg" >
</a>
<p class="source">Source: <a href="http://archive.makezine.com/tv/">http://archive.makezine.com/tv/</a></p>
</section>
<section>
<h2>Make: Controller Kit</h2>
<a class="image" href="http://makezine.com/2009/09/10/review-make-controller-kit-v2/" target="_blank">
<img src="images/make-controller.jpg" >
</a>
<p class="source">Source: <a href="http://makezine.com/2009/09/10/review-make-controller-kit-v2/">http://makezine.com/2009/09/10/review-make-controller-kit-v2/</a></p>
</section>
<section>
<h2>Make: Craft:</h2>
<a class="image" href="http://makezine.com/craftzine/" target="_blank">
<img src="images/make-craft.jpg" >
</a>
<p class="source">Source: <a href="http://makezine.com/craftzine/">http://makezine.com/craftzine/</a></p>
</section>
<section>
<h2>Makerbot: TV</h2>
<a class="image" href="http://blip.tv/makerbot" target="_blank">
<img src="images/makerbot-tv.jpg" >
</a>
<p class="source">Source: <a href="http://blip.tv/makerbot">http://blip.tv/makerbot</a></p>
</section>
<section>
<h2>Makerbot: Thingiverse</h2>
<a class="image" href="http://www.thingiverse.com/thing:29258" target="_blank">
<img src="images/makerbot-thingiverse.jpg" >
</a>
<p class="source">Source: <a href="http://www.thingiverse.com/thing:29258">http://www.thingiverse.com/thing:29258</a></p>
</section>
<section>
<h2>Ultimaker: YouMagine</h2>
<a class="image" href="https://www.youmagine.com/" target="_blank">
<img src="images/ultimaker-youmagine.jpg" >
</a>
<p class="source">Source: <a href="https://www.youmagine.com/">https://www.youmagine.com/</a></p>
</section>
<section>
<h1>2. Platforms</h1>
</section>
<section>
<h2>Simon "The age of the platform"</h2>
<a class="image" href="http://www.theageoftheplatform.com/" target="_blank">
<img src="images/ageoftheplatform.jpg" >
</a>
<p class="source">Source: Source: Simon, Phil. The Age of the Platform: How Amazon, Apple, Facebook, and Google Have Redefined Business. Motion Publishing, 2011.</p>
</section>
<section>
<h2>A platform</h2>
<p>= an extremely valuable and powerful ecosystem that quickly
and easily scales, morphs, and incorporates new features (called
planks), users, customers, vendors, and partners.
</p><p>The most vibrant platforms embrace third-party collaboration.
The companies behind these platforms seek to foster symbiotic
and mutually benefcial relationships with users, customers,
partners, vendors, developers, and the community at large. At
their core, platforms today are primarily about consumer utility
and communications.
</p>
<p class="source">Source: Simon, Phil. The Age of the Platform: How Amazon, Apple, Facebook, and Google Have Redefined Business. Motion Publishing, 2011.
</p>
</section>
<section>
<h2>A platform</h2>
<p>
<img src="images/platformtable.jpg" >
</p>
<p class="source">Source: Source: Simon, Phil. The Age of the Platform: How Amazon, Apple, Facebook, and Google Have Redefined Business. Motion Publishing, 2011.</p>
</section>
<section>
<h2>Etsy: A DIY/Craft marketplace</h2>
<a href="https://www.etsy.com/">
<img src="images/etsy.jpg">
</a>
<p class="source">Source: <a href="https://www.etsy.com/">https://www.etsy.com/</a>
</p>
</section>
<section>
<h2>Etsy: A platform for DIY</h2>
<a href="https://www.etsy.com/developers?ref=ft_dev">
<img src="images/etsy-api.jpg">
</a>
<p class="source">Source: <a href="https://www.etsy.com/developers?ref=ft_dev">https://www.etsy.com/developers?ref=ft_dev</a>
</p>
</section>
<section>
<h2>Etsy: A platform for DIY</h2>
<p>
<iframe width="533" height="400" src="http://www.youtube.com/embed/RmXJXYHnWPo" frameborder="0" allowfullscreen></iframe>
</p>
<p class="source">Source: <a href="http://www.youtube.com/watch?v=RmXJXYHnWPo">http://www.youtube.com/watch?v=RmXJXYHnWPo</a>
</p>
</section>
<section>
<h2>Blomming: Another platform for DIY</h2>
<a href="http://www.blomming.com/">
<img src="images/blomming.jpg">
</a>
<p class="source">Source: <a href="http://www.blomming.com/">http://www.blomming.com/</a>
</p>
</section>
<section>
<h2>Ponoko: A Fabbing platform</h2>
<a href="http://www.ponoko.com/">
<img src="images/ponoko.jpg">
</a>
<p class="source">Source: <a href="http://www.ponoko.com/">http://www.ponoko.com/</a>
</p>
</section>
<section>
<h2>Ponoko: A distributed platform</h2>
<a href="http://blog.ponoko.com/digital-making-hubs/">
<img src="images/ponoko-hubs.jpg">
</a>
<p class="source">Source: <a href="http://blog.ponoko.com/digital-making-hubs/">http://blog.ponoko.com/digital-making-hubs/</a>
</p>
</section>
<section>
<h2>Ponoko: A platform with API</h2>
<a href="http://www.ponoko.com/app-gateway/app-gateway">
<img src="images/ponoko-api.jpg">
</a>
<p class="source">Source: <a href="http://www.ponoko.com/app-gateway/app-gateway">http://www.ponoko.com/app-gateway/app-gateway</a>
</p>
</section>
<section>
<h2>Shapeways: A 3D Printing Platform</h2>
<a href="http://www.shapeways.com/">
<img src="images/shapeways.jpg">
</a>
<p class="source">Source: <a href="http://www.shapeways.com/">http://www.shapeways.com/</a>
</p>
</section>
<section>
<h2>Shapeways: A 3D Printing Platform</h2>
<a href="http://www.shapeways.com/materials?li=nav">
<img src="images/shapeways-materials.jpg">
</a>
<p class="source">Source: <a href="http://www.shapeways.com/materials?li=nav">http://www.shapeways.com/materials?li=nav</a>
</p>
</section>
<section>
<h2>Shapeways: A 3D Printing Platform</h2>
<a href="http://www.shapeways.com/blog/archives/1442-Funding-the-Rise-of-Creative-Commerce.html">
<img src="images/shapeways-data.jpg">
</a>
<p class="source">Source: <a href="http://www.shapeways.com/blog/archives/1442-Funding-the-Rise-of-Creative-Commerce.html">http://www.shapeways.com/blog/archives/1442-Funding-the-Rise-of-Creative-Commerce.html</a>
</p>
</section>
<section>
<h2>Shapeways: A 3D Printing Platform</h2>
<a href="http://developers.shapeways.com/">
<img src="images/shapeways-api.jpg">
</a>
<p class="source">Source: <a href="http://developers.shapeways.com/">http://developers.shapeways.com/</a>
</p>
</section>
<section>
<h2>Shapeways: A 3D Printing Platform</h2>
<p><iframe width="711" height="400" src="http://www.youtube.com/embed/qJuTM0Y7U1k" frameborder="0" allowfullscreen></iframe>
</p>
<p class="source">Source: <a href="http://www.youtube.com/watch?feature=player_embedded&v=qJuTM0Y7U1k">http://www.youtube.com/watch?feature=player_embedded&v=qJuTM0Y7U1k</a>
</p>
</section>
<section>
<h2>i.materialise: A 3D Printing Platform</h2>
<a href="http://i.materialise.com/">
<img src="images/imaterialise.jpg">
</a>
<p class="source">Source: <a href="http://i.materialise.com/">http://i.materialise.com/</a>
</p>
</section>
<section>
<h2>Sculpteo: A 3D Printing Platform</h2>
<a href="http://www.sculpteo.com/en/">
<img src="images/sculpteo.jpg">
</a>
<p class="source">Source: <a href="http://www.sculpteo.com/en/">http://www.sculpteo.com/en/</a>
</p>
</section>
<section>
<h2>Inventables: a store, not a Platform</h2>
<a href="https://www.inventables.com/">
<img src="images/inventables.jpg">
</a>
<p class="source">Source: <a href="https://www.inventables.com/">https://www.inventables.com/</a>
</p>
</section>
<section>
<h2>Adafruit: a store, not a Platform</h2>
<a href="http://adafruit.com/">
<img src="images/adafruit.jpg">
</a>
<p class="source">Source: <a href="http://adafruit.com/">http://adafruit.com/</a>
</p>
</section>
<section>
<h2>Adafruit: TV</h2>
<a href="http://www.youtube.com/user/adafruit">
<img src="images/adafruit-tv.jpg">
</a>
<p class="source">Source: <a href="http://www.youtube.com/user/adafruit">http://www.youtube.com/user/adafruit</a>
</p>
</section>
<section>
<h2>Adafruit: Video Interview</h2>
<p>
<iframe width="711" height="400" src="http://www.youtube.com/embed/qpYdt4hdEi8" frameborder="0" allowfullscreen></iframe>
</p>
<p class="source">Source: <a href="http://www.youtube.com/watch?v=qpYdt4hdEi8">http://www.youtube.com/watch?v=qpYdt4hdEi8</a>
</p>
</section>
<section>
<h2>Sparkfun: a store, not a Platform</h2>
<a href="https://www.sparkfun.com/">
<img src="images/sparkfun.jpg">
</a>
<p class="source">Source: <a href="https://www.sparkfun.com/">https://www.sparkfun.com/</a>
</p>
</section>
<section>
<h2>Sparkfun: TV</h2>
<a href="http://www.youtube.com/user/sparkfun">
<img src="images/sparkfun-tv.jpg">
</a>
<p class="source">Source: <a href="http://www.youtube.com/user/sparkfun">http://www.youtube.com/user/sparkfun</a>
</p>
</section>
<section>
<h2>Sparkfun: How they create value</h2>
<p>
<iframe width="711" height="400" src="http://www.youtube.com/embed/dvvtRoBn4YM" frameborder="0" allowfullscreen></iframe>
</p>
<p class="source">Source: <a href="http://www.youtube.com/watch?v=dvvtRoBn4YM">http://www.youtube.com/watch?v=dvvtRoBn4YM</a>
</p>
</section>
<section>
<h2>Physical Platforms: Arduino</h2>
<a href="http://arduino.cc/">
<img src="images/arduino.jpg">
</a>
<p class="source">Source: <a href="http://arduino.cc/">http://arduino.cc/</a>
</p>
</section>
<section>
<h2>Physical Platforms: Arduino</h2>
<a href="http://arduino.cc/en/Main/Products">
<img src="images/arduino-products.jpg">
</a>
<p class="source">Source: <a href="http://arduino.cc/en/Main/Products">http://arduino.cc/en/Main/Products</a>
</p>
</section>
<section>
<h2>Physical Platforms: Arduino: Spark Core</h2>
<a href="https://www.spark.io/">
<img src="images/spark.jpg">
</a>
<p class="source">Source: <a href="https://www.spark.io/">https://www.spark.io/</a>
</p>
</section>
<section>
<h2>Physical Platforms: Raspberry Pi</h2>
<a href="http://en.wikipedia.org/wiki/Raspberry_Pi">
<img src="images/raspberrypi.jpg">
</a>
<p class="source">Source: <a href="http://en.wikipedia.org/wiki/Raspberry_Pi">http://en.wikipedia.org/wiki/Raspberry_Pi</a>
</p>
</section>
<section>
<h2>Physical Platforms: Micro Python</h2>
<a href="https://www.kickstarter.com/projects/214379695/micro-python-python-for-microcontrollers">
<img src="images/micropython.jpg">
</a>
<p class="source">Source: <a href="https://www.kickstarter.com/projects/214379695/micro-python-python-for-microcontrollers">https://www.kickstarter.com/projects/214379695/micro-python-python-for-microcontrollers</a>
</p>
</section>
<section>
<h2>Funding Platforms: Kickstarter</h2>
<a href="https://www.kickstarter.com/">
<img src="images/kickstarter.jpg">
</a>
<p class="source">Source: <a href="https://www.kickstarter.com/">https://www.kickstarter.com/</a>
</p>
</section>
<section>
<h2>Kickstarter: Projects 2009-11</h2>
<a href="https://www.kickstarter.com/blog/happy-birthday-kickstarter">
<img src="images/kickstarter-projects.jpg">
</a>
<p class="source">Source: <a href="https://www.kickstarter.com/blog/happy-birthday-kickstarter">https://www.kickstarter.com/blog/happy-birthday-kickstarter</a>
</p>
</section>
<section>
<h2>Kickstarter: Success 2009-11</h2>
<a href="https://www.kickstarter.com/blog/happy-birthday-kickstarter">
<img src="images/kickstarter-success.jpg">
</a>
<p class="source">Source: <a href="https://www.kickstarter.com/blog/happy-birthday-kickstarter">https://www.kickstarter.com/blog/happy-birthday-kickstarter</a>
</p>
</section>
<section>
<h2>Kickstarter: Kind of projects 2009-11</h2>
<a href="https://www.kickstarter.com/blog/happy-birthday-kickstarter">
<img src="images/kickstarter-fields.jpg">
</a>
<p class="source">Source: <a href="https://www.kickstarter.com/blog/happy-birthday-kickstarter">https://www.kickstarter.com/blog/happy-birthday-kickstarter</a>
</p>
</section>
<section>
<h2>Kickstarter: some sort of API</h2>
<a href="http://syntaxi.net/2013/03/24/let-s-explore-kickstarter-s-api/">
<img src="images/kickstarter-api.jpg">
</a>
<p class="source">Source: <a href="http://syntaxi.net/2013/03/24/let-s-explore-kickstarter-s-api/">http://syntaxi.net/2013/03/24/let-s-explore-kickstarter-s-api/</a>
</p>
</section>
<section>
<h2>KickTraq: built with some sort of API</h2>
<a href="http://www.kicktraq.com/projects/sparkdevices/spark-core-wi-fi-for-everything-arduino-compatible/">
<img src="images/kicktraq.jpg">
</a>
<p class="source">Source: <a href="http://www.kicktraq.com/projects/sparkdevices/spark-core-wi-fi-for-everything-arduino-compatible/">http://www.kicktraq.com/projects/sparkdevices/spark-core-wi-fi-for-everything-arduino-compatible/</a>
</p>
</section>
<section>
<h2>Kickstarter: rather a medium?</h2>
<a href="http://www.fastcompany.com/1843007/kickstarter-crowdfunding-platform-or-reality-show">
<img src="images/kickstarter-medium.jpg">
</a>
<p class="source">Source: <a href="http://www.fastcompany.com/1843007/kickstarter-crowdfunding-platform-or-reality-show">http://www.fastcompany.com/1843007/kickstarter-crowdfunding-platform-or-reality-show</a>
</p>
</section>
<section>
<h2>Kickstarter: lessons learned #01</h2>
<p>
<ul>
<li><strong>Design for Simplicity</strong>: reduce the functionalities / components</li>
<li><strong>Design for scale</strong>: identify your possible supply chain and plan how to scale the production</li>
<li><strong>Treat it like a job</strong>: it requires full time energy, and probably also a team work</li>
<li><strong>Befriend fellow hackers</strong>: develop the project in hackerspaces or fablabs</li>
<li><strong>Leverage your backers</strong>: use them not just for collecting money!</li>
</ul>
</p>
<p class="source">Source: <a href="http://www.wired.com/design/2012/08/how-kickstarter-project-hexy-got-made/">http://www.wired.com/design/2012/08/how-kickstarter-project-hexy-got-made/</a>
</p>
</section>
<section>
<h2>Kickstarter: lessons learned #02</h2>
<p>
<ul>
<li><strong>Set a spot-on funding goal — not too big, not too small</strong>: set your Kickstarter goal near $10,000: 38% of projects met their goals</li>
<li><strong>Don’t take too long to raise your money</strong>: The average Kickstarter campaign lasts for 30 days, with 35% of success</li>
<li><strong>Produce a slick video to get attention</strong>:The nearly foolproof way to raise money on Kickstarter is to get the attention of the crowdfunding site’s staff (89% success)</li>
<li><strong>Make at least 1,000 Facebook friends</strong>: Founders with 1,000 Facebook friends or more can have a success up to 40%</li>
</ul>
</p>
<p class="source">Source: <a href="http://www.wired.com/business/2012/07/kickstarter/">http://www.wired.com/business/2012/07/kickstarter/</a>
</p>
</section>
<section>
<h2>Funding Platforms: Indiegogo</h2>
<a href="http://www.indiegogo.com/">
<img src="images/indiegogo.jpg">
</a>
<p class="source">Source: <a href="http://www.indiegogo.com/">http://www.indiegogo.com/</a>
</p>
</section>
<section>
<h2>Funding Platforms for Open Projects: Goteo</h2>
<a href="http://goteo.org/?lang=en">
<img src="images/goteo.jpg">
</a>
<p class="source">Source: <a href="http://goteo.org/?lang=en">http://goteo.org/?lang=en</a>
</p>
</section>
<section>
<h2>Funding Platforms for Open Projects: Goteo</h2>
<a href="https://github.com/Goteo/Goteo">
<img src="images/goteo-os.jpg">
</a>
<p class="source">Source: <a href="https://github.com/Goteo/Goteo">https://github.com/Goteo/Goteo</a>
</p>
</section>
<section>
<h2>Funding Platforms for Local Projects: SmallKnot</h2>
<a href="http://www.smallknot.com/">
<img src="images/smallknot.jpg">
</a>
<p class="source">Source: <a href="http://www.smallknot.com/">http://www.smallknot.com/</a>
</p>
</section>
<section>
<h2>Funding Platforms for Local Projects: Brickstarter</h2>
<a href="http://brickstarter.org/brickstarter-the-book/">
<img src="images/brickstarter.jpg">
</a>
<p class="source">Source: <a href="http://brickstarter.org/brickstarter-the-book/">http://brickstarter.org/brickstarter-the-book/</a>
</p>
</section>
<section>
<h2>Platforms for coding: Sourceforge, for the organization</h2>
<a href="http://sourceforge.net/">
<img src="images/sourceforge.jpg">
</a>
<p class="source">Source: <a href="http://sourceforge.net/">http://sourceforge.net/</a>
</p>
</section>
<section>
<h2>Platforms for coding: GitHub, for social network</h2>
<a href="https://github.com/">
<img src="images/github.jpg">
</a>
<p class="source">Source: <a href="https://github.com/">https://github.com/</a>
</p>
</section>
<section>
<h2>Platforms for coding: GitHub, for social network</h2>
<a href="http://developer.github.com/v3/">
<img src="images/github-api.jpg">
</a>
<p class="source">Source: <a href="http://developer.github.com/v3/">http://developer.github.com/v3/</a>
</p>
</section>
<section>
<h2>Platforms for coding: Bitbucket (like GitHub)</h2>
<a href="http://bitbucket.org/">
<img src="images/bitbucket.jpg">
</a>
<p class="source">Source: <a href="http://bitbucket.org/">http://bitbucket.org/</a>
</p>
</section>
<section>
<h2>Platforms for coding: Bitbucket (like GitHub)</h2>
<a href="https://confluence.atlassian.com/display/BITBUCKET/Use+the+Bitbucket+REST+APIs;jsessionid=DB9DF2D3BD98DCC8E73B07C0963FBA14">
<img src="images/bitbucket-api.jpg">
</a>
<p class="source">Source: <a href="https://confluence.atlassian.com/display/BITBUCKET/Use+the+Bitbucket+REST+APIs;jsessionid=DB9DF2D3BD98DCC8E73B07C0963FBA14">https://confluence.atlassian.com/display/BITBUCKET/Use+the+Bitbucket+REST+APIs;jsessionid=DB9DF2D3BD98DCC8E73B07C0963FBA14</a>
</p>
</section>
<section>
<h2>Platforms for coding: GitTip for GitHub,Bitbucket,Twitter</h2>
<a href="https://www.gittip.com/">
<img src="images/gittip.jpg">
</a>
<p class="source">Source: <a href="https://www.gittip.com/">https://www.gittip.com/</a>
</p>
</section>
<section>
<h2>Platforms for hardware: Upverter</h2>
<a href="https://upverter.com/">
<img src="images/upverter.jpg">
</a>
<p class="source">Source: <a href="https://upverter.com/">https://upverter.com/</a>
</p>
</section>
<section>
<h2>Platforms for hardware: 123D Circuits</h2>
<a href="http://www.123dapp.com/circuits">
<img src="images/123dcircuits.jpg">
</a>
<p class="source">Source: <a href="http://www.123dapp.com/circuits">http://www.123dapp.com/circuits</a>
</p>
</section>
<section>
<h1>3. Business models, Money and economy</h1>
</section>
<section>
<h2>And designers can be entrepreneurs</h2>
<a href="http://www.kickstarter.com/projects/danprovost/glif-iphone-4-tripod-mount-and-stand">
<img src="images/entrepreneur01.jpg">
</a>
<p class="source">Source: <a href="http://www.kickstarter.com/projects/danprovost/glif-iphone-4-tripod-mount-and-stand">http://www.kickstarter.com/projects/danprovost/glif-iphone-4-tripod-mount-and-stand</a>
</p>
</section>
<section>
<h2>And designers can be entrepreneurs</h2>
<a href="http://www.kickstarter.com/projects/1104350651/tiktok-lunatik-multi-touch-watch-kits">
<img src="images/entrepreneur02.jpg">
</a>
<p class="source">Source: <a href="http://www.kickstarter.com/projects/1104350651/tiktok-lunatik-multi-touch-watch-kits">http://www.kickstarter.com/projects/1104350651/tiktok-lunatik-multi-touch-watch-kits</a>
</p>
</section>
<section>
<h2>But "Open" alone is not enough</h2>
<a href="http://www.kickstarter.com/projects/1104350651/tiktok-lunatik-multi-touch-watch-kits">
<img src="images/entrepreneur03.jpg">
</a>
<p class="source">Source: <a href="http://www.kickstarter.com/projects/1104350651/tiktok-lunatik-multi-touch-watch-kits">http://www.kickstarter.com/projects/1104350651/tiktok-lunatik-multi-touch-watch-kits</a>
</p>
</section>
<section>
<h2>You have to interact with the market</h2>
<a href="http://www.threadless.com/">
<img src="images/threadless.jpg">
</a>
<p class="source">Source: <a href="http://www.threadless.com/">http://www.threadless.com/</a>
</p>
</section>
<section>
<h2>Open Hardware: a rising market</h2>
<a href="http://makezine.com/2010/05/06/million-dollar-baby-businesses-de/">
<img src="images/oh-market.jpg">
</a>
<p class="source">Source: <a href="http://makezine.com/2010/05/06/million-dollar-baby-businesses-de/">http://makezine.com/2010/05/06/million-dollar-baby-businesses-de/</a>
</p>
</section>
<section>
<h2>A rising market: Sparkfun</h2>
<p>
“In 2010, SparkFun had revenues of about $18.4MM. As of April of 2011, we have around 120 employees, up from 87 a year ago.”
</p>
<p>
“We hope to grow by 50% this year (2011) to around $28MM in sales. We
expect to be in the 30-50MM range in the next 3-5.”
</p>
<p class="source">Source: <a href="http://www.sparkfun.com/news/599">http://www.sparkfun.com/news/599</a>
</p>
</section>
<section>
<h2>A long tail of users / projects...</h2>
<a href="http://en.wikipedia.org/wiki/Power_law">
<img src="images/longtail-w.jpg">
</a>
<p class="source">Source: <a href="http://en.wikipedia.org/wiki/Power_law">http://en.wikipedia.org/wiki/Power_law</a>
</p>
</section>
<section>
<h2>Anderson: "The Long Tail"</h2>
<a href="http://www.amazon.com/The-Long-Tail-Business-Selling/dp/1401309666">
<img src="images/longtail-b.jpg">
</a>
<p class="source">Source: Anderson, Chris. Long Tail, The, Revised and Updated Edition: Why the Future of Business Is Selling Less of More. Rev Upd. Hyperion, 2008.
</p>
</section>
<section>
<h2>Anderson: "Free"</h2>
<a href="http://www.amazon.com/Free-Future-Radical-Chris-Anderson-ebook/dp/B004E10RV8/">
<img src="images/free.jpg">
</a>
<p class="source">Source: Anderson, Chris. Long Tail, The, Revised and Updated Edition: Why the Future of Business Is Selling Less of More. Rev Upd. Hyperion, 2008.
</p>
</section>
<section>
<h2>Etsy: a long tail of users/projects</h2>
<a href="https://www.etsy.com/press/kit/">
<img src="images/longtail-etsy.jpg">
</a>
<p class="source">Source: <a href="https://www.etsy.com/press/kit/">https://www.etsy.com/press/kit/</a>
</p>
</section>
<section>
<h2>Makers can create a startup: Makerbot</h2>
<a href="http://www.makerbot.com/">
<img src="images/makerbot.jpg">
</a>
<p class="source">Source: <a href="http://www.makerbot.com/">http://www.makerbot.com/</a>
</p>
</section>
<section>
<h2>The market of 3D printing</h2>
<p>
The market for 3D printing in 2012, consisting of all products and services worldwide, grew 28.6% (CAGR) to $2.204 billion. This is up from $1.714 billion in 2011, when it grew 29.4%. Growth was 24.1% in 2010. The average annual growth (CAGR) of the industry over the past 25 years is an impressive 25.4%. The CAGR is 27.4% over the past three years (2010–2012)
</p>
<p class="source">Source: <a href="http://3dprintingindustry.com/2013/05/24/unsurprisingly-wohlers-report-2013-reveals-continued-growth-in-3d-printing/">http://3dprintingindustry.com/2013/05/24/unsurprisingly-wohlers-report-2013-reveals-continued-growth-in-3d-printing/</a>
</p>
</section>
<section>
<h2>Makerbot: 10 million</h2>
<a href="http://techcrunch.com/2011/08/23/makerbot-takes-10-million-in-funding-from-foundry-group-angels/">
<img src="images/makerbot-10.jpg">
</a>
<p class="source">Source: <a href="http://techcrunch.com/2011/08/23/makerbot-takes-10-million-in-funding-from-foundry-group-angels/">http://techcrunch.com/2011/08/23/makerbot-takes-10-million-in-funding-from-foundry-group-angels/</a>
</p>
</section>
<section>
<h2>Shapeways: 30 million</h2>
<a href="http://www.forbes.com/sites/anthonykosner/2013/04/23/shapeways-raises-30-million-to-bring-high-quality-3d-printing-to-everyone/">
<img src="images/shapeways-30.jpg">
</a>
<p class="source">Source: <a href="http://www.forbes.com/sites/anthonykosner/2013/04/23/shapeways-raises-30-million-to-bring-high-quality-3d-printing-to-everyone/">http://www.forbes.com/sites/anthonykosner/2013/04/23/shapeways-raises-30-million-to-bring-high-quality-3d-printing-to-everyone/</a>
</p>
</section>
<section>
<h2>Makerbot + Stratasys: 604 million</h2>
<a href="http://www.forbes.com/sites/kellyclay/2013/06/19/3d-printing-company-makerbot-acquired-in-604-million-deal/">
<img src="images/makerbot-stratasys.jpg">
</a>
<p class="source">Source: <a href="http://www.forbes.com/sites/kellyclay/2013/06/19/3d-printing-company-makerbot-acquired-in-604-million-deal/">http://www.forbes.com/sites/kellyclay/2013/06/19/3d-printing-company-makerbot-acquired-in-604-million-deal/</a>
</p>
</section>
<section>
<h2>Big corporations: 3D Systems</h2>
<a href="http://www.3dsystems.com/">
<img src="images/3dsystems.jpg">
</a>
<p class="source">Source: <a href="http://www.3dsystems.com/">http://www.3dsystems.com/</a>
</p>
</section>
<section>
<h2>3D Systems: not just machines</h2>
<a href="http://investor.3dsystems.com/">
<img src="images/3dsystems-pie.jpg">
</a>
<p class="source">Source: <a href="http://investor.3dsystems.com/">http://investor.3dsystems.com/</a>
</p>
</section>
<section>
<h2>A typical closed system</h2>
<a href="http://en.wikipedia.org/wiki/Timeline_of_Microsoft_Windows">
<img src="images/windows-timeline.jpg">
</a>
<p class="source">Source: <a href="http://en.wikipedia.org/wiki/Timeline_of_Microsoft_Windows">http://en.wikipedia.org/wiki/Timeline_of_Microsoft_Windows</a>
</p>
</section>
<section>
<h2>A typical open system</h2>
<a href="http://futurist.se/gldt/">
<img src="images/linux-timeline.jpg">
</a>
<p class="source">Source: <a href="http://futurist.se/gldt/">http://futurist.se/gldt/</a>
</p>
</section>
<section>
<h2>Open - Closed Innovation</h2>
<a href="http://www.emeraldinsight.com/journals.htm?issn=0959-3845&volume=22&issue=4&articleid=1823612&show=html">
<img src="images/open-closed.jpg">
</a>
<p class="source">Source: <a href="http://www.emeraldinsight.com/journals.htm?issn=0959-3845&volume=22&issue=4&articleid=1823612&show=html">http://www.emeraldinsight.com/journals.htm?issn=0959-3845&volume=22&issue=4&articleid=1823612&show=html</a>
</p>
</section>
<section>
<h2>Open Source vs. Open Innovation</h2>
<blockquote>
“Open innovation is sometimes confated with open source methodologies for software development. There are some concepts that are shared between the two, such as the idea of <strong>greater external sources of information to create value</strong>. However, open innovation explicitly incorporates the <strong>business model as the source of both value creation and value capture</strong>. This latter role of the business model enables the organization to sustain its position in the industry value chain over time. While open source shares the focus on value creation throughout an industry value chain, its proponents usually <strong>deny or downplay the importance of value capture</strong>.”
</blockquote>
<p class="source">Source: Chesbrough, H. (2011). Open Services Innovation: Rethinking Your Business to Grow and Compete in a New Era (1st ed.). Jossey-Bass.
</p>
</section>
<section>
<h2>Look for what is becoming a commodity #01</h2>
<p>
A <strong>commodity</strong> is a good for which there is demand, but which is supplied without qualitative differentiation across a market. [...] the market treats it as equivalent or nearly so no matter who produces it.
</p>
<p class="source">Source: <a href="http://en.wikipedia.org/wiki/Commodity">http://en.wikipedia.org/wiki/Commodity</a>
</p>
</section>
<section>
<h2>Look for what is becoming a commodity #02</h2>
<p>
<strong>Commoditization</strong> (also called commodifcation) occurs as a goods or services market loses differentiation across its supply base, often by the diffusion of the intellectual capital necessary to acquire or produce it effciently. […] a unique, branded product into a market based on undifferentiated products.
</p>
<p class="source">Source: <a href="http://en.wikipedia.org/wiki/Commoditization">http://en.wikipedia.org/wiki/Commoditization</a>
</p>
</section>
<section>
<h2>Hardware and software, becoming commodities #01</h2>
<p>
<strong>('50s-'70s)</strong> <strong>Hardware</strong> is the product, software is for free: mainframes<br><br>
--> Hacker ethic of sharing information
</p>
</section>
<section>
<h2>Hardware and software, becoming commodities #02</h2>
<p>
<strong>('80s-'90s)</strong> Hardware is commodity, <strong>software</strong> is the product and it's proprietary: personal computers<br><br>
--> Proprietary software emerges with Microsoft
</p>
</section>
<section>
<h2>Hardware and software, becoming commodities #03</h2>
<p>
<strong>('00s-...)</strong> Even software is a commodity, <strong>so let's sell services and get data from users</strong>: open source, web 2.0, services around software, software as service, the cloud<br><br>
--> Web 2.0 emerges
</p>
</section>
<section>
<h2>Manufacturing and Design, becoming commodities #01</h2>
<p>
<strong>('90s-'00s)</strong> Manufacturing becomes a commodity and slowly disappears in the West (thanks to China)
</p>
</section>
<section>
<h2>Manufacturing and Design, becoming commodities #02</h2>
<p>
<strong>('10s-'...s)</strong> Now it's even more a commodity
(thanks to Fabbing)
</p>
</section>
<section>
<h2>Manufacturing and Design, becoming commodities #03</h2>
<p>
<strong>('00s-'...s)</strong> Professional design is slowly becoming a commodity (thanks to Fast Fashion, Ikea, design schools bubble, Shanzai) (still except UX / ID)
</p>
</section>
<section>
<h2>Manufacturing and Design, becoming commodities #04</h2>
<p>
Where is <strong>value</strong> now, in Design and Manufacturing?
</p>
</section>
<section>
<h2>Fabbing + designers = $$$ + Open Design</h2>
<a href="http://www.freedomofcreation.com/home/3d-systems-acquires-freedom-of-creation">
<img src="images/foc.jpg">
</a>
<p class="source">Source: <a href="http://www.freedomofcreation.com/home/3d-systems-acquires-freedom-of-creation">http://www.freedomofcreation.com/home/3d-systems-acquires-freedom-of-creation</a>
</p>
</section>
<section>
<h2>3D Systems + Freedom of Creation: Cubify</h2>
<a href="http://cubify.com/cube/index.aspx">
<img src="images/cubify.jpg">
</a>
<p class="source">Source: <a href="http://cubify.com/cube/index.aspx">http://cubify.com/cube/index.aspx</a>
</p>
</section>
<section>
<h2>3D Systems + Freedom of Creation: Cubify</h2>
<a href="http://cubify.com/cube/index.aspx">
<img src="images/cubify-od.jpg">
</a>
<p class="source">Source: <a href="http://cubify.com/cube/index.aspx">http://cubify.com/cube/index.aspx</a>
</p>
</section>
<section>
<h2>But even makers may be giving content away...</h2>
<a href="http://www.thingiverse.com/thing:13827/">
<img src="images/botmobile.jpg">
</a>
<p class="source">Source: <a href="http://www.thingiverse.com/thing:13827/">http://www.thingiverse.com/thing:13827/</a>
</p>
</section>
<section>
<h2>And users innovate... a lot!</h2>
<a href="http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1683503">
<img src="images/vonhippel.jpg">
</a>
<p class="source">Source: Hippel, Eric A. Von, Jeroen De Jong, and Steven Flowers. “Comparing Business and Household Sector Innovation in Consumer Products: Findings from a Representative Study in the UK.” SSRN eLibrary (September 27, 2010). <a href="http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1683503">http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1683503</a>.
</p>
</section>
<section>
<h2>Business models of Open Source (software)</h2>
<p>
<strong>Non-monetary</strong> incentives:
<ul>
<li>problem solving</li>
<li>ethical questions</li>
<li>education + learning</li>
<li>reputation --> social interactions + jobs</li>
<li>--> it's not just about money! Also a <strong>gift economy</strong></li>
</ul>