Agile Development.

Slides:



Advertisements
Similar presentations
Keith McMillan Principal, Adept Technologies Copyright (C) 2008, Adept Technologies llc.
Advertisements

Colin Weaver The Eleven Essential Behaviours of Successful Agile Project Teams.
Chapter: 3 Agile Development
E X treme Programming & Agile Modeling Copyright © 2003 Patrick McDermott UC Berkeley Extension
Software Development Methodologies 1. A methodology is: A collection of procedures, techniques, principles, and tools that help developers build a computer.
Agile Project Management with Scrum
Agile development By Sam Chamberlain. First a bit of history..
Agile Architecture? Paul Lund 24 th Nov Agile Manifesto We are uncovering better ways of developing software by doing it and helping others do it.
Agile Methods.
Agile Principles Suradet Jitprapaikulsarn 1. What is Agility? Effective (rapid and adaptive) response to change Effective communication among all stakeholders.
Does it work with Data Warehouses?. “We are uncovering better ways of developing software by doing it and helping others do it. Through this work we.
An Agile View of Process
Introduction to Agile.
Software engineering Process models Pavel Agejkin.
How Agile Are You? Larry Apke Agile Expert
1 Staffordshire UNIVERSITY School of Computing Slide: 1 Prototyping Agile Software Development 2 Agile Methods and Software Architectures.
1 Agile Methodology & Programming Ric Holt July 2009.
Software Engineering Modern Approaches
Agile Programming Principles.
The Agile Primer July 2008 © ThoughtWorks 2008.
Agile Web Development C. Daniel Chase University of Colorado at Boulder.
Developed by Reneta Barneva, SUNY Fredonia Agile Development.
Chapter 4 Agile Development
AgileCamp Presents: Agile 101. Good luck in your presentation! This slide deck has been shared by AgileCamp Kit under the Creative Commons Attribution.
Project Workflow. How do you do it? -Discussion-
Chapter 5 애자일 개발 Agile Development
AGILE COTS Václav Pergl We are uncovering better ways of developing software by doing it and helping others do it. Through this work.
1 11/21/2015 ã 2007, Spencer Rugaber Agile Manifesto February, 2001 XP, SCRUM, DSDM, Adaptive Software Development,
UX meets XP. Overview of core approaches to creating interactive software Waterfall, iterative design, Agile Hybrid methods of evaluation H&P Chapter.
2  Examine effects of using agile methods for creating Internet products on customer satisfaction and firm performance  Agile methods are informal,
Why (or When) Agile Fails Creating high performance software delivery teams.
Jeff Briggs Senior Consultant Capstone Consulting.
#2-What is Agile? Why Agile? Subtopics 1- Agile motivation for software / systems 2- Agile tenets and principles 3- Agile as a risk mitigation strategy.
- Discussion of Chapter 1 in Martin and Martin.  We are uncovering better ways of developing software by doing it and helping others do it. Through this.
Chapter 3 Agile Development
Module 2: What is Agile? Why use it? TLO: Given a DoD program involved in software development, the student will recognize situations where applying agile.
Agile Introduction Emerson Murphy-Hill. Agile Manifesto/Alliance XP, SCRUM, DSDM, Adaptive Software Development, Crystal, FDD February 2001 (Snowbird,
By: Isuru Abeysekera AGILE DEVELOPMENT. WHAT IS AGILE DEVELOPMENT? Broad term used to describe several methods for a development process Introduced in.
Industrial Software Development Process Bashar Ahmad RISC Software GmbH.
Baby Steps to Agility How to Grow Into Agile. A little about me A little about Agile Growing into Agile Questions Goals.
Project Workflow.
AGILE METHODS Curtis Cook CS 569 Spring 2003.
Embedded Systems Software Engineering
Chapter 5 Agile Development Moonzoo Kim KAIST
Agile Project Management
Agile Project Management and the yin & yang of
Introduction to Agile Software Development
Principles for Agile Development
Jenna Maghie, Policy Officer
The Agile/Non-Agile Debate
Agile Training Day 2 November 17, 2015.
Software & Software Engineering Pertemuan-4 Dosen :Kundang K Juman
Project Workflow.
#2-What is Agile? Why Agile?
Teaching Agile Methods CSEE&T 2017, Savannah, Georgia
Chapter 5 Agile Development
Project Management and the Agile Manifesto
Agile Software Development Paradigms
How to Successfully Implement an Agile Project
Rosa María Torres de Paz
The Agile Manifesto is based on 12 principles
Informatics 121 Software Design I
Introduction to Agile Blue Ocean Workshops.
How Strong is Your Agile Foundation
Adjective: Able to move quickly and easily. Principles and Values
Chapter 3: Agile Software Processes
The Manifesto for Agile Software Development
Projects, Assignments, and other Assessments
Chapter 3 Agile Development
Presentation transcript:

Agile Development

Evolution of Software Development Paradigms Hacking Structured Analysis / Structured Design Waterfall Spiral Iterative and Incremental Agile

Agile Principles Our highest priority is to satisfy the customer through early and continuous delivery of valuable software. Welcome changing requirements, even late in development. Agile processes harness change for the customer's competitive advantage. Deliver working software frequently, from a couple of weeks to a couple of months, with a preference to the shorter timescale. Business people and developers must work together daily throughout the project. Build projects around motivated individuals. Give them the environment and support they need, and trust them to get the job done. The most efficient and effective method of conveying information to and within a development team is face-to-face conversation. Working software is the primary measure of progress. Agile processes promote sustainable development. The sponsors, developers, and users should be able to maintain a constant pace indefinitely. Continuous attention to technical excellence and good design enhances agility. Simplicity--the art of maximizing the amount of work not done--is essential. The best architectures, requirements, and designs emerge from self-organizing teams. At regular intervals, the team reflects on how to become more effective, then tunes and adjusts its behavior accordingly.

Common Agile Practices Test-Driven Development Pair Programming Refactoring Continuous Integration User Stories Timeboxing Retrospectives Velocity Tracking Planning Poker Burndown Charts (Several others)

Agile Methods Adaptive software development (ASD) Agile modeling Agile unified process (AUP) Disciplined agile delivery Dynamic systems development method (DSDM) Extreme programming (XP) Feature-driven development (FDD) Lean software development Kanban Rapid application development (RAD) Scrum Scrumban (Several others)

Scrum Overview

Sample Definition of Ready Story Definition / Overview Complete Paragraph (2-3 sentences is OK), stating what the story is. Acceptance (success) criteria defined Criteria are clearly stated and testable UI Mockups created (if applicable) May be hand drawn Performance criteria defined (if applicable) Initial functional requirements written May be bullet points at this stage

Sample Definition of Done Code Complete All code is written to satisfy all requirements that remain in scope Code is written according to documented coding standards  Code is appropriately commented Code is reviewed by at least one peer Code is reviewed by an architect (if required) Code is checked in Testing Automated unit testing (90%+ automated unit coverage unless a lower level is appropriate based on requirements) Main and important scenarios are automated (Selenium for UI scenarios, integration tests for non-UI scenarios) All tests (automated and manual) are passing There are no known defects with a severity higher than “low” Acceptance and Performance Criteria The story satisfies all acceptance and performance criteria  Need to create coding standards documents for the languages we use. Documentation Overview Document What does the system do and why? How does it fit into our existing product set? Technical Documentation Architectural overview Development Environment Setup Instructions Deployment Instructions Technical Description API Documentation Deployment The story is deployable on production hardware The deployment is automated to the extent possible, and can be done by an ops team by following the documented deployment instructions Monitoring Monitoring infrastructure is in place, satisfies the stated monitoring requirements, and is runnable at deployment

Story Point Estimation Scales Ideal Hours (or Ideal Days) Modified Fibonacci Series 1, 2, 3, 5, 8, 13, 20, 40, 100, ∞ Methods Ordering Method Team members take turns placing a story card in a scale category or moving a story card There are usually limits to how many times a card can be moved and/or how far it can be moved Planning Poker Each team member has cards with each number from the Fibonacci series After discussing a story, all play a card at the same time and then discuss and resolve differences Usually the player of the highest and lowest cards are asked to explain Others

Sprint Burndown Chart Example 1

Sprint Burndown Chart Example 2

Sprint Burndown Chart Example 3

Refactoring in Agile Development: Test-Driven Development