SlideShare a Scribd company logo
1 of 38
The Lean Startup
           #leanstartup
            Eric Ries (@ericries)
http://startuplessonslearned.blogspot.com
Most Startups Fail
Most Startups Fail
Most Startups Fail
• But it doesn’t have to be that way.
• We can do better.
• This talk is about how.
The Lean Startup and You
• Thinking of starting a new company, but
  haven’t taken the first step
• In a startup now and want to iterate faster
• Want to create the conditions for lean
  innovation inside a big company
What is a startup?
• A startup is a human institution designed to
  deliver a new product or service under
  conditions of extreme uncertainty.



• Nothing to do with size of company, sector of
  the economy, or industry
A Tale of Two Startups
Startup #1
A good plan?
• Start a company with a compelling long-term
  vision.
• Raise plenty of capital.
• Hire the absolute best and the brightest.
• Hire an experienced management team with tons
  of startup experience.
• Focus on quality.
• Build a world-class technology platform.
• Build buzz in the press and blogosphere.
Achieving Failure
• Company failed utterly, $40MM and five years
  of pain.
• Crippled by “shadow beliefs” that destroyed
  the effort of all those smart people.
Shadow Belief #1
• We know what customers want.
Shadow Belief #2
• We can accurately predict the future.
Shadow Belief #3
• Advancing the plan is progress.
A good plan?
• Start a company with a compelling long-term
  vision.
• Raise plenty of capital.
• Hire the absolute best and the brightest.
• Hire an experienced management team with tons
  of startup experience.
• Focus on quality.
• Build a world-class technology platform.
• Build buzz in the press and blogosphere.
Startup #2
IMVU
New plan
• Shipped in six months – a horribly buggy beta
  product
• Charged from day one
• Shipped multiple times a day (by 2008, on
  average 50 times a day)
• No PR, no launch
• Results: 2007 revenues of $10MM
Lean Startups Go Faster
• Commodity technology stack, highly leveraged
  (free/open source, user-generated
  content, SEM).
• Customer development – find out what
  customers want before you build it.
• Agile software development – but tuned to
  the startup condition.
Commodity technology stack
• Leverage = for each ounce of effort you invest
  in your product, you take advantage of the
  efforts of thousands or millions of others.
• It’s easy to see how high-leverage technology
  is driving costs down.
• More important is its impact on speed.
• Time to bring a new product to market is
  falling rapidly.
Customer Development
                         Continuous cycle of customer
                          interaction
                             Rapid hypothesis
                              testing about
                              market, pricing, custom
                              ers, …
                             Extreme low cost, low
                              burn, tight focus
                             Measurable gates for
http://bit.ly/tpTtE
                              investors
A tale of two startups, revisited
• Mirrors the changes in development
  methodologies over the past few years.
• Let’s look at those changes schematically.


• These examples are drawn from software
  startups, but increasingly:
  – All products require software
  – All companies are operating in a startup-like
    environment
Traditional Product Development
                 Unit of progress: Advance to Next Stage

                                 Waterfall

            Requirements

                        Design
Problem: known                                         Solution: known
                            Implementation


                                      Verification

                                              Maintenance
Agile
             Unit of progress: a line of working code


“Product Owner” or
in-house customer




    Problem:Known                     Solution:Unknown
Product Development at Lean Startup
Unit of progress: validated learning about customers ($$$)




     Problem:Unknown               Solution:Unknown
Minimize TOTAL time through the loop

                IDEAS



 LEARN                           BUILD




         DATA             CODE




                MEASURE
How to build a Lean Startup
• Let’s talk about some specifics. These are not
  everything you need, but they will get you
  started



• Continuous deployment
• Split-test (A/B) experimentation
• Five why’s
Continuous Deployment

                                             IDEAS


Learn Faster                                                          Code Faster
Five Whys Root
                 LEARN                                        BUILD    Continuous
Cause Analysis                                                        Deployment




                              DATA                     CODE




                         Measure Faster
                                             MEASURE
                         Rapid Split Tests
Continuous Deployment
• Deploy new software quickly
   •   At IMVU time from check-in to production = 20 minutes


• Tell a good change from a bad change (quickly)

• Revert a bad change quickly

• Work in small batches
   •   At IMVU, a large batch = 3 days worth of work

• Break large projects down into small batches
Cluster Immune System
What it looks like to ship one piece of code to production:

 • Run tests locally (SimpleTest, Selenium)
     o   Everyone has a complete sandbox

 • Continuous Integration Server (BuildBot)
    o All tests must pass or “shut down the line”
     o   Automatic feedback if the team is going too fast

 • Incremental deploy
     o   Monitor cluster and business metrics in real-time
     o   Reject changes that move metrics out-of-bounds

 • Alerting & Predictive monitoring (Nagios)
     o   Monitor all metrics that stakeholders care about
     o   If any metric goes out-of-bounds, wake somebody up
     o   Use historical trends to predict acceptable bounds

 When customers see a failure:
     o   Fix the problem for customers
     o   Improve your defenses at each level
Rapid Split Tests

                                             IDEAS


Learn Faster                                                           Code Faster
Five Whys Root
                 LEARN                                         BUILD    Continuous
Cause Analysis                                                         Deployment




                              DATA                      CODE




                         Measure Faster
                                             MEASURE
                         Rapid Split Tests
Split-testing all the time
• A/B testing is key to validating your
  hypotheses
• Has to be simple enough for everyone to use
  and understand it
• Make creating a split-test no more than one
  line of code:
         if( setup_experiment(...) == quot;controlquot; ) {
            // do it the old way
         } else {
           // do it the new way
         }
The AAA’s of Metrics
• Actionable
• Accessible
• Auditable
Measure the Macro
• Always look at cohort-based metrics over time
• Split-test the small, measure the large
                      Control Group (A)   Experiment (B)
   # Registered       1025                1099
   Downloads          755 (73%)           733 (67%)
   Active days 0-1    600 (58%)           650 (59%)
   Activedays 1-3     500 (48%)           545 (49%)
   Active days 3-10   300 (29%)           330 (30%)
   Activedays 10-30   250 (24%)           290 (26%)
   Total Revenue      $3210.50            $3450.10
   RPU                $3.13               $3.14
Five Whys

                                                IDEAS


Learn Faster                                                            Code Faster
Five Whys Root
                 LEARN                                          BUILD    Continuous
Cause Analysis                                                          Deployment




                              DATA                       CODE




                         Measure Faster
                                               MEASURE
                         Rapid Split Tests
