Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... ·...

58
Komplex und Kompliziert Überleben in der Dauerkrise Softwareentwicklung Dr. Jendrik Johannes Softwareentwicklung In der Industriellen Praxis, TU Dresden, WS 16

Transcript of Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... ·...

Page 1: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Komplex und Kompliziert

Überleben in der Dauerkrise Softwareentwicklung

Dr. Jendrik Johannes

Softwareentwicklung In der Industriellen Praxis, TU Dresden, WS 16

Page 2: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

2001 - 2006 Studium Medieniformatik (Schwerpunkt Software)

2007 - 2010 Promotion

(und Tool-Entwicklung)

2011 Projektarbeit

(Beratung / Entwicklung)2012

alles ;)

2013 - 2015 Produktentwicklung

(vieles)

2016Tool-/Open-Source- Produktentwicklung

Page 3: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem
Page 4: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem
Page 5: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Komplex? und Kompliziert?

Mosely, Marks; - http://shaffner.us/cs/papers/tarpit.pdf summary by Adrian Colyer’s the morning paper - https://blog.acolyer.org/2015/03/20/out-of-the-tar-pit

“Complexity is the root cause of the vast majority of problems with software today.”

Page 6: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Essential Complexityis inherent in, and the essence of, the problem

(as seen by the users)

Accidental Complexityis all the rest —

complexity with which the development team would not have to deal in the ideal world

(e.g. complexity arising from performance issues and from suboptimal language and infrastructure)

Moseley, Marks; - http://shaffner.us/cs/papers/tarpit.pdf summary by Adrian Colyer’s the morning paper - https://blog.acolyer.org/2015/03/20/out-of-the-tar-pit

Komplex? und Kompliziert?

Page 7: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Essential Complexity

= Komplex Accidental Complexity

= Kompliziert

Moseley, Marks; - http://shaffner.us/cs/papers/tarpit.pdf summary by Adrian Colyer’s the morning paper - https://blog.acolyer.org/2015/03/20/out-of-the-tar-pit

Komplex? und Kompliziert?

Page 8: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Komplex? und Kompliziert?

LV Softwaretechnologie TU Dresden - Übung 1 - http://st.inf.tu-dresden.de/files/teaching/ws07/SWTI/Bibliothek.java

1. [Accidental] Complexity caused by State 2. [Accidental] Complexity caused by Control

public class Bibliothek {

private Buch [] meineBuecher = new Buch[10]; private int anzahl = 0;

public void aufnehmen(Buch buch) { meineBuecher[anzahl] = buch; anzahl += 1; System.out.println("Ich habe das Buch " + buch + " aufgenommen!"); }}

Page 9: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Dekomposition des Systems

http://repository.cmu.edu/cgi/viewcontent.cgi?article=2979&context=compsci summary by Adrian Colyer’s the morning paper:

https://blog.acolyer.org/2016/09/05/on-the-criteria-to-be-used-in-decomposing-systems-into-modules

“The effectiveness of a modularization is dependent upon the criteria used in dividing the system into modules.”

Page 10: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

technische Umsetzung Planung

Kriterium für Dekomposition: Planbarkeit erzeugen durch Trennung von Planung und Umsetzung

Page 11: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Uncle Bob; The Clean Architecture - https://8thlight.com/blog/uncle-bob/2012/08/13/the-clean-architecture.html

Page 12: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Uncle Bob; The Clean Architecture - https://8thlight.com/blog/uncle-bob/2012/08/13/the-clean-architecture.html

Technical Systems

Interface Adapters

Domain (Essential)

Model &

Logic

“[The Dependency] Rule says that source code

dependencies can only point inwards.”

Page 13: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

technische Umsetzung Planung

Kriterium für Dekomposition: Planbarkeit erzeugen durch Trennung von Planung und Umsetzung

Domain (Essential)

Model &

Logic

Page 14: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

The IT Crowd, S1E1 (2006)

https://www.youtube.com/watch?v=e5NANrVnqLc

Page 15: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

https://pbs.twimg.com/media/B5j9Z1mIcAAj-p0.jpg

Wahrnehmung von Technologie / “Technikern”

Page 16: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

http://beyondthecubicle.org/wp-content/uploads/2014/12/cubiclesA.jpg

Wahrnehmung von Technologie / “Technikern”

Page 17: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

https://de.pinterest.com/pin/49258189649068407

Gemeinsame Vision

Vertrauen statt

Kontrolle

Page 18: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

http://dilbert.com/strip/1995-03-11

Vertrauen statt

Kontrolle

Page 19: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Gemeinsame Vision

Vertrauen statt Kontrolle

Henrik Kniberg - Spotify Engineering Culture - https://www.youtube.com/watch?v=Mpsn3WaI_4k

Page 20: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Fähigkeit der Systems sich selbst zu verändern, Strukturen und Prozessen anzupassen

Henrik Kniberg - Spotify Engineering Culture - https://www.youtube.com/watch?v=Mpsn3WaI_4k

