Scrum and Extreme Programming (XP) : Best Practices - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T17:24:57Z http://stackoverflow.com/feeds/question/851254 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices 4 Scrum and Extreme Programming (XP) : Best Practices Krish 2009-05-12T05:26:06Z 2009-07-22T14:04:30Z <p>We follow Scrum for software development in our organization. Although we have fair experience with Scrum, we stop short of producing good source code at the end of the day. People are talking about combining Extreme Programming (XP) with Scrum to produce predictable results. </p> <p>I have gone through the Extreme Programming materials but couldn't get a good picture. </p> <p>How are Scrum and Extreme Programming are used in software development?</p> http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices/851281#851281 7 Answer by Gishu for Scrum and Extreme Programming (XP) : Best Practices Gishu 2009-05-12T05:34:09Z 2009-05-12T14:09:50Z <p><strong>Inspect and Adapt.</strong><br /> <strong>No Silver Bullet</strong> </p> <p>There is no magic serum to make teams successful just because they're using Scrum/XP/Agile et.all ; Find your bottlenecks and eliminate them one at a time</p> <p><strong>Update</strong>: Some feel my answer isn't helpful enough. I claim 'agile scars' have left me this way - (Put on my helpful hat) Maybe you should read <a href="http://www.crisp.se/henrik.kniberg/ScrumAndXpFromTheTrenches.pdf" rel="nofollow">Scrum and XP from the trenches</a></p> http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices/851329#851329 2 Answer by Jim Ferrans for Scrum and Extreme Programming (XP) : Best Practices Jim Ferrans 2009-05-12T05:58:25Z 2009-05-12T05:58:25Z <p>Scrum is the Agile process for project management, and so it doesn't have an impact on code quality other than its tight focus on always having a potential deliverable system at the end of each 2-4 week "sprint". By keeping sprints short and getting daily feedback, the project manager gets a much better sense of how much effort new features take to implement, and the team gets a good feel for the relative importance of each new feature. </p> <p>You still have to do the hard work of programming. There are many great books on this (such as McConnell's <a href="http://cc2e.com/" rel="nofollow">Code Complete</a>, and Hunt and Thomas's <a href="http://www.pragprog.com/the-pragmatic-programmer" rel="nofollow">The Pragmatic Programmer</a>) and you should study them carefully and apply them to your work.</p> http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices/851405#851405 1 Answer by Brian Rasmussen for Scrum and Extreme Programming (XP) : Best Practices Brian Rasmussen 2009-05-12T06:24:13Z 2009-05-12T06:24:13Z <p>Both The Pragmatic Programmer (as mentioned by Jim Ferrans) and <a href="http://rads.stackoverflow.com/amzn/click/0132350882" rel="nofollow">Clean Code</a> are excellent resources for the agile programmer. You may also want to take a look at the books in the extreme programming series. </p> http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices/851456#851456 7 Answer by Bedwyr Humphreys for Scrum and Extreme Programming (XP) : Best Practices Bedwyr Humphreys 2009-05-12T06:43:19Z 2009-05-12T21:06:10Z <p>Scrum has nothing to say about programming.</p> <p>In my opinion you can not be 'agile' without the software engineering practices that allow you, at a technical level, to respond quickly to change: incremental design, unit and acceptance testing, refactoring, continuous integration, collective code ownership. </p> <p>This is on top of all the other things that are needed, such as a high level of involvement from your customers and effective communication within the team and out.</p> <p>Along with the other books mentioned here, <a href="http://rads.stackoverflow.com/amzn/click/0596527675" rel="nofollow">The Art of Agile Development</a> by James Shore and Shane Warden is the best book on agile software development out there.</p> <p>[edit] Some links to sources other people have mentioned here:</p> <p><a href="http://martinfowler.com/articles/continuousIntegration.html" rel="nofollow">Continuous integration</a></p> <p><a href="http://martinfowler.com/books.html#refactoring" rel="nofollow">Refactoring</a></p> <p><a href="http://www.crisp.se/henrik.kniberg/ScrumAndXpFromTheTrenches.pdf" rel="nofollow">Scrum and XP from the Trenches</a> by Henrik Kniberg <a href="http://www.infoq.com/presentations/Fail-Scrum-Henrik-Kniberg" rel="nofollow">(great presentation on infoq.com)</a></p> http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices/851523#851523 1 Answer by Artem Russakovskii for Scrum and Extreme Programming (XP) : Best Practices Artem Russakovskii 2009-05-12T07:10:35Z 2009-05-12T12:31:45Z <p>Each individual developer, his/her style, skills, and desire to always soak in new information have as much to do with the quality of the code and success of the final product as the development process.</p> <p>If you don't have the right people, no PM technique will help you. Find the right people first, people that can produce good code separately, and only then worry about combining them in a team effort. One individual can undermine the whole team's effort.</p> <p>On a side note, one thing I hate about SCRUM is the daily standup meeting. Yarrr.</p> http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices/852583#852583 0 Answer by Garrett for Scrum and Extreme Programming (XP) : Best Practices Garrett 2009-05-12T12:45:52Z 2009-05-12T12:45:52Z <p>In addition to agile/scrum, I recommend the following (some ideas must be implemented by management... so good luck):</p> <ul> <li>analysis and discussion with others before a line of code is written; this includes bringing in the pertinent devs <em>and</em> non-devs</li> <li>code reviews before check-in (this can be mandatory in TFS &amp; other source control systems)</li> <li>encourage free flow of ideas organizationally (lead by example); never punish someone for sharing their thoughts (well, w/in reason), as doing so contradicts the free flow of ideas that companies more agile (and more profitable)</li> <li>establish a "senior" or "architect" position for a dev, possibly hired from outside, who is extremely competent but who is also not bashful about pushing back on management for the sake of good s/w architecture, avoidance of "features" that compromise long-term extensibility, etc.</li> </ul> http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices/852624#852624 0 Answer by Harnod for Scrum and Extreme Programming (XP) : Best Practices Harnod 2009-05-12T12:53:07Z 2009-05-12T16:58:51Z <p>Krish, what is your position? a team manager? I found that the best thing to do as a Scrum team leader is to place a problem before the team and let the team come up with a solution. For example, we were always off target at the end of the sprint. So, in one post sprint review, I placed the question "give me the number of hours that represents the capacity of our team for the sprint". There were three results:</p> <ul> <li>we had never been closer to meeting our mark </li> <li>the number was higher than my estimation :-))</li> <li>all team members put in an extra effort</li> </ul> <p>We are using software tools (OnTime in our case) to keep track of all important measures and debate our statistics after each sprint. Also, we have a practice of changing at least one thing in each sprint.</p> <p>Hope this helps, please feel free to ask for more</p> <p>Matej</p> http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices/853661#853661 1 Answer by Cam Wolff for Scrum and Extreme Programming (XP) : Best Practices Cam Wolff 2009-05-12T16:27:27Z 2009-05-21T03:15:36Z <p>SCRUM practices are suitable for collobaration and prioritization with the product owner. However, by itself, SCRUM will not eanable sustainable pace by the development team. </p> <p>The XP focus is on engineering practices Practices such as test driven development (TDD), shared code base, simple &amp; evolutionay design, paired programming, automated testing, continuous integration, technical debt etc. </p> <p>Of all the engineering practices, TDD is hardest to learn and in general, the engineering practices have a higher learning curve than the management (SCRUM) practices. However, without the engineering practices the code will come to a point where you will not be able to maintain velocity. The reasons being is the code will take to longer and longer to test and become to fragile to change. </p> <p>If you are going to take on the engineering practices, it is best to embed into the team a technical or engineering coach. The coach would provide intro training for each practices and through pairing quickly propogate the practices through the team.</p> <p>SCRUM and XP are a great match. Some research shows that combining SCRUM and XP results in the most effective agile teams. Given that each focus is distinct yet complementary, you will be wise to use both SCRUM and XP on any of your agile teams.</p> http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices/854193#854193 4 Answer by Assaf Stone for Scrum and Extreme Programming (XP) : Best Practices Assaf Stone 2009-05-12T18:35:56Z 2009-05-12T19:27:29Z <p>Scrum is an agile <strong>project management</strong> methodology. It does not address the practices required to create "goods" of any kind, but instead gives us the <em>process</em> that will take us from the inception of a vision to the final product, regardless of the actual development process. The Scrum process doesn't tell you <em>how</em> to create quality. It shows you what the quality is, where your problems are, and challenges you to fix them.</p> <p>Extreme programing is an agile <strong>software development</strong> methodology. It gives us a process with which to create software in an agile and productive way. It deals with, though doesn't specialize in the <em>management</em> of the development process, and focuses mostly on the <em>engineering practices</em> required to deliver software, with quality.</p> <p>When adopting Scrum for the purpose of software development, the engineering practices are imported from an agile software development practices, most often from XP. These practices, are those that can be adopted in a manner that is decoupled from the rest of the development practices. Most often, these practices are: <strong>Test-Driven Development, Refactoring, &amp; Pair Programming, and User Stories</strong>, though by no means are these required in Scrum, or the only way to do things (just highly recommended). <a href="http://www.agilemodeling.com/" rel="nofollow">Agile Modeling</a> is another common source of agile engineering practices.</p> <p>So in short, when mixing Scrum and XP, which is by far the most common mix, you use all of Scrum's management artifacts, e.g. Sprints, daily Scrums, retrospectives, burn down charts, and so on, and add XP's TDD, refactoring, pair-programming and JIT design via User Stories.</p> <p>Of course, Scrum being Scrum, this is how you start, and you constantly adapt (refactor, if you will) the process to answer your organization's specific needs.</p> http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices/864961#864961 1 Answer by GuinnessFan for Scrum and Extreme Programming (XP) : Best Practices GuinnessFan 2009-05-14T18:31:38Z 2009-05-14T18:31:38Z <p>You are writing bad code because:</p> <ol> <li>Your team doesn't know how.</li> <li>No one in authority checks, approves requires good code.</li> <li>You're not given enough time?</li> <li>Too much reliance on poor legacy code.</li> <li>Not give proper tools (Source control, development environment, communications, etc.)</li> </ol> <p>I'm not sure any of these have to do with Agile/Scrum.</p> http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices/865462#865462 0 Answer by Frank for Scrum and Extreme Programming (XP) : Best Practices Frank 2009-05-14T20:12:04Z 2009-05-14T20:12:04Z <p>What do you mean 'good code'? Why is good code important? Are you talking about maintainability - does this need good code or good documentation? Are you talking about reliability - does this need good code or good tests and documented requirements? Etc</p> <p>Use common sense, establish rational systems of criteria and assessments, try to ignore unsubstantiated claims of success attributed to some technique or tool.</p> http://stackoverflow.com/questions/851254/scrum-and-extreme-programming-xp-best-practices/1103127#1103127 1 Answer by borjab for Scrum and Extreme Programming (XP) : Best Practices borjab 2009-07-09T10:40:13Z 2009-07-09T10:40:13Z <p>Have a look at <a href="http://jamesshore.com/Blog/Scrum-XP-Practices-Cross-Reference.html" rel="nofollow">this matrix</a> of good practices comparing SCRUM and XP made by James Shore. By the way I found his <a href="http://jamesshore.com/Agile-Book/" rel="nofollow">book</a> quite usefull if you want to understand XP. There are also some <a href="http://jamesshore.com/index.abstract" rel="nofollow">articles</a> that may give you an idea of some of thouse practices.</p>