Five Whys Root Cause Analysis
• A technique for continuous improvement of
  company process.
• Ask “why” five times when something
  unexpected happens.
• Make proportional investments in prevention
  at all five levels of the hierarchy.
• Behind every supposed technical problem is
  usually a human problem. Fix the cause, not
  just the symptom.
There’s much more…

                                                        IDEAS


Learn Faster                                                                                       Code Faster
Split Tests
                      LEARN                                                      BUILD               Unit Tests
Customer Interviews                                                                              Usability Tests
Customer Development                                                                   Continuous Integration
Five Whys Root Cause Analysis                                                        Incremental Deployment
Customer Advisory Board                                                      Free & Open-Source Components
Falsifiable Hypotheses                                                                        Cloud Computing
Product Owner Accountability                                                          Cluster Immune System
Customer Archetypes                 DATA                                CODE            Just-in-time Scalability
Cross-functional Teams                                                                             Refactoring
Semi-autonomous Teams                                                                      Developer Sandbox
Smoke Tests



                                Measure Faster
                                                   MEASURE
                                Split Tests                          Funnel Analysis
                                Clear Product Owner                  Cohort Analysis
                                Continuous Deployment            Net Promoter Score
                                Usability Tests             Search Engine Marketing
                                Real-time Monitoring              Real-Time Alerting
                                Customer Liaison               Predictive Monitoring
The Lean Startup
• You are ready to do this, whether you are:
  – Thinking of starting a new company, but haven’t
    taken the first step
  – Are in a startup now that could iterate faster
  – Want to create the conditions for lean innovation
    inside a big company
• Get started, now, today.
Thanks!

• Startup Lessons Learned Blog
  – http://startuplessonslearned.blogspot.com/

• Eric Ries on Twitter
  – http://twitter.com/ericries


• The Lean Startup Workshop
  – An all-day event for a select audience
  – May 29and June 18, 2009 in San Francisco
  – http://training.oreilly.com/theleanstartup/

More Related Content

What's hot

Winnipeg ISACA Security is Dead, Rugged DevOps
Winnipeg ISACA Security is Dead, Rugged DevOpsWinnipeg ISACA Security is Dead, Rugged DevOps
Winnipeg ISACA Security is Dead, Rugged DevOpsGene Kim
 
PuppetConf2012GeneKim
PuppetConf2012GeneKimPuppetConf2012GeneKim
PuppetConf2012GeneKimGene Kim
 
SecureWorld Kim - Infosec at Ludicrous Speeds - Rugged DevOps 6a
SecureWorld   Kim - Infosec at Ludicrous Speeds - Rugged DevOps 6aSecureWorld   Kim - Infosec at Ludicrous Speeds - Rugged DevOps 6a
SecureWorld Kim - Infosec at Ludicrous Speeds - Rugged DevOps 6aGene Kim
 
Kim itSMF New England: ITIL at Ludicrous Speeds - Rugged DevOps 6a
Kim itSMF New England: ITIL at Ludicrous Speeds - Rugged DevOps 6aKim itSMF New England: ITIL at Ludicrous Speeds - Rugged DevOps 6a
Kim itSMF New England: ITIL at Ludicrous Speeds - Rugged DevOps 6aGene Kim
 
Kim IT Pro Forum Eugene: IT at Ludicrous Speeds - rugged dev ops
Kim IT Pro Forum Eugene: IT at Ludicrous Speeds - rugged dev opsKim IT Pro Forum Eugene: IT at Ludicrous Speeds - rugged dev ops
Kim IT Pro Forum Eugene: IT at Ludicrous Speeds - rugged dev opsGene Kim
 
Continuous Delivery Sounds Great but it Won't Work Here
Continuous Delivery Sounds Great but it Won't Work HereContinuous Delivery Sounds Great but it Won't Work Here
Continuous Delivery Sounds Great but it Won't Work HereJez Humble
 
Mary Poppendieck: The Aware Organization - Lean IT Summit 2014
Mary Poppendieck: The Aware Organization - Lean IT Summit 2014Mary Poppendieck: The Aware Organization - Lean IT Summit 2014
Mary Poppendieck: The Aware Organization - Lean IT Summit 2014Institut Lean France
 
The Rationale for Continuous Delivery
The Rationale for Continuous DeliveryThe Rationale for Continuous Delivery
The Rationale for Continuous DeliveryPerforce
 
Digital Transformation, Testing and Automation
Digital Transformation, Testing and AutomationDigital Transformation, Testing and Automation
Digital Transformation, Testing and AutomationTEST Huddle
 
SecureWorld: Security is Dead, Rugged DevOps 1f
SecureWorld:  Security is Dead, Rugged DevOps 1fSecureWorld:  Security is Dead, Rugged DevOps 1f
SecureWorld: Security is Dead, Rugged DevOps 1fGene Kim
 
CampDevOps keynote - DevOps: Using 'Lean' to eliminate Bottlenecks
CampDevOps keynote - DevOps: Using 'Lean' to eliminate BottlenecksCampDevOps keynote - DevOps: Using 'Lean' to eliminate Bottlenecks
CampDevOps keynote - DevOps: Using 'Lean' to eliminate BottlenecksSanjeev Sharma
 
The Future of Testing
The Future of TestingThe Future of Testing
The Future of TestingPaul Gerrard
 
When IT Fails The Business Fails...
When IT Fails The Business Fails...When IT Fails The Business Fails...
When IT Fails The Business Fails...Gene Kim
 