Page 21: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Planung

Fail

LearnImproveHenrik Kniberg - Spotify Engineering Culture - https://www.youtube.com/watch?v=Mpsn3WaI_4k

Page 22: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

technische Umsetzung Planung

Kriterium für Dekomposition: Planbarkeit erzeugen durch Trennung von Planung und Umsetzung

Domain (Essential)

Model &

Logic

Page 23: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Domain (Essential)

Model &

Logic

Fail > Learn > Improve

Gemeinsame Vision

Kriterium für Dekomposition: Planbarkeit erzeugen durch Trennung von Planung und Umsetzung

Page 24: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Domain (Essential)

Model &

Logic

Fail > Learn > Improve

Vertrauen statt Kontrolle

Wahrnehmung von Technologie/Technikern

Gemeinsame Vision

Page 25: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Tasks - http://xkcd.com/1425

Page 26: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Bret Victor - Inventing on Principle (2012) - http://worrydream.com/#!/InventingOnPrinciple

Page 27: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Bret Victor - Inventing on Principle (2012) - http://worrydream.com/#!/InventingOnPrinciple

“creators need an immediate connection to what they create”

— Brett Victor, Inventing on Principle

Fokus auf kreative Arbeit

Page 28: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Fail

LearnImprove

Page 29: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Compile / Run = Fail

Observer = Learn

Write Code = Improve

Page 30: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Fail

LearnImprove

Page 31: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Fail

LearnImprove

Page 32: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Fail

Learn

Improve

Page 33: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Fail

Learn

Improve

Page 34: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Domain (Essential)

Model &

Logic

Gemeinsame Vision

Fail > Learn > Improve

Fokus auf kreative Arbeit

Page 35: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Domain (Essential)

Model &

Logic

Fail > Learn > Improve

Fokus auf kreative Arbeit

Vertrauen statt Kontrolle

Wahrnehmung von Technologie/Technikern

Gemeinsame Vision

Page 36: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Let’s talk about the state of Tools

TV Problems - https://www.xkcd.com/1760

Tools help us reduce accidental complexity …but often it goes (terribly) wrong

Page 37: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

E-Mail

Fail > Learn > Improve

Transparenz: Vertrauen statt KontrolleFokus auf kreative Arbeit

Gemeinsame Vision

Wahrnehmung von Technologie/Technikern

Page 38: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Meetings

Fail > Learn > Improve

Transparenz: Vertrauen statt KontrolleFokus auf kreative Arbeit

Gemeinsame Vision

Wahrnehmung von Technologie/Technikern

Page 39: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

JIRA (Ticket-System)

Fail > Learn > Improve

Transparenz: Vertrauen statt KontrolleFokus auf kreative Arbeit

Gemeinsame Vision

Wahrnehmung von Technologie/Technikern

Page 40: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Git

Fail > Learn > Improve

Transparenz: Vertrauen statt KontrolleFokus auf kreative Arbeit

Gemeinsame Vision

Wahrnehmung von Technologie/Technikern

Page 41: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

GitHub (verbindet Git und Planungs-Tool)

Fail > Learn > Improve

Transparenz: Vertrauen statt KontrolleFokus auf kreative Arbeit

Gemeinsame Vision

Wahrnehmung von Technologie/Technikern

Page 42: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Slack

Fail > Learn > Improve

Transparenz: Vertrauen statt KontrolleFokus auf kreative Arbeit

Gemeinsame Vision

Wahrnehmung von Technologie/Technikern

Fail > Learn > Improve

Transparenz: Vertrauen statt KontrolleFokus auf kreative Arbeit

Gemeinsame Vision

Wahrnehmung von Technologie/Technikern

Page 43: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Fail > Learn > Improve

Transparenz: Vertrauen statt KontrolleFokus auf kreative Arbeit

Gemeinsame Vision

Wahrnehmung von Technologie/Technikern

Scrum (or Kanban, or Scrumban, or Scrum of Scrums or <fill in agile buzzword here>)

Page 44: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Code > Compile > Run

Fail > Learn > Improve

Transparenz: Vertrauen statt KontrolleFokus auf kreative Arbeit

Gemeinsame Vision

Wahrnehmung von Technologie/Technikern

Page 45: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Object-Oriented Programming

Fail > Learn > Improve

Transparenz: Vertrauen statt KontrolleFokus auf kreative Arbeit

Gemeinsame Vision

Wahrnehmung von Technologie/Technikern

Page 46: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Fail > Learn > Improve

Transparenz: Vertrauen statt KontrolleFokus auf kreative Arbeit

Gemeinsame Vision

Wahrnehmung von Technologie/Technikern

Enterprise Architectures/Frameworks (maybe not all of them ;))

Page 47: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

What do we need?

Page 48: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

“The Super Tool”?

Fail > Learn > Improve

Transparenz: Vertrauen statt KontrolleFokus auf kreative Arbeit

Gemeinsame Vision

Wahrnehmung von Technologie/Technikern

