SlideShare ist ein Scribd-Unternehmen logo
1 von 13
Downloaden Sie, um offline zu lesen
© 2015 Avanade Inc. All Rights Reserved.
The Path from Scrum to Organizational Agility
Mikkel Toudal Kristiansen
Agile Coach & Professional Scrum Trainer
Scrum DeutschlandNov. 6th 2015
1
© 2015 Avanade Inc. All Rights Reserved.
<Confidential> See Avanade’s Data Classification and Protection Standard
© 2015 Avanade Inc. All Rights Reserved.
This presentation will cover:
•Scrum without Technical Excellence
•Technical Excellence
•DevOps
•Measuring the Results
•Conclusions
2
The Path from Scrum to Organizational Agility
© 2015 Avanade Inc. All Rights Reserved.
<Confidential> See Avanade’s Data Classification and Protection Standard
© 2015 Avanade Inc. All Rights Reserved.
Mikkel Toudal Kristiansen
• Agile Coach & ALM Expert @ Avanade Denmark
• Professional Scrum Trainer @ Scrum.org
Developer since 1995
• Web and line-of-business applications
• Microsoft .NET platform (certified on all versions)
Agile since 2005
• Scrum, Kanban, Lean
• Introduced agile on many projects
Agile Coach and Scrum Trainer since 2011
• PSD.NET and PSF
• Avanade Scrum courses
• More than 200 students so far
mikkel.t.kristiansen@avanade.com
@otwtbs (on the way to better software)
3
About me
© 2015 Avanade Inc. All Rights Reserved.
<Confidential> See Avanade’s Data Classification and Protection Standard
© 2015 Avanade Inc. All Rights Reserved. 4
Sandro Mancuso, author of
“The Software Craftsman”***,
calls this the Agile Hangover:
“Many Agile projects are now,
steadily and iteratively,
producing crap code”
* http://www.agilemanifesto.org/
** http://martinfowler.com/bliki/FlaccidScrum.html
*** http://www.amazon.co.uk/books/dp/0134052501
Scrum without Technical Excellence
When most teams move from this to this focus is on doing Scrum:
• Following the rules
• Processes
• Tools
• Artifacts
Often there is no focus on:
• Culture
• Values
• Empiricism
• Technical excellence
• Measuring outcomes
• Being agile
Which leads to:
• Low code quality
• A lack of agility**
or why we are doing Scrum at all:
• A series of mini waterfalls?
• Does quality matter?
• Is flexibility the goal?
Maybe the Agile Manifesto* or
the 12 principles are not well
understood
© 2015 Avanade Inc. All Rights Reserved.
<Confidential> See Avanade’s Data Classification and Protection Standard
© 2015 Avanade Inc. All Rights Reserved. 5
Technical Excellence – Code Quality
TEAM ORGANIZATION
High code quality is essential for agility:
• Every Sprint must result in something of business value
• The Increment must be of production quality (potentially shippable) every Sprint
• Clean Code is the only way to keep productivity high:
Use techniques such as:
- The SOLID Principles
- Design patterns
- Pair programming
- Code reviews
- Static code analysis
Source: ”Clean Code”, Robert C. Martin
© 2015 Avanade Inc. All Rights Reserved.
<Confidential> See Avanade’s Data Classification and Protection Standard
© 2015 Avanade Inc. All Rights Reserved. 6
Technical Excellence – Strong Version Control and Build Automation
Version control – not just for code!
Strong version control means that everything* must be kept under version control:
* http://www.troyhunt.com/2011/05/10-commandments-of-good-source-control.html
Build – not just compilation!
Build includes (at least):
• Application source code • Configuration settings
• Database schema • Requirements
• Documentation • Test specifications
• Dependencies • Environment specifications
• Getting latest code from version control • Running static code analysis
• Retrieving the relevant configuration • Running unit tests
• Fetching relevant dependencies • Reporting failures back to the team
• Compiling the application • Compiling results into a build report
TEAM ORGANIZATION
v.3
© 2015 Avanade Inc. All Rights Reserved.
<Confidential> See Avanade’s Data Classification and Protection Standard
© 2015 Avanade Inc. All Rights Reserved. 7
Without automated tests, there is no way to ensure correctness:
• the amount of functionality keeps growing
• the number of data types typically grows too
• even small and simple manual tests will accumulate
• the manual effort required to rule out regression defects grows exponentially
“If you have plenty of manual testers available,
you can easily automate your tests.
If you have very few testers available, you can’t afford not to.”
Robert C. Martin, a.k.a. Uncle Bob (paraphrased)
Benefits of test automation include:
• Less waiting time for the testers, less human effort involved in testing
• You will be able to do countless deployments, at all times day and night, for free!
Technical Excellence – Test Automation
We don’t automate tests
We don’t have time
TEAM ORGANIZATION
© 2015 Avanade Inc. All Rights Reserved.
<Confidential> See Avanade’s Data Classification and Protection Standard
© 2015 Avanade Inc. All Rights Reserved.
TEAM ORGANIZATION
8
Technical Excellence – Deployment Automation
When the build and the tests have been automated, next step is deployment.
Automate the deployment process, because:
• You eliminate the risk of human error
• You ensure deployment happens consistently
• You save human effort
• You will be able to do countless deployments, round the clock, for free!
To automatically deploy all the way to production you need:
• Automated tests that cover all essential functionality
• Operational aspects tested automatically too
• Automated rollback mechanisms
• An organization that trusts the team and the tests!
Check out the book “Continuous Delivery” by Jez Humble and David Farley
http://www.amazon.co.uk/Continuous-Delivery-Deployment-Automation-Addison-Wesley/dp/0321601912
© 2015 Avanade Inc. All Rights Reserved.
<Confidential> See Avanade’s Data Classification and Protection Standard
© 2015 Avanade Inc. All Rights Reserved. 9
Continuous release of value to production is not just a technical exercise
- And it cannot be implemented by the team in isolation!
Tight collaboration between Development, Operations AND the Business is key!
- Trust across organizational borders (dev, ops and business) takes lots of deliberate effort to achieve
”The Phoenix Project”* by Gene Kim, Kevin Behr and George Spafford is a must read!
Also check out ”Scrum Culture”** by Dominic Maximini
DevOps – A culture of collaboration
TEAM ORGANIZATION
DEV OPS
DEPLOYMENT
BACKLOG
DEPLOYMENT
PACKAGE
PRODUCT
BACKLOG
PRODUCTION
FEEDBACK
* http://www.amazon.co.uk/Phoenix-Project-DevOps-Helping-Business/dp/0988262509
** http://www.amazon.co.uk/Scrum-Culture-Introducing-Organizations-Professionals/dp/3319118269
© 2015 Avanade Inc. All Rights Reserved.
<Confidential> See Avanade’s Data Classification and Protection Standard
© 2015 Avanade Inc. All Rights Reserved.
Measure
• Monitor real
usage
Learn
• Setup hypothesis
• Design experiment
Build
• Build/test
• Deploy
Measure
Learn
Build
10
Measuring the Results – The Build-Measure-Learn Cycle
Defined in “The Lean Startup”* by Eric Ries
• Not just for startups!
• Let your software evolve based on
– Hypotheses (“If we build it, they will come!”)
– Experiments (“Let’s build it!”)
– Measurements (“Did they come?”)
Use the Build-Measure-Learn cycle
to measure the effects of evolving
your software
The companies that go through
this cycle the fastest will win!
* http://www.amazon.co.uk/Lean-Startup-Innovation-Successful-Businesses/dp/0670921602
TEAM ORGANIZATION
© 2015 Avanade Inc. All Rights Reserved.
<Confidential> See Avanade’s Data Classification and Protection Standard
© 2015 Avanade Inc. All Rights Reserved.
TEAM ORGANIZATION
11
The BASICs of Evidence-Based Management (EBMgt*):
10: Frequently measure a number of metrics (for instance every month)
20: Identify metrics you want to improve
30: Define an experiment (adapt) to improve those metrics
40: Run the experiment for a month
50: Inspect the metrics
60: GOTO 20
Use EBMgt to measure the effects
of organizational initiatives involving
people, processes and tools
These metrics make up Scrum.org’s
definition of Organizational Agility.
Think of them as flight controls.
* http://ebmgt.org/
Measuring the Results – Evidence-Based Management by Scrum.org
© 2015 Avanade Inc. All Rights Reserved.
<Confidential> See Avanade’s Data Classification and Protection Standard
© 2015 Avanade Inc. All Rights Reserved. 12
Key take-aways:
• The Scrum Guide* is only the starting point
• Technical excellence is essential
–Code quality
–Version control
–Automation, automation, automation!
• DevOps brings a culture of collaboration
• Steer by measuring the results of your experiments
• Beware: Organizational change is HARD!**
* http://scrumguides.org/
** http://www.kotterinternational.com/the-8-step-process-for-leading-change/
Scrum.org Webinars: https://www.scrum.org/Resources/Scrum-and-Agile-Webcasts
Conclusions
© 2015 Avanade Inc. All Rights Reserved.
<Confidential> See Avanade’s Data Classification and Protection Standard
© 2015 Avanade Inc. All Rights Reserved.
Q & A
Thank you! A
Thank you!
Mikkel Toudal Kristiansen
mikkel.t.kristiansen@avanade.com
@otwtbs
Q & A Q
13
Thank you!