XebiaLabs & codecentric Webinar: Deploy Higher Quality Applications Faster (G...
XebiaLabs & codecentric Webinar: Deploy Higher Quality Applications Faster (G...XebiaLabs & codecentric Webinar: Deploy Higher Quality Applications Faster (G...
XebiaLabs & codecentric Webinar: Deploy Higher Quality Applications Faster (G...XebiaLabs
 
Advance ALM and DevOps Practices with Continuous Improvement
Advance ALM and DevOps Practices with Continuous ImprovementAdvance ALM and DevOps Practices with Continuous Improvement
Advance ALM and DevOps Practices with Continuous ImprovementTechWell
 
Continuous Delivery in a Legacy Shop—One Step at a Time
Continuous Delivery in a Legacy Shop—One Step at a TimeContinuous Delivery in a Legacy Shop—One Step at a Time
Continuous Delivery in a Legacy Shop—One Step at a TimeTechWell
 
Continuous Delivery for Agile Teams
Continuous Delivery for Agile TeamsContinuous Delivery for Agile Teams
Continuous Delivery for Agile TeamsMike Bowler
 
Systematic Inventive Thinking - SIT
Systematic Inventive Thinking - SITSystematic Inventive Thinking - SIT
Systematic Inventive Thinking - SITPeter Frank
 
Steve blank moneyball and evidence-based entreprenuership
Steve blank moneyball and evidence-based entreprenuership Steve blank moneyball and evidence-based entreprenuership
Steve blank moneyball and evidence-based entreprenuership Stanford University
 

What's hot (20)

Winnipeg ISACA Security is Dead, Rugged DevOps
Winnipeg ISACA Security is Dead, Rugged DevOpsWinnipeg ISACA Security is Dead, Rugged DevOps
Winnipeg ISACA Security is Dead, Rugged DevOps
 
PuppetConf2012GeneKim
PuppetConf2012GeneKimPuppetConf2012GeneKim
PuppetConf2012GeneKim
 
SecureWorld Kim - Infosec at Ludicrous Speeds - Rugged DevOps 6a
SecureWorld   Kim - Infosec at Ludicrous Speeds - Rugged DevOps 6aSecureWorld   Kim - Infosec at Ludicrous Speeds - Rugged DevOps 6a
SecureWorld Kim - Infosec at Ludicrous Speeds - Rugged DevOps 6a
 
Kim itSMF New England: ITIL at Ludicrous Speeds - Rugged DevOps 6a
Kim itSMF New England: ITIL at Ludicrous Speeds - Rugged DevOps 6aKim itSMF New England: ITIL at Ludicrous Speeds - Rugged DevOps 6a
Kim itSMF New England: ITIL at Ludicrous Speeds - Rugged DevOps 6a
 
Kim IT Pro Forum Eugene: IT at Ludicrous Speeds - rugged dev ops
Kim IT Pro Forum Eugene: IT at Ludicrous Speeds - rugged dev opsKim IT Pro Forum Eugene: IT at Ludicrous Speeds - rugged dev ops
Kim IT Pro Forum Eugene: IT at Ludicrous Speeds - rugged dev ops
 
Continuous Delivery Sounds Great but it Won't Work Here
Continuous Delivery Sounds Great but it Won't Work HereContinuous Delivery Sounds Great but it Won't Work Here
Continuous Delivery Sounds Great but it Won't Work Here
 
Lean startup
Lean startupLean startup
Lean startup
 
Mary Poppendieck: The Aware Organization - Lean IT Summit 2014
Mary Poppendieck: The Aware Organization - Lean IT Summit 2014Mary Poppendieck: The Aware Organization - Lean IT Summit 2014
Mary Poppendieck: The Aware Organization - Lean IT Summit 2014
 
The Rationale for Continuous Delivery
The Rationale for Continuous DeliveryThe Rationale for Continuous Delivery
The Rationale for Continuous Delivery
 
Digital Transformation, Testing and Automation
Digital Transformation, Testing and AutomationDigital Transformation, Testing and Automation
Digital Transformation, Testing and Automation
 
SecureWorld: Security is Dead, Rugged DevOps 1f
SecureWorld:  Security is Dead, Rugged DevOps 1fSecureWorld:  Security is Dead, Rugged DevOps 1f
SecureWorld: Security is Dead, Rugged DevOps 1f
 
CampDevOps keynote - DevOps: Using 'Lean' to eliminate Bottlenecks
CampDevOps keynote - DevOps: Using 'Lean' to eliminate BottlenecksCampDevOps keynote - DevOps: Using 'Lean' to eliminate Bottlenecks
CampDevOps keynote - DevOps: Using 'Lean' to eliminate Bottlenecks
 
The Future of Testing
The Future of TestingThe Future of Testing
The Future of Testing
 
When IT Fails The Business Fails...
When IT Fails The Business Fails...When IT Fails The Business Fails...
When IT Fails The Business Fails...
 
XebiaLabs & codecentric Webinar: Deploy Higher Quality Applications Faster (G...
XebiaLabs & codecentric Webinar: Deploy Higher Quality Applications Faster (G...XebiaLabs & codecentric Webinar: Deploy Higher Quality Applications Faster (G...
XebiaLabs & codecentric Webinar: Deploy Higher Quality Applications Faster (G...
 
Advance ALM and DevOps Practices with Continuous Improvement
Advance ALM and DevOps Practices with Continuous ImprovementAdvance ALM and DevOps Practices with Continuous Improvement
Advance ALM and DevOps Practices with Continuous Improvement
 
Continuous Delivery in a Legacy Shop—One Step at a Time
Continuous Delivery in a Legacy Shop—One Step at a TimeContinuous Delivery in a Legacy Shop—One Step at a Time
Continuous Delivery in a Legacy Shop—One Step at a Time
 
Continuous Delivery for Agile Teams
Continuous Delivery for Agile TeamsContinuous Delivery for Agile Teams
Continuous Delivery for Agile Teams
 
Systematic Inventive Thinking - SIT
Systematic Inventive Thinking - SITSystematic Inventive Thinking - SIT
Systematic Inventive Thinking - SIT
 
Steve blank moneyball and evidence-based entreprenuership
Steve blank moneyball and evidence-based entreprenuership Steve blank moneyball and evidence-based entreprenuership
Steve blank moneyball and evidence-based entreprenuership
 

Viewers also liked

Viewers also liked (8)

The Agile Movement
The Agile MovementThe Agile Movement
The Agile Movement
 
Crowd funding presentation
Crowd funding presentationCrowd funding presentation
Crowd funding presentation
 
The Lean Startup - Visual Summary
The Lean Startup - Visual SummaryThe Lean Startup - Visual Summary
The Lean Startup - Visual Summary
 
The Lean Startup
The Lean StartupThe Lean Startup
The Lean Startup
 
Internet Marketing Presentation
Internet Marketing PresentationInternet Marketing Presentation
Internet Marketing Presentation
 
Intro to Design Thinking
Intro to Design ThinkingIntro to Design Thinking
Intro to Design Thinking
 
Introducing design thinking
Introducing design thinkingIntroducing design thinking
Introducing design thinking
 
The role of Design Thinking
The role of Design ThinkingThe role of Design Thinking
The role of Design Thinking
 

Similar to Most Startups Fail But Lean Startups Succeed

2009_06_08 The Lean Startup Tokyo edition
2009_06_08 The Lean Startup Tokyo edition2009_06_08 The Lean Startup Tokyo edition
2009_06_08 The Lean Startup Tokyo editionEric Ries
 
2010 03 09 the lean startup - gdc
2010 03 09 the lean startup - gdc2010 03 09 the lean startup - gdc
2010 03 09 the lean startup - gdcEric Ries
 
The Lean Startup EA edition
The Lean Startup EA editionThe Lean Startup EA edition
The Lean Startup EA editionEric Ries
 
The Lean Startup fbFund Edition
The Lean Startup fbFund EditionThe Lean Startup fbFund Edition
The Lean Startup fbFund EditionEric Ries
 
Ericriesleanstartuppresentationforweb2
Ericriesleanstartuppresentationforweb2Ericriesleanstartuppresentationforweb2
Ericriesleanstartuppresentationforweb2Edmund FOng
 
2010 02 19 the lean startup - webstock 2010
2010 02 19 the lean startup - webstock 20102010 02 19 the lean startup - webstock 2010
2010 02 19 the lean startup - webstock 2010Eric Ries
 
2010 10 28 the lean startup at ucsd
2010 10 28 the lean startup at ucsd2010 10 28 the lean startup at ucsd
2010 10 28 the lean startup at ucsdEric Ries
 
2012 05 15 eric ries the lean startup pwc canada
2012 05 15 eric ries the lean startup pwc canada2012 05 15 eric ries the lean startup pwc canada
2012 05 15 eric ries the lean startup pwc canadaEric Ries
 
Eric Ries - The Lean Startup - RailsConf 2011
Eric Ries - The Lean Startup - RailsConf 2011Eric Ries - The Lean Startup - RailsConf 2011
Eric Ries - The Lean Startup - RailsConf 2011Eric Ries
 
How BDD enables True CI/CD
How BDD enables True CI/CDHow BDD enables True CI/CD
How BDD enables True CI/CDRoger Turnau
 
2010 10 19 the lean startup workshop for i_gap ireland
2010 10 19 the lean startup workshop for i_gap ireland2010 10 19 the lean startup workshop for i_gap ireland
2010 10 19 the lean startup workshop for i_gap irelandEric Ries
 
Continuous Deployment
Continuous DeploymentContinuous Deployment
Continuous DeploymentBrian Henerey
 
Eric Ries StartupDay 2011 Speech
Eric Ries StartupDay 2011 SpeechEric Ries StartupDay 2011 Speech
Eric Ries StartupDay 2011 SpeechStartup Weekend
 
2008 09 06 Eric Ries Haas Columbia Customer Development Engineering
2008 09 06 Eric Ries Haas Columbia Customer Development Engineering2008 09 06 Eric Ries Haas Columbia Customer Development Engineering
2008 09 06 Eric Ries Haas Columbia Customer Development Engineeringguest472f47
 
2009 10 28 The Lean Startup In Paris
2009 10 28 The Lean Startup In Paris2009 10 28 The Lean Startup In Paris
2009 10 28 The Lean Startup In ParisEric Ries
 
2010 10 15 the lean startup at tech_hub london
2010 10 15 the lean startup at tech_hub london2010 10 15 the lean startup at tech_hub london
2010 10 15 the lean startup at tech_hub londonEric Ries
 
Discovery delivery agiletour-xian
Discovery delivery agiletour-xianDiscovery delivery agiletour-xian
Discovery delivery agiletour-xianQiao Liang
 
Eric Ries - The Lean Startup - Google Tech Talk
Eric Ries - The Lean Startup - Google Tech TalkEric Ries - The Lean Startup - Google Tech Talk
Eric Ries - The Lean Startup - Google Tech TalkEric Ries
 
Eric Ries - The lean startup
Eric Ries - The lean startupEric Ries - The lean startup
Eric Ries - The lean startupmomentummi
 

Similar to Most Startups Fail But Lean Startups Succeed (20)

2009_06_08 The Lean Startup Tokyo edition
2009_06_08 The Lean Startup Tokyo edition2009_06_08 The Lean Startup Tokyo edition
2009_06_08 The Lean Startup Tokyo edition
 
2010 03 09 the lean startup - gdc
2010 03 09 the lean startup - gdc2010 03 09 the lean startup - gdc
2010 03 09 the lean startup - gdc
 
The Lean Startup EA edition
The Lean Startup EA editionThe Lean Startup EA edition
The Lean Startup EA edition
 
The Lean Startup fbFund Edition
The Lean Startup fbFund EditionThe Lean Startup fbFund Edition
The Lean Startup fbFund Edition
 
Ericriesleanstartuppresentationforweb2
Ericriesleanstartuppresentationforweb2Ericriesleanstartuppresentationforweb2
Ericriesleanstartuppresentationforweb2
 
2010 02 19 the lean startup - webstock 2010
2010 02 19 the lean startup - webstock 20102010 02 19 the lean startup - webstock 2010
2010 02 19 the lean startup - webstock 2010
 
2010 10 28 the lean startup at ucsd
2010 10 28 the lean startup at ucsd2010 10 28 the lean startup at ucsd
2010 10 28 the lean startup at ucsd
 
2012 05 15 eric ries the lean startup pwc canada
2012 05 15 eric ries the lean startup pwc canada2012 05 15 eric ries the lean startup pwc canada
2012 05 15 eric ries the lean startup pwc canada
 
Eric Ries - The Lean Startup - RailsConf 2011
Eric Ries - The Lean Startup - RailsConf 2011Eric Ries - The Lean Startup - RailsConf 2011
Eric Ries - The Lean Startup - RailsConf 2011
 
BLN CEO Tales. Eric Ries, The Lean Startup
BLN CEO Tales. Eric Ries, The Lean StartupBLN CEO Tales. Eric Ries, The Lean Startup
BLN CEO Tales. Eric Ries, The Lean Startup
 
How BDD enables True CI/CD
How BDD enables True CI/CDHow BDD enables True CI/CD
How BDD enables True CI/CD
 
2010 10 19 the lean startup workshop for i_gap ireland
2010 10 19 the lean startup workshop for i_gap ireland2010 10 19 the lean startup workshop for i_gap ireland
2010 10 19 the lean startup workshop for i_gap ireland
 
Continuous Deployment
Continuous DeploymentContinuous Deployment
Continuous Deployment
 
Eric Ries StartupDay 2011 Speech
Eric Ries StartupDay 2011 SpeechEric Ries StartupDay 2011 Speech
Eric Ries StartupDay 2011 Speech
 
2008 09 06 Eric Ries Haas Columbia Customer Development Engineering
2008 09 06 Eric Ries Haas Columbia Customer Development Engineering2008 09 06 Eric Ries Haas Columbia Customer Development Engineering
2008 09 06 Eric Ries Haas Columbia Customer Development Engineering
 
2009 10 28 The Lean Startup In Paris
2009 10 28 The Lean Startup In Paris2009 10 28 The Lean Startup In Paris
2009 10 28 The Lean Startup In Paris
 
2010 10 15 the lean startup at tech_hub london
2010 10 15 the lean startup at tech_hub london2010 10 15 the lean startup at tech_hub london
2010 10 15 the lean startup at tech_hub london
 
Discovery delivery agiletour-xian
Discovery delivery agiletour-xianDiscovery delivery agiletour-xian
Discovery delivery agiletour-xian
 
Eric Ries - The Lean Startup - Google Tech Talk
Eric Ries - The Lean Startup - Google Tech TalkEric Ries - The Lean Startup - Google Tech Talk
Eric Ries - The Lean Startup - Google Tech Talk
 
Eric Ries - The lean startup
Eric Ries - The lean startupEric Ries - The lean startup
Eric Ries - The lean startup
 

More from Eric Ries

Tendai Charasika - 2012 Lean Startup Conference
Tendai Charasika - 2012 Lean Startup ConferenceTendai Charasika - 2012 Lean Startup Conference
Tendai Charasika - 2012 Lean Startup ConferenceEric Ries
 
Stephanie Hay - Lean Startup Conference 2012
Stephanie Hay - Lean Startup Conference 2012Stephanie Hay - Lean Startup Conference 2012
Stephanie Hay - Lean Startup Conference 2012Eric Ries
 
Jessica Scorpio - 2012 Lean Startup Conference
Jessica Scorpio - 2012 Lean Startup ConferenceJessica Scorpio - 2012 Lean Startup Conference
Jessica Scorpio - 2012 Lean Startup ConferenceEric Ries
 
Robert Fan - 2012 Lean Startup Conference
Robert Fan - 2012 Lean Startup ConferenceRobert Fan - 2012 Lean Startup Conference
Robert Fan - 2012 Lean Startup ConferenceEric Ries
 
Leah Busque - 2012 Lean Startup Conference
Leah Busque - 2012 Lean Startup ConferenceLeah Busque - 2012 Lean Startup Conference
Leah Busque - 2012 Lean Startup ConferenceEric Ries
 
Lane Halley - 2012 Lean Startup Conference
Lane Halley - 2012 Lean Startup ConferenceLane Halley - 2012 Lean Startup Conference
Lane Halley - 2012 Lean Startup ConferenceEric Ries
 
Justin Wilcox - Lean Startup Conference 2012
Justin Wilcox - Lean Startup Conference 2012Justin Wilcox - Lean Startup Conference 2012
Justin Wilcox - Lean Startup Conference 2012Eric Ries
 
Ivory Madison - 2012 Lean Startup Conference
Ivory Madison - 2012 Lean Startup ConferenceIvory Madison - 2012 Lean Startup Conference
Ivory Madison - 2012 Lean Startup ConferenceEric Ries
 
Daniel Kim - 2012 Lean Startup Conference
Daniel Kim - 2012 Lean Startup ConferenceDaniel Kim - 2012 Lean Startup Conference
Daniel Kim - 2012 Lean Startup ConferenceEric Ries
 
Charles Hudson - 2012 Lean Startup Conference
Charles Hudson - 2012 Lean Startup ConferenceCharles Hudson - 2012 Lean Startup Conference
Charles Hudson - 2012 Lean Startup ConferenceEric Ries
 
George Bilbrey - 2012 Lean Startup Conference
George Bilbrey - 2012 Lean Startup ConferenceGeorge Bilbrey - 2012 Lean Startup Conference
George Bilbrey - 2012 Lean Startup ConferenceEric Ries
 
Ash Maurya Innovation Accounting - 2012 Lean Startup Conference
Ash Maurya Innovation Accounting - 2012 Lean Startup ConferenceAsh Maurya Innovation Accounting - 2012 Lean Startup Conference
Ash Maurya Innovation Accounting - 2012 Lean Startup ConferenceEric Ries
 
Andres Glusman - 2012 Lean Startup Conference
Andres Glusman - 2012 Lean Startup ConferenceAndres Glusman - 2012 Lean Startup Conference
Andres Glusman - 2012 Lean Startup ConferenceEric Ries
 
Back to the Roots - 2012 Lean Startup Conference
Back to the Roots - 2012 Lean Startup ConferenceBack to the Roots - 2012 Lean Startup Conference
Back to the Roots - 2012 Lean Startup ConferenceEric Ries
 
Dropbox startup lessons learned 2011
Dropbox   startup lessons learned 2011Dropbox   startup lessons learned 2011
Dropbox startup lessons learned 2011Eric Ries
 
2011 10 12 eric ries lean startup web 2.0 expo ny keynote
2011 10 12 eric ries lean startup web 2.0 expo ny keynote2011 10 12 eric ries lean startup web 2.0 expo ny keynote
2011 10 12 eric ries lean startup web 2.0 expo ny keynoteEric Ries
 
The Lean Startup debuts at #2 on the New York Times Bestseller List
The Lean Startup debuts at #2 on the New York Times Bestseller ListThe Lean Startup debuts at #2 on the New York Times Bestseller List
The Lean Startup debuts at #2 on the New York Times Bestseller ListEric Ries
 
The Lean Startup 10-Book Package
The Lean Startup 10-Book PackageThe Lean Startup 10-Book Package
The Lean Startup 10-Book PackageEric Ries
 
The Lean Startup 30-Book Package
The Lean Startup 30-Book PackageThe Lean Startup 30-Book Package
The Lean Startup 30-Book PackageEric Ries
 
The Lean Startup - Book Tour In Your City Package
The Lean Startup - Book Tour In Your City PackageThe Lean Startup - Book Tour In Your City Package
The Lean Startup - Book Tour In Your City PackageEric Ries
 

More from Eric Ries (20)

Tendai Charasika - 2012 Lean Startup Conference
Tendai Charasika - 2012 Lean Startup ConferenceTendai Charasika - 2012 Lean Startup Conference
Tendai Charasika - 2012 Lean Startup Conference
 
Stephanie Hay - Lean Startup Conference 2012
Stephanie Hay - Lean Startup Conference 2012Stephanie Hay - Lean Startup Conference 2012
Stephanie Hay - Lean Startup Conference 2012
 
Jessica Scorpio - 2012 Lean Startup Conference
Jessica Scorpio - 2012 Lean Startup ConferenceJessica Scorpio - 2012 Lean Startup Conference
Jessica Scorpio - 2012 Lean Startup Conference
 
Robert Fan - 2012 Lean Startup Conference
Robert Fan - 2012 Lean Startup ConferenceRobert Fan - 2012 Lean Startup Conference
Robert Fan - 2012 Lean Startup Conference
 
Leah Busque - 2012 Lean Startup Conference
Leah Busque - 2012 Lean Startup ConferenceLeah Busque - 2012 Lean Startup Conference
Leah Busque - 2012 Lean Startup Conference
 
Lane Halley - 2012 Lean Startup Conference
Lane Halley - 2012 Lean Startup ConferenceLane Halley - 2012 Lean Startup Conference
Lane Halley - 2012 Lean Startup Conference
 
Justin Wilcox - Lean Startup Conference 2012
Justin Wilcox - Lean Startup Conference 2012Justin Wilcox - Lean Startup Conference 2012
Justin Wilcox - Lean Startup Conference 2012
 
Ivory Madison - 2012 Lean Startup Conference
Ivory Madison - 2012 Lean Startup ConferenceIvory Madison - 2012 Lean Startup Conference
Ivory Madison - 2012 Lean Startup Conference
 
Daniel Kim - 2012 Lean Startup Conference
Daniel Kim - 2012 Lean Startup ConferenceDaniel Kim - 2012 Lean Startup Conference
Daniel Kim - 2012 Lean Startup Conference
 
Charles Hudson - 2012 Lean Startup Conference
Charles Hudson - 2012 Lean Startup ConferenceCharles Hudson - 2012 Lean Startup Conference
Charles Hudson - 2012 Lean Startup Conference
 
George Bilbrey - 2012 Lean Startup Conference
George Bilbrey - 2012 Lean Startup ConferenceGeorge Bilbrey - 2012 Lean Startup Conference
George Bilbrey - 2012 Lean Startup Conference
 
Ash Maurya Innovation Accounting - 2012 Lean Startup Conference
Ash Maurya Innovation Accounting - 2012 Lean Startup ConferenceAsh Maurya Innovation Accounting - 2012 Lean Startup Conference
Ash Maurya Innovation Accounting - 2012 Lean Startup Conference
 
Andres Glusman - 2012 Lean Startup Conference
Andres Glusman - 2012 Lean Startup ConferenceAndres Glusman - 2012 Lean Startup Conference
Andres Glusman - 2012 Lean Startup Conference
 
Back to the Roots - 2012 Lean Startup Conference
Back to the Roots - 2012 Lean Startup ConferenceBack to the Roots - 2012 Lean Startup Conference
Back to the Roots - 2012 Lean Startup Conference
 
Dropbox startup lessons learned 2011
Dropbox   startup lessons learned 2011Dropbox   startup lessons learned 2011
Dropbox startup lessons learned 2011
 
2011 10 12 eric ries lean startup web 2.0 expo ny keynote
2011 10 12 eric ries lean startup web 2.0 expo ny keynote2011 10 12 eric ries lean startup web 2.0 expo ny keynote
2011 10 12 eric ries lean startup web 2.0 expo ny keynote
 
The Lean Startup debuts at #2 on the New York Times Bestseller List
The Lean Startup debuts at #2 on the New York Times Bestseller ListThe Lean Startup debuts at #2 on the New York Times Bestseller List
The Lean Startup debuts at #2 on the New York Times Bestseller List
 
The Lean Startup 10-Book Package
The Lean Startup 10-Book PackageThe Lean Startup 10-Book Package
The Lean Startup 10-Book Package
 
The Lean Startup 30-Book Package
The Lean Startup 30-Book PackageThe Lean Startup 30-Book Package
The Lean Startup 30-Book Package
 
The Lean Startup - Book Tour In Your City Package
The Lean Startup - Book Tour In Your City PackageThe Lean Startup - Book Tour In Your City Package
The Lean Startup - Book Tour In Your City Package
 

Recently uploaded

Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
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
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
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
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
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
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 

Recently uploaded (20)

Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
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
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
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
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
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
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 

Most Startups Fail But Lean Startups Succeed

  • 1. The Lean Startup #leanstartup Eric Ries (@ericries) http://startuplessonslearned.blogspot.com
  • 4. Most Startups Fail • But it doesn’t have to be that way. • We can do better. • This talk is about how.
  • 5. The Lean Startup and You • Thinking of starting a new company, but haven’t taken the first step • In a startup now and want to iterate faster • Want to create the conditions for lean innovation inside a big company
  • 6. What is a startup? • A startup is a human institution designed to deliver a new product or service under conditions of extreme uncertainty. • Nothing to do with size of company, sector of the economy, or industry
  • 7. A Tale of Two Startups
  • 9. A good plan? • Start a company with a compelling long-term vision. • Raise plenty of capital. • Hire the absolute best and the brightest. • Hire an experienced management team with tons of startup experience. • Focus on quality. • Build a world-class technology platform. • Build buzz in the press and blogosphere.
  • 10. Achieving Failure • Company failed utterly, $40MM and five years of pain. • Crippled by “shadow beliefs” that destroyed the effort of all those smart people.
  • 11. Shadow Belief #1 • We know what customers want.
  • 12. Shadow Belief #2 • We can accurately predict the future.
  • 13. Shadow Belief #3 • Advancing the plan is progress.
  • 14. A good plan? • Start a company with a compelling long-term vision. • Raise plenty of capital. • Hire the absolute best and the brightest. • Hire an experienced management team with tons of startup experience. • Focus on quality. • Build a world-class technology platform. • Build buzz in the press and blogosphere.
  • 16. IMVU
  • 17. New plan • Shipped in six months – a horribly buggy beta product • Charged from day one • Shipped multiple times a day (by 2008, on average 50 times a day) • No PR, no launch • Results: 2007 revenues of $10MM
  • 18. Lean Startups Go Faster • Commodity technology stack, highly leveraged (free/open source, user-generated content, SEM). • Customer development – find out what customers want before you build it. • Agile software development – but tuned to the startup condition.
  • 19. Commodity technology stack • Leverage = for each ounce of effort you invest in your product, you take advantage of the efforts of thousands or millions of others. • It’s easy to see how high-leverage technology is driving costs down. • More important is its impact on speed. • Time to bring a new product to market is falling rapidly.
  • 20. Customer Development  Continuous cycle of customer interaction  Rapid hypothesis testing about market, pricing, custom ers, …  Extreme low cost, low burn, tight focus  Measurable gates for http://bit.ly/tpTtE investors
  • 21. A tale of two startups, revisited • Mirrors the changes in development methodologies over the past few years. • Let’s look at those changes schematically. • These examples are drawn from software startups, but increasingly: – All products require software – All companies are operating in a startup-like environment
  • 22. Traditional Product Development Unit of progress: Advance to Next Stage Waterfall Requirements Design Problem: known Solution: known Implementation Verification Maintenance
  • 23. Agile Unit of progress: a line of working code “Product Owner” or in-house customer Problem:Known Solution:Unknown
  • 24. Product Development at Lean Startup Unit of progress: validated learning about customers ($$$) Problem:Unknown Solution:Unknown
  • 25. Minimize TOTAL time through the loop IDEAS LEARN BUILD DATA CODE MEASURE
  • 26. How to build a Lean Startup • Let’s talk about some specifics. These are not everything you need, but they will get you started • Continuous deployment • Split-test (A/B) experimentation • Five why’s
  • 27. Continuous Deployment IDEAS Learn Faster Code Faster Five Whys Root LEARN BUILD Continuous Cause Analysis Deployment DATA CODE Measure Faster MEASURE Rapid Split Tests
  • 28. Continuous Deployment • Deploy new software quickly • At IMVU time from check-in to production = 20 minutes • Tell a good change from a bad change (quickly) • Revert a bad change quickly • Work in small batches • At IMVU, a large batch = 3 days worth of work • Break large projects down into small batches
  • 29. Cluster Immune System What it looks like to ship one piece of code to production: • Run tests locally (SimpleTest, Selenium) o Everyone has a complete sandbox • Continuous Integration Server (BuildBot) o All tests must pass or “shut down the line” o Automatic feedback if the team is going too fast • Incremental deploy o Monitor cluster and business metrics in real-time o Reject changes that move metrics out-of-bounds • Alerting & Predictive monitoring (Nagios) o Monitor all metrics that stakeholders care about o If any metric goes out-of-bounds, wake somebody up o Use historical trends to predict acceptable bounds When customers see a failure: o Fix the problem for customers o Improve your defenses at each level
  • 30. Rapid Split Tests IDEAS Learn Faster Code Faster Five Whys Root LEARN BUILD Continuous Cause Analysis Deployment DATA CODE Measure Faster MEASURE Rapid Split Tests
  • 31. Split-testing all the time • A/B testing is key to validating your hypotheses • Has to be simple enough for everyone to use and understand it • Make creating a split-test no more than one line of code: if( setup_experiment(...) == quot;controlquot; ) { // do it the old way } else { // do it the new way }
  • 32. The AAA’s of Metrics • Actionable • Accessible • Auditable
  • 33. Measure the Macro • Always look at cohort-based metrics over time • Split-test the small, measure the large Control Group (A) Experiment (B) # Registered 1025 1099 Downloads 755 (73%) 733 (67%) Active days 0-1 600 (58%) 650 (59%) Activedays 1-3 500 (48%) 545 (49%) Active days 3-10 300 (29%) 330 (30%) Activedays 10-30 250 (24%) 290 (26%) Total Revenue $3210.50 $3450.10 RPU $3.13 $3.14
  • 34. Five Whys IDEAS Learn Faster Code Faster Five Whys Root LEARN BUILD Continuous Cause Analysis Deployment DATA CODE Measure Faster MEASURE Rapid Split Tests
  • 35. Five Whys Root Cause Analysis • A technique for continuous improvement of company process. • Ask “why” five times when something unexpected happens. • Make proportional investments in prevention at all five levels of the hierarchy. • Behind every supposed technical problem is usually a human problem. Fix the cause, not just the symptom.
  • 36. There’s much more… IDEAS Learn Faster Code Faster Split Tests LEARN BUILD Unit Tests Customer Interviews Usability Tests Customer Development Continuous Integration Five Whys Root Cause Analysis Incremental Deployment Customer Advisory Board Free & Open-Source Components Falsifiable Hypotheses Cloud Computing Product Owner Accountability Cluster Immune System Customer Archetypes DATA CODE Just-in-time Scalability Cross-functional Teams Refactoring Semi-autonomous Teams Developer Sandbox Smoke Tests Measure Faster MEASURE Split Tests Funnel Analysis Clear Product Owner Cohort Analysis Continuous Deployment Net Promoter Score Usability Tests Search Engine Marketing Real-time Monitoring Real-Time Alerting Customer Liaison Predictive Monitoring
  • 37. The Lean Startup • You are ready to do this, whether you are: – Thinking of starting a new company, but haven’t taken the first step – Are in a startup now that could iterate faster – Want to create the conditions for lean innovation inside a big company • Get started, now, today.
  • 38. Thanks! • Startup Lessons Learned Blog – http://startuplessonslearned.blogspot.com/ • Eric Ries on Twitter – http://twitter.com/ericries • The Lean Startup Workshop – An all-day event for a select audience – May 29and June 18, 2009 in San Francisco – http://training.oreilly.com/theleanstartup/

Editor's Notes

  1. Hi, I’m Eric Ries. I wan to talk to you today about one simple fact: that the vast majority of high-tech startups fail. It does not have to be that way.Read the stories of successful startups and, if the founders are willing to be honest, you will see this pattern over and over again. They started out as digital cash for PDAs, but evolved into online payments for eBay. They started building BASIC interpreters, but evolved into the world's largest operating systems monopoly. They were shocked to discover their online games company was actually a photo-sharing site.Each of these companies were fortunate to have enough time, resources, and patience to endure the multiple iterations it took to find a successful product and market. The premise of the lean startup is simple: if we can reduce the time between these major iterations, we can increase the odds of success.
  2. Hi, I’m Eric Ries. I wan to talk to you today about one simple fact: that the vast majority of high-tech startups fail. It does not have to be that way.Read the stories of successful startups and, if the founders are willing to be honest, you will see this pattern over and over again. They started out as digital cash for PDAs, but evolved into online payments for eBay. They started building BASIC interpreters, but evolved into the world's largest operating systems monopoly. They were shocked to discover their online games company was actually a photo-sharing site.Each of these companies were fortunate to have enough time, resources, and patience to endure the multiple iterations it took to find a successful product and market. The premise of the lean startup is simple: if we can reduce the time between these major iterations, we can increase the odds of success.
  3. Hi, I’m Eric Ries. I wan to talk to you today about one simple fact: that the vast majority of high-tech startups fail. It does not have to be that way.Read the stories of successful startups and, if the founders are willing to be honest, you will see this pattern over and over again. They started out as digital cash for PDAs, but evolved into online payments for eBay. They started building BASIC interpreters, but evolved into the world's largest operating systems monopoly. They were shocked to discover their online games company was actually a photo-sharing site.Each of these companies were fortunate to have enough time, resources, and patience to endure the multiple iterations it took to find a successful product and market. The premise of the lean startup is simple: if we can reduce the time between these major iterations, we can increase the odds of success.
  4. … remember that a startup is not a shrunken-down big company.
  5. Start a company with a compelling long-term vision. Don't get distracted by trying to flip it. Instead, try and build a company that will matter on the scale of the next century. Aim to become the \"next AOL or Microsoft\" not a niche player.Raise sufficient capital to have an extended runway from experienced smart money investors with deep pockets who are prepared to make follow-on investments.Hire the absolute best and the brightest, true experts in their fields, who in turn can hire the smartest people possible to staff their departments. Insist on the incredibly high-IQ employees and hold them to incredibly high standards.Bring in an expert CEO with outstanding business credentials and startup experience to focus on relentless execution.Build a truly mainstream product. Focus on quality. Ship it when it's done, not a moment before. Insist on high levels of usability, UI design, and polish. Conduct constant focus groups and usability tests.Build a world-class technology platform, with patent-pending algorithms and the ability to scale to millions of simultaneous users.Launch with a PR blitz, including mentions in major mainstream publications. Build the product in stealth mode to build buzz for the eventual launch.
  6. By hiring experts, conducting lots of focus groups, and executing to a detailed plan, the company became deluded that it knew what customers wanted. I remember vividly a scene at a board meeting, where the company was celebrating a major milestone. The whole company and board play-tested the product to see its new features first hand. Everyone had fun; the product worked. But that was two full years before any customers were allowed to use it. Nobody even asked the question: why not ship this now? It was considered naive that the \"next AOL\" would ship a product that wasn't ready for prime time. Stealth is a customer-free zone. All of the efforts to create buzz, keep competitors in the dark, and launch with a bang had the direct effect of starving the company for much-needed feedback.
  7. Even though some aspects of the product were eventually vindicated as good ones, the underlying architecture suffered from hard-to-change assumptions. After years of engineering effort, changing these assumptions was incredibly hard. Without conscious process design, product development teams turn lines of code written into momentum in a certain direction. Even a great architecture becomes inflexible. This is why agility is such a prized quality in product development.
  8. This is the most devastating thing about achieving a failure: while in the midst of it, you think you're making progress. This company had disciplined schedules, milestones, employee evaluations, and a culture of execution. When schedules were missed, people were held accountable. Unfortunately, there was no corresponding discipline of evaluating the quality of the plan itself. As the company built infrastructure and added features, the team celebrated these accomplishments. Departments were built and were even metrics-driven. But there was no feedback loop to help the company find the right metrics to focus on.
  9. Do our actions live up to our ideals?
  10. After our crushing failure, the founders of my next company decided to question every single assumption for how a startup should be built. Failure gave us the courage to try some radical things.
  11. Based on that experience, and the experience of the other startups I have worked for, I now strongly believe there is a better way to create startups. I’ve called this vision the Lean Startup. It combines three key trends.
  12. Ladder of inference
  13. This is the core feedback loop that powers startups. Their goal is not to optimize the time it takes to do any one of these steps. There are many specific practices that can power lean startups, and we’ll cover a few in this presentation. But more important than any specific practice is this core idea: startups should be built to learn.
  14. Run tests locally:-- Sandbox includes as much of production as humanly possible (db, memcached, Solr, Apache).-- Write tests in every language. We use 8 different test frameworks for different environs. Otherwise you get fear and brittle.-- Example kind of problem is that AJAX updater for site header. Seemingly innocuous change would break shopping experience.CIT/BuildBot:-- Simply don’t push with red tests. Even if the site is in trouble. Example Christmas site outage with memcache sampling.-- Give an idea of the scale. 20 machine cluster, runs 10000 tests and 100,000’s of thousand of assertions on every change.Incremental deploy:-- Catch performance bugs and gaps in test coverageSlow query in free tags. This started to drive database load higher on one MySQL instance due to contention and data size. Detected and rolled back before it affected users and before the database was hosed due to high load.Changed transaction commit logic in foundation of the system. This passed all tests but caused registrations to fail in production due to subtle difference between sandbox and production. System detected drop in business metric in 1 minute and reverted the changeAlerting and Predictive MonitoringExample: Second tier ISP to block our outbound emailExample: Rooms list performance time bombExample: Registration quality, second tier payment methods, invite mail success rates by serviceStory: Anything that can go wrong will, so just catch it then fast.
  15. When something goes wrong, we tend to see it as a crisis and seek to blame. A better way is to see it as a learning opportunity. Not in the existential sense of general self-improvement. Instead, we can use the technique of asking why five times to get to the root cause of the problem.Here's how it works. Let's say you notice that your website is down. Obviously, your first priority is to get it back up. But as soon as the crisis is past, you have the discipline to have a post-mortem in which you start asking why: 1. why was the website down? The CPU utilization on all our front-end servers went to 100% 2. why did the CPU usage spike? A new bit of code contained an infinite loop! 3. why did that code get written? So-and-so made a mistake 4. why did his mistake get checked in? He didn't write a unit test for the feature 5. why didn't he write a unit test? He's a new employee, and he was not properly trained in TDDSo far, this isn't much different from the kind of analysis any competent operations team would conduct for a site outage. The next step is this: you have to commit to make a proportional investment in corrective action at every level of the analysis. So, in the example above, we'd have to take five corrective actions: 1. bring the site back up 2. remove the bad code 3. help so-and-so understand why his code doesn't work as written 4. train so-and-so in the principles of TDD 5. change the new engineer orientation to include TDD
  16. Webcast: May 1Workshop: May 29Fliers up frontDiscussion in web2open
  17. Take a moment to close your eyes…
  18. This is the core feedback loop that powers startups. Their goal is not to optimize the time it takes to do any one of these steps. There are many specific practices that can power lean startups, and we’ll cover a few in this presentation. But more important than any specific practice is this core idea: startups should be built to learn.