Page 49: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Komplex? und Kompliziert?

Moseley, Marks; - http://shaffner.us/cs/papers/tarpit.pdf summary by Adrian Colyer’s the morning paper - https://blog.acolyer.org/2015/03/20/out-of-the-tar-pit

Complexity is the root cause of the vast majority of problems with software today.

Page 50: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

We need a Software Development System

…that takes away accidental complexity*

by using the right criteria for decomposition

and enables us** to focus on solving complex problems of our users

Page 51: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

**us = everyone (=every creative) involved

*technical and human interaction accidental complexity

Page 52: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

How do we get there? Where do we start?

Page 53: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Was muss sich ändern?

- Fähigkeit zu Variation nicht auf die Software draufbauen, sondern als Grundlage etablieren

- Verfügbarkeit von Daten wichtiger einstufen als Datenreduktion

http://www.biglever.com/overview/software_product_lines.html

Fail > Learn > Improve

Page 54: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Was muss sich ändern?

- Wir brauchen “Human-Oriented”, aber komplette, Sprachen für Domänen-Modell und Logik (um gemeinsam dran zu arbeiten)

- Wir sollten Object-Orientiertheit als die Lösung die Welt zu modellieren hinterfragen

!"#$%&'()&*+,-../&0#$1(-")1)23.#4#56) !!

7#8)46.5&13)&))-4&*#"48

;-"

*3))4<.56.)

068)=(3))4>

%%%

(

@

A

BCD)E1#"6).16)"1)&<.1(62E4F.5&!"#$%%&$'(&86)&")-4)&*)41/&F,&>6)&6,&))23.)"GF&)&!*%&$'$+

H)"EF.$1&&06,F4-&A+KL&M,O5--"8/&P-34Q%&!6)4&&1)23.6>23)&0O>1),)&>6,F46)").

S"-5)&&*#"-F$&,F>>&,-.&C)>#.8)">&-231).-

!"#$%&'()&*+,-../&0#$1(-")1)23.#4#56) "

P6)&G).1"-4).&S"-5).

*6)&E#..).&(6"&86)&*)41&,#54623>1&)6.$-23&C)>23")6C).-

*6)&E#..).&(6"&86)&V)>23")6CF.5&6,&;#,"F1)"&")-46>6)").-&

Gemeinsame Vision

http://users.evtek.fi/~jaanah/IntroC/DBeech/3gl_intro.htm

Page 55: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Was muss sich ändern?

- Wir müssen aufhören Entwickler (und als Entwickler uns selber) als nicht-kreative zu betrachten

http://beyondthecubicle.org/wp-content/uploads/2014/12/cubiclesA.jpg

Fokus auf kreative Arbeit

Page 56: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

!

Page 57: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Literatur

- Out of the Tar Pit (Moseley, Marks) https://blog.acolyer.org/2015/03/20/out-of-the-tar-pit

- On the Criteria to be used in decomposing a System into Modules (Parnas) blog.acolyer.org/2016/09/05/on-the-criteria-to-be-used-in-decomposing-systems-into-modules

- The Clean Architecture (Uncle Bob)https://8thlight.com/blog/uncle-bob/2012/08/13/the-clean-architecture.html Talk-Video: https://www.youtube.com/watch?v=Nsjsiz2A9mg

- Spotify Engineering Culture (Kniberg) https://www.youtube.com/watch?v=Mpsn3WaI_4k

- Inventing on Principle (Victor) http://worrydream.com/#!/InventingOnPrinciple

Weiterführende Literatur

- Karl Popper und agile Produktentwicklung (Patrick Breitenbach, Tobias Baier) Podcast Agiles Produktmanagement: http://www.agilesproduktmanagement.de/2016/03/apm-15-karl-popper-und-agile-produktentwicklung-mit-patrick-breitenbach

- Spiel als Arbeit (Fabian Hoose, Daniel Raumer) Podcast Insert Moin Ep. 1524: http://insertmoin.de/im1524-buch-spiel-als-arbeit

- Was macht eigentlich Market Analytics? (Michael Lenz, Christian Schmidt, Daniel Raumer) Podcast Insert Moin Ep. 1260: http://insertmoin.de/im1260-was-macht-eigentlich-market-analytics

- Work to Publish (Jack Conte) PatreCon: https://www.youtube.com/watch?v=5r5VIlMhftM

- Die Rückkehr der Vernunft (Lars Jankowfsky, Johann-Peter Hartmann) Konferenzvortrag, CodeTalks 2016: https://www.youtube.com/watch?v=XXPl1UgDwh8

- Eve: Programming designed for humans http://witheve.com

Page 58: Komplex und Kompliziert - TU Dresdenst.inf.tu-dresden.de/files/teaching/ws16/ring/Jendrik... · 2016. 12. 2. · Essential Complexity is inherent in, and the essence of, the problem

Thanks! [email protected] | @jeoj | jjohannes.de

Honest - https://xkcd.com/1146