SlideShare a Scribd company logo
@gfraiteur
a fresh view on design patterns, programming languages,
and agile methodologies
Design Pattern Automation
Gaël Fraiteur
PostSharp Technologies
Founder & Principal Engineer
@gfraiteur
Hello!
My name is GAEL.
No, I don’t think
my accent is funny.
my twitter
@gfraiteur
My commitment to you:
to seed a vision, not to sell a tool.
@gfraiteur
The vision:
Code at the right level of abstraction,
with compiler-supported design patterns
@gfraiteur
NotifyPropertyChanged,
the wrong way
LAB 1
@gfraiteur
1. A history of programming
languages and patterns
2. Defining Design Pattern Automation
3. Pattern-Oriented Software Development
4. Tools for Design Pattern Automation
5. Agile Methodologies and Patterns
6. A last example
7. Q&A
8. Summary
Section
@gfraiteur
Univac Assembly Language
@gfraiteur
FORTRAN (1955)
• 1955 - FORTRAN I
• Global Variables
• Arrays
• 1958 - FORTRAN II
• Procedural Programming
(no recursion)
• Modules
@gfraiteur
COBOL (1959)
• Data Structures
• Natural Language
@gfraiteur
LISP (1959)
• Variable Scopes (Stack)
• Garbage Collection
@gfraiteur
Simula (1967)
• Classes as
abstraction mechanism
• Virtual procedures
• Object references
• Coroutines
Begin
Class Glyph;
Virtual: Procedure print Is Procedure print;
Begin
End;
Glyph Class Char (c);
Character c;
Begin
Procedure print;
OutChar(c);
End;
Glyph Class Line (elements);
Ref (Glyph) Array elements;
Begin
Procedure print;
Begin
Integer i;
For i:= 1 Step 1 Until UpperBound (elements, 1) Do
elements (i).print;
OutImage;
End;
End;
Ref (Glyph) rg;
Ref (Glyph) Array rgs (1 : 4);
! Main program;
rgs (1):- New Char ('A');
rgs (2):- New Char ('b');
rgs (3):- New Char ('b');
rgs (4):- New Char ('a');
rg:- New Line (rgs);
rg.print;
End;
@gfraiteurCopyright © by Arild Vågen
Human Language
Cognition
Communication
Social Organization
Machine Language
Execution
Programming Languages
@gfraiteurHolašovice, Czech Republic
How is it possible that any simple farmer could make a
house, a thousand times more beautiful than all the
struggling architects of the last fifty years could do?
Christopher Alexander
in The Timeless Way of Building, 1977
Pattern Thinking (1977)
@gfraiteur
A world of
patterns
LANGUAGE
REGULARITY
RESOLUTION
OF FORCES
SELF-
SUSTAINABILITY
VARIETY UBIQUITY
@gfraiteurLanguage Enables Cognition
@gfraiteur
Copyright ©
Stijn NieuwendijkLanguage Enables Communication
@gfraiteurLanguage for the Trade
@gfraiteur
Patterns as
WISDOM
in canonical form
• Name
• Also Known As
• Problem
• Context
• Forces
• Example
• Solution
• Structure and Dynamics
• Implementation
• Example Resolved
• Known Uses
• Variants
• Consequences
• Relationships
• Name
• Also Known As
• Problem
• Context
• Forces
• Example
• Solution
• Structure and Dynamics
• Implementation
• Example Resolved
• Known Uses
• Variants
• Consequences
• Relationships
• Name
• Also Known As
• Problem
• Context
• Forces
• Example
• Solution
• Structure and Dynamics
• Implementation
• Example Resolved
• Known Uses
• Variants
• Consequences
• Relationships
• Name
• Also Known As
• Problem
• Context
• Forces
• Example
• Solution
• Description
• Example Resolved
• Known Uses
• Variants
• Consequences
• Relationships
@gfraiteur
Software Patterns (1995)
• Apply to OO design
• Canonic pattern description
• First catalogue of
23 patterns
@gfraiteur
In 2013, eighteen years later, design patterns still live in
their parent’s house – books.
@gfraiteur
Latent Redundancy
Bad OO code Good OO code Ideal code
Intrinsic variability Latent redundancy Bad redundancy
@gfraiteur
Cost of low abstraction
• Boilerplate code
• More bugs
• Code review
• Changing the pattern implementation
@gfraiteur
1. A history of programming languages and patterns
2. Defining Design Pattern
Automation
3. Pattern-Oriented Software Development
4. Tools for Design Pattern Automation
5. Agile Methodologies and Patterns
6. A last example
7. Q&A
8. Summary
Section
@gfraiteur
Pattern Automation
Automation
is the use of
machines, control systems
and information technologies
to optimize productivity in
the production of goods and
delivery of services.
Wikipedia
Design Pattern Automation
is the use of tools to optimize
productivity in the
implementation of software
based on patterns.
@gfraiteur
Pattern-Aware Compilers allow for coding at the level of
abstraction of design patterns.
@gfraiteur
Design Pattern Automation is new
© hellraiser
MYTH 1
@gfraiteur
Pattern C# Keyword
Dispose using
Lock lock
Publish-Subscribe event
C# implements several patterns
TRUTH 1
@gfraiteur
But C# does not let you
implement your own patterns.
@gfraiteur
code generators were proved wrong
You can’t automate patterns because…
MYTH 2
@gfraiteur
pattern-aware programming languages
and compilers
we don’t need code generators but
TRUTH 2
@gfraiteur
there are too many skills involved
You can’t automate patterns because…
MYTH 3
@gfraiteur
industrial revolution
Skill scarcity motivated the
TRUTH 3
@gfraiteur
Our own industrial revolution:
Making it easier
to build good software
@gfraiteur
1. A history of programming languages and patterns
2. Defining Design Pattern Automation
3.Pattern-Oriented Software
Development
4. Tools for Design Pattern Automation
5. Agile Methodologies and Patterns
6. A last example
7. Q&A
8. Summary
Section
@gfraiteur
they are way too complex general abstract
You can’t automate patterns because…
MYTH 4
@gfraiteur
a normal part of any engineering process
Making abstract things concrete is
TRUTH 4
ConcreteAbstract
Automatable
Non-
Automatable
@gfraiteur
Pattern-Oriented
Implementation Process
Architecture
Pattern
• Defines Subsystems
Design Pattern
• Define Components
• General problem
• Language-
independent
Implementation
Pattern
• Defines source
artefacts
• Language-specific
• Framework-specific
• Application-specific
• Implementation
guidelines
Source code
• Executable
High Abstraction Zero Abstraction
@gfraiteur
Example: Observer Pattern
1. Vanilla Design Pattern (GoF)
@gfraiteur
Example: Observer Pattern
1
2
3 Call OnPropertyChanged whenever a property has changed.
2. Language-Specific Pattern (C#)
@gfraiteur
• Analyze property-field
dependencies
• Modify all non-const
methods
• Whenever a relevant
field has changed
• When invariants are
valid (after all changes
in the object have been
done)
Example: Observer Pattern
When? How?
3. Application-Specific Pattern (C#)
@gfraiteur
Example: Observer Pattern
4. Source code
@gfraiteur
NotifyPropertyChanged
with PostSharp
LAB 2
@gfraiteur
1. A history of programming languages and patterns
2. Defining Design Pattern Automation
3. Pattern-Oriented Software Development
4.Tools for Design Pattern
Automation
5. Agile Methodologies and Patterns
6. A last example
7. Q&A
8. Summary
Section
@gfraiteur
Transformation
Verification
@gfraiteur
Pattern
Automation
Technologies
Pattern
Automation
@gfraiteur
Example:
Richman’s Singleton
• Static validation rules:
• A single constructor
• Constructor never called
• Code transformation:
• Introduce static field
• Introduce static method GetInstance
• Make constructor private
@gfraiteur
[Nemerle.MacroUsage (Nemerle.MacroPhase.BeforeInheritance,
Nemerle.MacroTargets.Class)]
macro Singleton (t : TypeBuilder)
{
def mems = t.GetParsedMembers();
// find constructor, which we will need to call to create instance
def ctor = mems.Filter(fun (x) {
| <[ decl: ..$_ this (..$_) $_ ]> => true
| _ => false
});
match (ctor)
{
| [ <[ decl: ..$_ this (..$parms) $_ ]> as constructor ] => {
// we must prepare expressions for invoking constructor
def invoke_parms = parms.Map(x => <[ $(x.ParsedName : name) ]>);
// first define the field, where a single instance will be stored
t.Define(<[ decl:
private static mutable instance : $(t.ParsedName : name);
]>);
@gfraiteur
// finally, define getter
t.Define (<[ decl:
public static Instance : $(t.ParsedName : name)
{
get
{
// lazy initialization in generated code
when (instance == null)
instance = $(t.ParsedName : name) (..$invoke_parms);
instance;
}
}
]>);
// make sure constructor is protected
constructor.Attributes |= NemerleAttributes.Protected;
| _ => Message.Error ("Singleton design pattern requires exactly one constru
}
}
@gfraiteur
[Singleton]
class LoadBalancer
{
// Details omitted
}
public class SingletonApp
{
public static Main() : void
{
def b1 = LoadBalancer.Instance;
def b2 = LoadBalancer.Instance;
// Same instance?
when ((b1 : object == b2) && (b2 : object == b3) && (b3 : object == b4))
Console.WriteLine( "Same instance" );
// Do the load balancing
Console.WriteLine( b1.Server );
Console.WriteLine( b2.Server );
}
}
@gfraiteur
Macro-enabled .NET languages
• Nemerle
• Scala
• Boo
@gfraiteur
Poorman’s Pattern Automation:
Static Analysis
Pattern
Automation
@gfraiteur
Example:
Poorman’s Singleton
• Static validation rules:
• Static private readonly field named
‘singleton’, whose type is the current type.
• Static public method GetInstance() whose return
type is the current type, returns field ‘singleton’.
• Class constructors are private.
@gfraiteur
Singleton
with Architecture Unit Tests
LAB 3
@gfraiteur
• Limitations
• Inadequate UI and
error reporting
• Limited reflection
API
• Alternatives
• FxCop
• PostSharp
Architecture
Framework
Architecture Unit Tests
@gfraiteur
1. A history of programming languages and patterns
2. Defining Design Pattern Automation
3. Pattern-Oriented Software Development
4. Tools for Design Pattern Automation
5. Agile Methodologies
and Patterns
6. A last example
7. Q&A
8. Summary
Section
@gfraiteur
All design patterns are found in books
MYTH 5
@gfraiteur
spinning into
Emergent
Design
@gfraiteur
Quality
Eroding Design
Quality
Distance from design
@gfraiteur
Quality
Emergent Design
Quality
Knowledge
@gfraiteur
Iterative Design
• Unit Tests
• Load Tests
• Integration Tests
• Project
• Team
• Design
• Abstract
• Design
• Refactor
• Implement
• Time
• User Stories
Planning Development
TestingReview
@gfraiteur
Agile & Continuous Improvement
Design
Refactor
Implement
new stuff
Learn
Knowledge
Patterns
Language
Requirements
Code
@gfraiteur
We’re a part of a whole
Software
Engineering
Discipline
Company /
Personal
Know-How
Project
Engineering
Discipline
@gfraiteurHolašovice, Czech Republic
Patterns emerge naturally from iterative
design processes.
TRUTH 5
@gfraiteur
Example of application-specific pattern:
Business Rule Pattern
• For any class derived from BusinessRule:
• Name ends with “BusinessRule”
• No public constructor
• Has nested class named “Factory”
• Has parameterless public constructor
• Annotated with
[Export(typeof(IBusinessRuleFactory))]
@gfraiteur
1. A history of programming languages and patterns
2. Defining Design Pattern Automation
3. Pattern-Oriented Software Development
4. Tools for Design Pattern Automation
5. Agile Methodologies and Patterns
6. A last example
7. Q&A
8. Summary
Section
@gfraiteur
Example:
Reader-Writer Synchronized Object
• Code Generation
• Introduce interface IReaderWriterSynchronized
• [ReaderLock], [WriterLock] executes the method with
the right locking level
• Code Verification
• All fields must be private
• Cannot access field without proper lock
@gfraiteur
ReaderWriterSynchronized
with PostSharp
LAB 4
@gfraiteur
Q&A
Gael Fraiteur
gael@postsharp.net
@gfraiteur
@gfraiteurCopyright © by Arild Vågen
Summary
• Compilers must do more to raise abstraction level
• Patterns stem from continuous improvement
BETTER SOFTWARE THROUGH SIMPLER CODE

More Related Content

PDF
Metaprogramming
PDF
A gentle introduction to reflection
PDF
Basics of reflection
PDF
Python typing module
PDF
Pigaios: A Tool for Diffing Source Codes against Binaries (Hacktivity 2018)
PPTX
C programming interview questions
PDF
Functional Programming in C# and F#
PPTX
Dart programming language
Metaprogramming
A gentle introduction to reflection
Basics of reflection
Python typing module
Pigaios: A Tool for Diffing Source Codes against Binaries (Hacktivity 2018)
C programming interview questions
Functional Programming in C# and F#
Dart programming language

What's hot (11)

PDF
Annotations in PHP, They Exist.
PPT
F# and the DLR
PDF
F# for Scala developers
PDF
PHP Annotations: They exist! - JetBrains Webinar
PDF
(4) c sharp introduction_object_orientation_part_i
PPT
Model-Driven Engineering: a bottom-up approach based on meta-programming (ELA...
PDF
Presentation
PDF
Executable specifications for xtext
PDF
The Ring programming language version 1.6 book - Part 181 of 189
PPSX
Coding standard
ODP
New c sharp3_features_(linq)_part_iv
Annotations in PHP, They Exist.
F# and the DLR
F# for Scala developers
PHP Annotations: They exist! - JetBrains Webinar
(4) c sharp introduction_object_orientation_part_i
Model-Driven Engineering: a bottom-up approach based on meta-programming (ELA...
Presentation
Executable specifications for xtext
The Ring programming language version 1.6 book - Part 181 of 189
Coding standard
New c sharp3_features_(linq)_part_iv
Ad

Viewers also liked (7)

PPTX
Bab satu
PPTX
Functional Leap of Faith (Keynote at JDay Lviv 2014)
PPT
Chapter 4 computer language
PPT
Maglev-A different way to develop with Ruby
PPT
Avoiding to Reinvent the flat tire
PPT
Design Pattern From Java To Ruby
PPT
History of computer language
Bab satu
Functional Leap of Faith (Keynote at JDay Lviv 2014)
Chapter 4 computer language
Maglev-A different way to develop with Ruby
Avoiding to Reinvent the flat tire
Design Pattern From Java To Ruby
History of computer language
Ad

Similar to Design Pattern Automation (20)

PPTX
Multithreading Design Patterns
PDF
Software Engineering Best Practices @ Nylas
PPTX
Js tips & tricks
PPTX
Introduction to Design Patterns in Javascript
PPT
10-design-patterns1.ppt.software engineering
PPTX
Guide to Destroying Codebases The Demise of Clever Code
PPT
Design patterns represent the best practices used by experienced object-orien...
PPT
10-DesignPatterns.ppt
PPTX
TypeScript . the JavaScript developer best friend!
PDF
DSL's with Groovy
PDF
Style & Design Principles 02 - Design Patterns
PDF
cf.Objective() 2017 - Design patterns - Brad Wood
PPTX
Online TechTalk  "Patterns in Embedded SW Design"
PDF
10 Ways To Improve Your Code
PDF
Going to Mars with Groovy Domain-Specific Languages
PPTX
Design pattern
PDF
Data Science Accelerator Program
PDF
Design Patterns
PPTX
How I Learned to Stop Worrying and Love Legacy Code - Ox:Agile 2018
PPTX
Software design and Architecture.pptx
Multithreading Design Patterns
Software Engineering Best Practices @ Nylas
Js tips & tricks
Introduction to Design Patterns in Javascript
10-design-patterns1.ppt.software engineering
Guide to Destroying Codebases The Demise of Clever Code
Design patterns represent the best practices used by experienced object-orien...
10-DesignPatterns.ppt
TypeScript . the JavaScript developer best friend!
DSL's with Groovy
Style & Design Principles 02 - Design Patterns
cf.Objective() 2017 - Design patterns - Brad Wood
Online TechTalk  "Patterns in Embedded SW Design"
10 Ways To Improve Your Code
Going to Mars with Groovy Domain-Specific Languages
Design pattern
Data Science Accelerator Program
Design Patterns
How I Learned to Stop Worrying and Love Legacy Code - Ox:Agile 2018
Software design and Architecture.pptx

More from PostSharp Technologies (9)

PPTX
Advanced Defensive Coding Techniques (with Introduction to Design by Contract)
PPTX
Applying Object Composition to Build Rich Domain Models
PPTX
Performance is a Feature!
PPTX
Building Better Architecture with UX-Driven Design
PDF
Solving Localization Challenges with Design Pattern Automation
PPTX
Applying a Methodical Approach to Website Performance
PPTX
10 Reasons You MUST Consider Pattern-Aware Programming
PPTX
Multithreading Fundamentals
PPTX
Produce Cleaner Code with Aspect-Oriented Programming
Advanced Defensive Coding Techniques (with Introduction to Design by Contract)
Applying Object Composition to Build Rich Domain Models
Performance is a Feature!
Building Better Architecture with UX-Driven Design
Solving Localization Challenges with Design Pattern Automation
Applying a Methodical Approach to Website Performance
10 Reasons You MUST Consider Pattern-Aware Programming
Multithreading Fundamentals
Produce Cleaner Code with Aspect-Oriented Programming

Recently uploaded (20)

PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Encapsulation theory and applications.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Machine learning based COVID-19 study performance prediction
PPTX
MYSQL Presentation for SQL database connectivity
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
sap open course for s4hana steps from ECC to s4
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Electronic commerce courselecture one. Pdf
PPTX
Spectroscopy.pptx food analysis technology
PDF
KodekX | Application Modernization Development
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Digital-Transformation-Roadmap-for-Companies.pptx
Encapsulation theory and applications.pdf
Spectral efficient network and resource selection model in 5G networks
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
The Rise and Fall of 3GPP – Time for a Sabbatical?
Machine learning based COVID-19 study performance prediction
MYSQL Presentation for SQL database connectivity
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Review of recent advances in non-invasive hemoglobin estimation
Understanding_Digital_Forensics_Presentation.pptx
Dropbox Q2 2025 Financial Results & Investor Presentation
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
sap open course for s4hana steps from ECC to s4
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Electronic commerce courselecture one. Pdf
Spectroscopy.pptx food analysis technology
KodekX | Application Modernization Development

Design Pattern Automation

Editor's Notes

  • #2: First I would like to thank you all for being present here today. I appreciate the time you are spending here. Imagine the total opportunity cost of this couple of hours we will be spending here together – if we all billed our standard rate. Obviously, I would like to serve you during that time. And I don’t only want to serve you, but the larger community too. Today, I would like to serve by planting a seed. An idea that can grow or perish, depending on you. But if we allow the seed to grow, together, we are going to improve the software development industry. We are going to make it easier to build good software. Make it easier to build good software. This idea is to change the way we think about design patterns.
  • #3: Good morning! My name is Gael Fraiteur. You may think I have a weird accent and even think I am French, but actually I was grown in Belgium and have lived in Czech Republic for the last 12 years.(it’s wonderful being here in the US. Appreciate you take time outside of working hours to improve your skills and the profession. Not everybody does that and there’re many(?) here in the US. I’ll like to thank you guys for being what you are and doing what you do).When I was 15, that was 20 years ago, my English teacher came to me and asked whether I would be skilled enough to manage students’ test results and generate school reports. I said yes, although today I know I was not, and spent the largest part of the summer coding a client-server application in PowerBuilder – an amazing development environment. I have been coding for 4 years at that time, several hours per day, but my previous programs were mere “hacking”. So from a technical point of view, I was prepared. What was really new for me was to build a technology for real users, not for IT specialists. My first version was basically a set of table editors based on the relational database model. With time, I understood that the user interface of a technology should be as close as possible to the way users think and work, and not close to the platform it is built on (a relational database).Nine years ago I started another project: PostSharp. It was a small aspect-oriented framework for Microsoft .NET. It was not the first AOP framework, but I was very fortunate that the community let the seed grow and it became the most popular. The reason of this success, I think, is that I applied the lesson learned years before: the user interface of a technology should be as close as possible to the way users think and work. But this time, the user interface was PostSharp’s public API.The same principle applies to the design of programming languages. And I believe that today, if we want to get programming languages closer to the way human think, we need to look in the direction of patterns. I would like to communicate this vision to you in this talk.
  • #4: Three years ago, PostSharp outgrew my capacity to maintain it as a free open-source project and, out of necessity, became a commercial product. In an industry dominated by open source and big platform vendors, to make a living from development tools is extraordinarily difficult. We at PostSharp Technologies have been fortunate enough to succeed in this endeavor. We are grateful for the trust we receive from our customers – from the one-man shop to the largest corporations.This remark should also serve as a disclaimer that this talk shall undoubted be biased by my very source of revenues.However, my commitment to you in this talk is to share the vision which motivates us day after day. This vision is much larger than our product itself, and you can implement it with other tools, perhaps less appropriate – and, hopefully we will be able to spark an idea that will influence the design of future language and compilers.
  • #8: Programming for the UNIVAC FAC-TRONIC system, 1935 by Remington Rand inchttp://bitsavers.informatik.uni-stuttgart.de/pdf/univac/univac1/UNIVAC_Programming_Jan53.pdf
  • #9: http://en.wikipedia.org/wiki/File:FortranCardPROJ039.agr.jpg
  • #11: LISP 1.5 Programmer’s Manual
  • #12: LISP 1.5 Programmer’s Manual
  • #13: http://www.flickr.com/photos/62405357@N03/8519808328To bridge the gap between the way human think and how machine work.Both humans and machines have limitations.At the beginning there was assembly language and punch cards, then symbolic memory and procedural languages.
  • #14: In his book “the timeless way of building”, Christopher Alexander asks the question:How is it possible that any simple farmer could make a house, a thousand times more beautiful than all the struggling architects of the last fifty years could do?Answer:Shared knowledge, and the knowledge was in the languageIncremental process, centuries of experienceVernacular architecture (folk architecture)http://whc.unesco.org/en/list/861http://www.holasovice.eu/fotogalerie-1/holasovice/
  • #15: What is a pattern?RepetitionResolution of forcesSelf-sustainingCommonality / variability -&gt; All humans are equal but some are more equal than othershttp://www.flickr.com/photos/docman/1516309490http://en.wikipedia.org/wiki/Pando_(tree)Pando (Latin for &quot;I spread&quot;), also known as The Trembling Giant,[1][2] is a clonal colony of a single male quaking aspen (Populustremuloides) determined to be a single living organism by identical genetic markers[3] and one massive underground root system. The plant is estimated to weigh collectively 6,000,000 kg (6,600 short tons),[4] making it the heaviest known organism.[5] The root system of Pando, at an estimated 80,000 years old, is among the oldest known living organisms.[6]Pando is located in the Fishlake National Forest, near Fish Lake at the western edge of the Colorado Plateau in South-central Utah.
  • #17: http://www.flickr.com/photos/stijnnieuwendijk/3098445189
  • #18: http://www.basiccarpentrytechniques.com/Carpentry%20for%20Boys/Carpentry%20For%20Boys1.htmlCARPENTRY FOR BOYSWITH 250 ORIGINAL ILLUSTRATIONSBy J. S. ZERBE, M.E.Copyright, 1914, byTHE NEW YORK BOOK COMPANY
  • #22: There are still some patterns in objects that we are not able to represent in a programming language
  • #30: http://www.flickr.com/photos/abstractstv/4358678510
  • #32: http://www.flickr.com/photos/drewmaughan/7122608959
  • #33: Before as after the industrial revolution, talent is the rare commodity. We want talented people to have a maximal output.The industrial revolution is not just about technology, this is also a revolution in social organization, through division of labor, specialization of professions, specialized schools, … There are no fewer skills involved in industrial shoes production – there are actually much more. But the production process makes better use of these skills.
  • #34: Better technology triggers better output per worker.Our parentsWhat is going to be the contribution of our generation to the software industry? How is it going to become more of an industry and less of an art, to achieve the same productivity enhancements that are required to meet increasing demand?&apos;Increase the speed of agricultural mechanisation, to struggle for the modernization of agriculture. Printno. 8027.6288.
  • #36: http://www.flickr.com/photos/abstractstv/4358678510Abstract means much variability and little commonality
  • #39: http://en.wikipedia.org/wiki/Observer_pattern
  • #42: http://www.flickr.com/photos/liz/8712469709Caïn by Henri Vidal, Tuileries Garden, Paris, 1896
  • #48: http://nemerle.org/wiki/index.php?title=Design_patterns
  • #57: http://www.flickr.com/photos/abstractstv/4358678510Abstract means much variability and little commonality
  • #59: Knowledge increases. With continuous refactoring, a better design is emerging.
  • #60: Knowledge increases. With continuous refactoring, a better design is emerging.
  • #61: http://www.jasonmundok.com/wp-content/uploads/2012/02/Agile-Iteration-Diagram.jpg
  • #62: As a result of the iterative development process, you are already creating reusable designs = design patterns
  • #64: In his book “the timeless way of building”, Christopher Alexander asks the question:Why was an 19th century farmer, without formal education, able to build a house a thousand times more beautiful that anything that was build in the 20th century by formally-educated architects? Where people lived happier?Answer:Shared knowledge, and the knowledge was in the languageIncremental process, centuries of experienceVernacular architecture (folk architecture)TODO: Add a quote from Alexanderhttp://whc.unesco.org/en/list/861http://www.holasovice.eu/fotogalerie-1/holasovice/
  • #70: I believe that it should become fundamentally easier to write good software.Look at the way we work today. We are working at a ridiculously low level of abstraction. We are implementing change notification and change tracking manually, are struggling with locks to cope with multithreading, relying on code reviews to ensure design compliance. Programming is so complex that companies can’t find enough qualified people to make it. Underqualified people write crap and there seems nothing to do about that.Our society runs on software. Our daily life is ruled by hundreds of millions of lines of code, from our mobile devices to transportation to tax collection. How do we build increasingly complex systems if the technology itself does not make it increasingly simpler? I believe that programming languages should make it fundamentally easier to write good software.And I think we should look in the direction of patterns. Patterns are fundamental to the way humans think. We learn pattern recognition is the first months of our existence. Patterns are intrinsic to the very way we perceive the nature. Regularity and variety only make sense if we have this notion of patterns. Patterns, concepts, objects, are same thing. Object orientation was a first step to make programming language closer to the structure of human cognition. But why stopping there? We need programming languages that are able to represent more complex patterns than what we now say “objects”.There are two principal ideas in this talk. The first idea is that the implementation of design patterns can be automated, and actually is already being automated, if we look at some features of the C# language. Working with design patterns means that the source code is built against a model that is of higher abstraction than the machine on which it runs. Smarter compilers can validate the source code against this model and generate instructions to map higher abstraction to lower abstraction. The second idea is that design patterns don’t live in books but in software, and that discovering and designing good patterns is a natural part of an agile development process -- because to learn is to identify patterns. So, there is a great chain of being, where the industry benefits individual projects and projects contribute back to the industry.With PostSharp, we are proud to contribute to this effort.Thank you.