Weitere ähnliche Inhalte

Kürzlich hochgeladen

H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 

Kürzlich hochgeladen (20)

H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 

Empfohlen

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Empfohlen (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

The path from scrum to organizational agility Scrum Deutschland 2015

  • 1. © 2015 Avanade Inc. All Rights Reserved. The Path from Scrum to Organizational Agility Mikkel Toudal Kristiansen Agile Coach & Professional Scrum Trainer Scrum DeutschlandNov. 6th 2015 1
  • 2. © 2015 Avanade Inc. All Rights Reserved. <Confidential> See Avanade’s Data Classification and Protection Standard © 2015 Avanade Inc. All Rights Reserved. This presentation will cover: •Scrum without Technical Excellence •Technical Excellence •DevOps •Measuring the Results •Conclusions 2 The Path from Scrum to Organizational Agility
  • 3. © 2015 Avanade Inc. All Rights Reserved. <Confidential> See Avanade’s Data Classification and Protection Standard © 2015 Avanade Inc. All Rights Reserved. Mikkel Toudal Kristiansen • Agile Coach & ALM Expert @ Avanade Denmark • Professional Scrum Trainer @ Scrum.org Developer since 1995 • Web and line-of-business applications • Microsoft .NET platform (certified on all versions) Agile since 2005 • Scrum, Kanban, Lean • Introduced agile on many projects Agile Coach and Scrum Trainer since 2011 • PSD.NET and PSF • Avanade Scrum courses • More than 200 students so far mikkel.t.kristiansen@avanade.com @otwtbs (on the way to better software) 3 About me
  • 4. © 2015 Avanade Inc. All Rights Reserved. <Confidential> See Avanade’s Data Classification and Protection Standard © 2015 Avanade Inc. All Rights Reserved. 4 Sandro Mancuso, author of “The Software Craftsman”***, calls this the Agile Hangover: “Many Agile projects are now, steadily and iteratively, producing crap code” * http://www.agilemanifesto.org/ ** http://martinfowler.com/bliki/FlaccidScrum.html *** http://www.amazon.co.uk/books/dp/0134052501 Scrum without Technical Excellence When most teams move from this to this focus is on doing Scrum: • Following the rules • Processes • Tools • Artifacts Often there is no focus on: • Culture • Values • Empiricism • Technical excellence • Measuring outcomes • Being agile Which leads to: • Low code quality • A lack of agility** or why we are doing Scrum at all: • A series of mini waterfalls? • Does quality matter? • Is flexibility the goal? Maybe the Agile Manifesto* or the 12 principles are not well understood
  • 5. © 2015 Avanade Inc. All Rights Reserved. <Confidential> See Avanade’s Data Classification and Protection Standard © 2015 Avanade Inc. All Rights Reserved. 5 Technical Excellence – Code Quality TEAM ORGANIZATION High code quality is essential for agility: • Every Sprint must result in something of business value • The Increment must be of production quality (potentially shippable) every Sprint • Clean Code is the only way to keep productivity high: Use techniques such as: - The SOLID Principles - Design patterns - Pair programming - Code reviews - Static code analysis Source: ”Clean Code”, Robert C. Martin
  • 6. © 2015 Avanade Inc. All Rights Reserved. <Confidential> See Avanade’s Data Classification and Protection Standard © 2015 Avanade Inc. All Rights Reserved. 6 Technical Excellence – Strong Version Control and Build Automation Version control – not just for code! Strong version control means that everything* must be kept under version control: * http://www.troyhunt.com/2011/05/10-commandments-of-good-source-control.html Build – not just compilation! Build includes (at least): • Application source code • Configuration settings • Database schema • Requirements • Documentation • Test specifications • Dependencies • Environment specifications • Getting latest code from version control • Running static code analysis • Retrieving the relevant configuration • Running unit tests • Fetching relevant dependencies • Reporting failures back to the team • Compiling the application • Compiling results into a build report TEAM ORGANIZATION v.3
  • 7. © 2015 Avanade Inc. All Rights Reserved. <Confidential> See Avanade’s Data Classification and Protection Standard © 2015 Avanade Inc. All Rights Reserved. 7 Without automated tests, there is no way to ensure correctness: • the amount of functionality keeps growing • the number of data types typically grows too • even small and simple manual tests will accumulate • the manual effort required to rule out regression defects grows exponentially “If you have plenty of manual testers available, you can easily automate your tests. If you have very few testers available, you can’t afford not to.” Robert C. Martin, a.k.a. Uncle Bob (paraphrased) Benefits of test automation include: • Less waiting time for the testers, less human effort involved in testing • You will be able to do countless deployments, at all times day and night, for free! Technical Excellence – Test Automation We don’t automate tests We don’t have time TEAM ORGANIZATION
  • 8. © 2015 Avanade Inc. All Rights Reserved. <Confidential> See Avanade’s Data Classification and Protection Standard © 2015 Avanade Inc. All Rights Reserved. TEAM ORGANIZATION 8 Technical Excellence – Deployment Automation When the build and the tests have been automated, next step is deployment. Automate the deployment process, because: • You eliminate the risk of human error • You ensure deployment happens consistently • You save human effort • You will be able to do countless deployments, round the clock, for free! To automatically deploy all the way to production you need: • Automated tests that cover all essential functionality • Operational aspects tested automatically too • Automated rollback mechanisms • An organization that trusts the team and the tests! Check out the book “Continuous Delivery” by Jez Humble and David Farley http://www.amazon.co.uk/Continuous-Delivery-Deployment-Automation-Addison-Wesley/dp/0321601912
  • 9. © 2015 Avanade Inc. All Rights Reserved. <Confidential> See Avanade’s Data Classification and Protection Standard © 2015 Avanade Inc. All Rights Reserved. 9 Continuous release of value to production is not just a technical exercise - And it cannot be implemented by the team in isolation! Tight collaboration between Development, Operations AND the Business is key! - Trust across organizational borders (dev, ops and business) takes lots of deliberate effort to achieve ”The Phoenix Project”* by Gene Kim, Kevin Behr and George Spafford is a must read! Also check out ”Scrum Culture”** by Dominic Maximini DevOps – A culture of collaboration TEAM ORGANIZATION DEV OPS DEPLOYMENT BACKLOG DEPLOYMENT PACKAGE PRODUCT BACKLOG PRODUCTION FEEDBACK * http://www.amazon.co.uk/Phoenix-Project-DevOps-Helping-Business/dp/0988262509 ** http://www.amazon.co.uk/Scrum-Culture-Introducing-Organizations-Professionals/dp/3319118269
  • 10. © 2015 Avanade Inc. All Rights Reserved. <Confidential> See Avanade’s Data Classification and Protection Standard © 2015 Avanade Inc. All Rights Reserved. Measure • Monitor real usage Learn • Setup hypothesis • Design experiment Build • Build/test • Deploy Measure Learn Build 10 Measuring the Results – The Build-Measure-Learn Cycle Defined in “The Lean Startup”* by Eric Ries • Not just for startups! • Let your software evolve based on – Hypotheses (“If we build it, they will come!”) – Experiments (“Let’s build it!”) – Measurements (“Did they come?”) Use the Build-Measure-Learn cycle to measure the effects of evolving your software The companies that go through this cycle the fastest will win! * http://www.amazon.co.uk/Lean-Startup-Innovation-Successful-Businesses/dp/0670921602 TEAM ORGANIZATION
  • 11. © 2015 Avanade Inc. All Rights Reserved. <Confidential> See Avanade’s Data Classification and Protection Standard © 2015 Avanade Inc. All Rights Reserved. TEAM ORGANIZATION 11 The BASICs of Evidence-Based Management (EBMgt*): 10: Frequently measure a number of metrics (for instance every month) 20: Identify metrics you want to improve 30: Define an experiment (adapt) to improve those metrics 40: Run the experiment for a month 50: Inspect the metrics 60: GOTO 20 Use EBMgt to measure the effects of organizational initiatives involving people, processes and tools These metrics make up Scrum.org’s definition of Organizational Agility. Think of them as flight controls. * http://ebmgt.org/ Measuring the Results – Evidence-Based Management by Scrum.org
  • 12. © 2015 Avanade Inc. All Rights Reserved. <Confidential> See Avanade’s Data Classification and Protection Standard © 2015 Avanade Inc. All Rights Reserved. 12 Key take-aways: • The Scrum Guide* is only the starting point • Technical excellence is essential –Code quality –Version control –Automation, automation, automation! • DevOps brings a culture of collaboration • Steer by measuring the results of your experiments • Beware: Organizational change is HARD!** * http://scrumguides.org/ ** http://www.kotterinternational.com/the-8-step-process-for-leading-change/ Scrum.org Webinars: https://www.scrum.org/Resources/Scrum-and-Agile-Webcasts Conclusions
  • 13. © 2015 Avanade Inc. All Rights Reserved. <Confidential> See Avanade’s Data Classification and Protection Standard © 2015 Avanade Inc. All Rights Reserved. Q & A Thank you! A Thank you! Mikkel Toudal Kristiansen mikkel.t.kristiansen@avanade.com @otwtbs Q & A Q 13 Thank you!