active questions tagged agile - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T14:12:24Z http://stackoverflow.com/feeds/tag/agile http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/687509/information-knowledge-flow-within-the-team 4 Information/knowledge flow within the team Henryk Konsek 2009-03-26T20:51:09Z 2009-12-20T08:53:52Z <p>I want to avoid the situations when my developers do not share the common knowledge (solutions for the problems they encountered, cool tips, common mistakes, shortcuts for achieving particular goal, configuration issues, partial requirements, etc.) with each others. I'm taking about the situation when such lack of communication is accidental (a result of the misunderstanding or improper management) - I'm not thinking about the situations when developers deliberately keep the knowledge for themselves.</p> <p>I believe that the following techniques are extremely useful to improve the information flow within the developers team:</p> <ul> <li>XP pair programming - due to the knowledge exchange within the pair (and due to the regular pair mixing).</li> <li>stand-up meetings - due to the occasion to tell the others on what you're working on and what problems you encountered.</li> <li>trainings/presentations/coaching prepared by the lead-developers to the rest of the team/department.</li> <li>"web 2.0 tools" - techie blogs for the company/department, dedicated twitter account of team leader, wiki's and stuff like that.</li> </ul> <p>Any further ideas? What techniques do you use (or did you) in your company? How would you encourage developers to share the knowledge between themselves?</p> http://stackoverflow.com/questions/1871110/agile-myths-and-misconceptions 7 Agile Myths and Misconceptions Varuna 2009-12-09T01:37:42Z 2009-12-18T22:34:55Z <p>What are the myths or misconceptions related to Agile?</p> <p>There are lot of misconceptions related to Agile that an average new comer may fall into. What are the misconceptions in the Agile world and how do you justify that it is truly a misconception?</p> <p><hr></p> <p><strong>Update: Summary of Agile Myths</strong></p> <ul> <li>Agile doesn't allow documentation</li> <li>Agile methods do not scale</li> <li>Agile means no plan</li> <li>TDD covers all the unit testing needs</li> <li>Pair programming always results in better code</li> <li>Agile is a silver bullet solution to software engineering problems (There is a silver bullet solution)</li> <li>Agile doesn't need up front design</li> <li>We're doing scrum so we don't need to do TDD, Refactoring Pair Programming, etc.</li> <li>One can learn Agile from a book</li> <li>Agile only works for trivial projects</li> <li>Agile always uses "User Stories"</li> </ul> <p>Read the following answers for more information about above myths and for more myths.</p> http://stackoverflow.com/questions/1919722/code-review-documentation-in-agile-projects 0 Code Review Documentation in Agile Projects unknown (yahoo) 2009-12-17T05:53:08Z 2009-12-17T18:41:09Z <p>Hi,</p> <p>The organization I work with, a large Indian outsourcing company, enforces documentation of code review comments. The rationale is that this gives the team insight into the quality of code development and also understanding of the patterns of the problems encountered. This is checked during the regular project audits that we have.</p> <p>The problem is that it takes a lot of effort and time to document the comments and track them to closure, especially for a complex project that has various layers like client/Web services and database.</p> <p>How does this fit with the principles of Agile methodology? What is your experience and opinion?</p> http://stackoverflow.com/questions/55693/how-do-you-use-fogbugz-with-an-agile-methodology 8 How do you use FogBugz with an Agile methodology? Kevin Wong 2008-09-11T02:29:25Z 2009-12-17T15:35:04Z <p>"Evidence-based scheduling" in FogBugz is interesting, but how do I use it w/ an Agile methodology?</p> http://stackoverflow.com/questions/1907610/examples-of-using-doctests-in-django-in-an-agile-bdd-way 1 Examples of using Doctests in Django in an Agile / BDD way BryanWheelock 2009-12-15T13:51:49Z 2009-12-17T00:13:24Z <p>I'm interested in learning how to Doctests and Unit tests in a more Agile / BDD way. I've found a few tutorials that seem reasonable, but they are just thumbnails. What I would really like to see is the source code of some Django projects that were developed BDD style.</p> <p>The things I'm unclear about are how do you handle request objects etc. I have a situation where I have deployed my app and I'm getting completely different behavior in production that I did in development or even from the Python shell on the production server. I'm hoping some Doctests will help me diagnose this and well as open the door for a more Agile process of writing the tests first.</p> <p>Specifically, here is the code I'm trying to test:</p> <pre><code>def match_pictures_with_products( queryset, number_of_images = 3): products = [] i = 0 for product in queryset: if i &lt; ( number_of_images ): image = product.imagemain_set.all()[:1] product.photo_url = image[0].photo.url products.append(product) i += 1 return products def index(request): """returns the top 10 most clicked products""" products = Product.objects.all()[:10] products = match_pictures_with_products( products, 10) . return render_to_response('products/product_list.html', {'products': products}) </code></pre> <p>How do I create a Doctest that ensures that index returns 10 objects?<br> The Product queries seem to work fine from the shell on the production server. The actual server is not returning any products at all.</p> http://stackoverflow.com/questions/1909674/iso-public-django-apps-developed-agile-bdd-style-with-doctest-unitests-and-sel 0 ISO public Django apps developed Agile / BDD style with Doctest, Unitests and Selenium BryanWheelock 2009-12-15T19:12:55Z 2009-12-15T20:47:11Z <p>I've found several blog posts where TDD/BDD is explained, but the examples are usually really basic. Usually they are just for Models. I want to see how people are really using BDD in Real Life.<br> I'd love be pointed towards some Django apps that were built test first style so I can learn from them.</p> <p>I know that Rails had many examples, surely Django has a few examples too.</p> http://stackoverflow.com/questions/1528834/what-can-a-single-developer-learn-from-scrum 6 What can a single developer learn from Scrum? Tom Dalling 2009-10-07T00:13:39Z 2009-12-15T12:51:11Z <p>Let's say that a developer is interested in learning Scrum, but nobody else on the team is interested. I realize that Scrum is made for teams, and the process would have to be modified to fit a single person.</p> <p>Is there any benefit to be gained by the developer trying Scrum, even if the team doesn't? If so, how would the process be modified to suit the situation?</p> http://stackoverflow.com/questions/1786337/how-do-you-estimate-an-agile-project-up-front 3 How do you estimate an agile project up front? mrcarter 2009-11-23T21:59:24Z 2009-12-14T17:01:15Z <p>When working on fixed price software development projects, I frequently find myself having to estimate the total number of hours a project will take after the price is set, but before the work is started (or VERY early on in the development). Unfortunately, these types of projects are best developed using an iterative/agile method, which means that we don’t (and really can’t) do a complete up-front design. </p> <p>In a typical scenario, we would have a contract that has X features and Y dollars. After contracting, the engineering department would then need to estimate the number of hours required to complete the X features. There are several possible reasons to need this information up front, including:</p> <p>• The Y dollars translates to Z hours available, so we have to make sure that time(X)&lt;=Z, perhaps by reducing the scope of X.</p> <p>• The delivery date is set, and so we have to assign the appropriate resources to meet that date.</p> <p>Kelly Waters has an interesting take on estimating agile here: <a href="http://www.agile-software-development.com/2009/04/agile-estimating.html" rel="nofollow">http://www.agile-software-development.com/2009/04/agile-estimating.html</a> Unfortunately, these are estimations of difficulty, using a points system, and do not translate to hours. </p> <p>It seems to me that we need to be able to do one of two things:</p> <p>• Obtain contracts that have a huge amount of flexibility in them to accommodate an agile development process.</p> <p>• Figure out how to provide reasonably accurate up-front estimates for features that have not yet been designed.</p> <p>The first option is of course not an option in most cases. Does anyone have any advice/guidance on how to generate up-front estimates in an agile development scenario?</p> <p>Alternatively, does anyone see another option for solving our problem through some other process change?</p> http://stackoverflow.com/questions/1894361/agile-scrum-developement-how-do-you-handle-off-day 5 Agile/Scrum developement: How do you handle "off" day? ShaChris23 2009-12-12T18:54:11Z 2009-12-14T00:15:06Z <p>Agile/Scrum development is a very collaborative development process. e.g. it requires developers to continuously communicate &amp; work closely together day-in day-out.</p> <p>How do you handle your "off" days? Those days that you just don't have energy, can't think straight, don't really have anything to say at the standup meetings, etc.</p> <p>Just like how athletes have their off days.</p> http://stackoverflow.com/questions/1876792/are-there-any-resources-similar-to-katacasts-com 2 Are there any resources similar to katacasts.com? Erik Öjebo 2009-12-09T20:49:24Z 2009-12-13T10:45:13Z <p>I recently discovered <a href="http://www.coreyhaines.com/" rel="nofollow">Corey Haines</a> great site <a href="http://www.katacasts.com/" rel="nofollow">katacasts.com</a>, and I find it to be an excellent learning resource as well as a source of inspiration.</p> <p>Are there any other sites where I can find videos of people performing katas?</p> http://stackoverflow.com/questions/1640911/role-of-testers-in-agile 14 Role of Testers in Agile? Doldrim 2009-10-29T00:03:00Z 2009-12-12T23:12:36Z <p>I work in a team which has been doing the traditional waterfall method of development for many years. Recently, we've been told that future projects are going to be moving towards an agile (particularly Scrum) methodology. It so happens that my project will be one of the first, so we will essentially be guinea pigs for the next few months to iron out what it takes to make the transition.</p> <p>The project itself is in a very early stage and we would usually be many months away from releasing anything to the testing team, but now we are going to be working directly with them up front. As a result, I'm concerned as to the role of the testers in such a project at this stage. I have several questions/concerns which hopefully some experienced agile developers could answer:</p> <ol> <li>While a developer is coding a task, it is impossible for a tester to test it (it doesn't exist yet). What then is the role of a tester at this point</li> <li>Is the tester now involved in unit testing? Is this done parallel to black box testing?</li> <li>What does the tester do during a sprint where primarily infrastructural changes have been made, that may only be testable in unit testing?</li> </ol> <p>How do the traditional test team members function in your agile project?</p> http://stackoverflow.com/questions/1892510/agile-development-and-architecture 3 Agile development and architecture Creative2567 2009-12-12T06:02:34Z 2009-12-12T14:27:13Z <p>How does a formal architecture specification fit in with agile development - if at all? </p> <p>I'm thinking specifically of Scrum, which makes no mention of an architecture amongst the official artifacts. </p> <p>Do you just let the architecture evolve "accidentally" (so to speak), do you spec it informally, or is there room for doing something like a 4+1 spec up front, before assembling your first product backlog?</p> http://stackoverflow.com/questions/1891742/dual-bandwidth-agile-team 3 Dual bandwidth agile team? Sean Chambers 2009-12-12T00:29:52Z 2009-12-12T03:15:33Z <p>I'm trying to figure out how to solve some challenges that my team is facing while attempting to apply agile. The one that is causing the biggest headache at the moment is due to the dual role nature of projects that come into the business.</p> <p>Basically, we have a number of software that we produce and deploy for various markets. This software is planned and scoped in quarterly release cycles. At the same time we have large contracts come through that take anywhere from 1-3 months to complete. The problem comes from the fact that management wants to work on the incoming contracts first and foremost and all normally scheduled release work is brushed aside to get the next contract out the door.</p> <p>We're trying to scope the releases to shorter than 3 months so that a contract would have to wait that long for work to begin.</p> <p>Has anyone dealt with a scenario like this while trying to apply agile? What are some ideas/approaches to working on release scoped/planned work and keeping management happy that high priority contracts are being delivered in a timely manner?</p> http://stackoverflow.com/questions/1890935/has-agile-methodology-produced-any-complex-products-not-projects-that-have-ship 1 Has Agile methodology produced any complex products (not projects) that have shipped for more than 3 years? [closed] dh1r 2009-12-11T21:19:15Z 2009-12-11T21:49:55Z <p>Can you point to any one product from a serious product development firm (Microsoft, Oracle, Veritas, etc), that has been shipped for more than 3 years and was built from the ground up using a pure Agile development process? I would like to neglect web related products and database front ends for the purposes of this poll, because the development problem domain seems repeated over products and hence requires less design. I would like to know particularly about networking software products, since that is what we are building.</p> <p>Our team is considering moving to Agile, and the idea of not having any design documentation in place (pre or post implementation) seems counter-productive to me. For two reasons, I think this would not work:</p> <p>i) Software is complex and you need to put significant thought into building something - resulting in at least a high level design doc where I come form - before you start listing tasks and estimating time for their completion.</p> <p>ii) Attrition is real. New team members can fix more bugs, and design new features better if there is documentation that captures the thought process that created the existing features feature.</p> <p>So, if someone can provide some examples of real world products that have been built using Agile and are still in the game three years hence, I would be very grateful.</p> <p>Thanks, Dh1r</p> http://stackoverflow.com/questions/1886757/scrum-and-story-points-why-ideal-man-days-not-ideal-man-hours 1 Scrum and Story Points - why ideal man-days not ideal man-hours? Michal Czardybon 2009-12-11T09:06:14Z 2009-12-11T12:25:47Z <p>I am used to thinking about time estimates in the way suggested by Joel Spolsky - that if a scheduled item takes more than 16 hours, it should be divided into smaller tasks. Now, I am implementing Scrum in my team together with Story Points based estimations. It seems to me that a good unit for a Story Point would be ideal man-hour, not man-day. If I used days, most of my issues would have estimates 1/2 or 1.</p> <p>Do you have any idea, why the use of ideal man-days is mentioned most often in the Scrum literature?</p> http://stackoverflow.com/questions/1062620/psp-vs-agile-which-one-is-better-for-medium-team-5-10-developer 0 PSP vs Agile which one is better for medium team (5 - 10 developer) Ekkapop 2009-06-30T09:10:36Z 2009-12-11T01:55:18Z <p>Now I need to study about PSP (Personal Software Process) and Agile, then compare it pros and cons. </p> <p>I have some knowledge of Agile but very little with PSP. I want to know from anyone who have experience with these 2 methodology and which one is suite for my team size.</p> http://stackoverflow.com/questions/91257/scrum-burndown-issues 12 Scrum Burndown issues Si Keep 2008-09-18T09:42:53Z 2009-12-10T23:06:41Z <p>We have been using Scrum for around 9 months and it has largely been successful. However our burndown charts rarely look like the 'model' charts, instead resembling more of a terrifying rollercoaster ride with some vomit inducing climbs and drops.</p> <p>To try and combat this we are spending more time before the sprint prototyping and designing but we still seem to discover much more work during the sprint than initially thought. Note: By this I mean the work required to meet the backlog is more involved than first thought rather than we have identified new items for the backlog.</p> <p>Is this a common problem with Scrum and does anyone have any tips to help smooth the ride?</p> <p>I should point out that most of our development work is not greenfield, so we are maintaining functionality in an existing large and complex application. Is scrum less suited to this type of development simply because you don't know what problems the existing code is going to throw up?</p> <p>Just how much time should we be spending before the sprint starts working out the detail of the development?</p> <p>UPDATE: We are having more success and a smoother ride now. This is largely because we have taken a more pessimistic view when estimating which is giving us more breathing space to deal with things when they dont go to plan. You could say its allowing us to be more 'agile'. We are also trying to change the perception that the burn down chart is some kind of schedule rather than an indication of scope v resources.</p> http://stackoverflow.com/questions/155250/help-me-understand-how-qa-works-in-scrum 6 Help me understand how QA works in Scrum MrJeepster 2008-09-30T21:50:13Z 2009-12-10T23:00:16Z <p>Apparently we use the Scrum development methodology. Here's generally how it goes: </p> <p>Developers thrash around trying to accomplish their tasks. Generally the tasks take most of the sprint to complete. QA pesters Dev to release something they can test, Dev finally throws some buggy code out to QA a day or two before the sprint ends and spends the rest of the time fixing bugs that QA is finding. QA can never complete the tasks on time, sprints are rarely releasable on time, and Dev and QA have a miserable few days at the end of the sprint.</p> <p>How is scrum supposed to work when releasable Dev tasks take up most of the sprint? </p> <p>Thank you everyone for your part in the discussion. As it's a pretty open-ended question, it doesn't seem like there is one "answer" - there are many good suggestions below. I'll attempt to summarize some of my "take home" points and make some clarifications.</p> <p>(BTW - Is this the best place to put this or should I have put it in an 'answer'?)</p> <p>Points to ponder / act on:</p> <ul> <li>Need to ensure that developer tasks are as small (granular) as possible.</li> <li>Sprint length should be appropriately based on average task length (e.g. sprint with 1 week tasks should be at least 4 weeks long)</li> <li>Team (including QA) needs to work on becoming more accurate at estimating.</li> <li>Consider doing a separate QA sprint in parallel but off-set if that works best for the team</li> <li>Unit testing!</li> </ul> http://stackoverflow.com/questions/291630/does-pair-programming-work 35 Does pair programming work? Mnementh 2008-11-14T22:20:13Z 2009-12-10T09:00:08Z <p>At our company, we the developers tried some methodologies to be more productive. One thing we could not try was Pair Programming. The reason is, that we are a small company and have only few programmers (and more non-programmers). So it would be impossible to explain to our boss, that two programmers sit at the same computer and solve together the same task. Usually we all even work on different projects.</p> <p>So I'm interested in your experiences: Does Pair programming work? I mean, does it make a team more productive? Clearly the two are more effective, than only one programmer working on the task. But does the pair can complete the project faster than the two programmers working both on the project, but with different tasks and different computers?</p> http://stackoverflow.com/questions/920992/unit-test-adoption 28 Unit test adoption Burt 2009-05-28T14:00:20Z 2009-12-10T07:20:43Z <p>We have tried to introduce unit testing to our current project but it doesn't seem to be working. The extra code seems to have become a maintenance headache as when our internal Framework changes we have to go around and fix any unit tests that hang off it.</p> <p>We have an abstract base class for unit testing our controllers that acts as a template calling into the child classes' abstract method implementations i.e. Framework calls Initialize so our controller classes all have their own Initialize method.</p> <p>I used to be an advocate of unit testing but it doesn't seem to be working on our current project.</p> <p>Can anyone help identify the problem and how we can make unit tests work for us rather than against us?</p> http://stackoverflow.com/questions/1584294/are-there-any-web-apps-that-do-user-stories-cards 1 Are there any web apps that do user stories cards? nc 2009-10-18T07:51:09Z 2009-12-09T17:26:16Z <p>We do distributed agile development and could really us a solution like story cards on a wall/board, only on a webpage where you could easily drag and drop them. Any suggestions? Thanks. </p> http://stackoverflow.com/questions/1870738/when-to-perform-spikes-in-agile 0 When to perform spikes in agile Sean Chambers 2009-12-08T23:58:32Z 2009-12-09T17:23:46Z <p>At my current company I have started to bring in agile practices and we're off to a good start. We're through our first release and are soon starting on our second release. While management has agreed not to introduce any new work during an iteration, scoping the release/feature planning is an ongoing work in progress. That being said, I'm finding we're struggling on where/when to fit spikes that need to be performed during an iteration for the following iteration.</p> <p>At the current moment in time, Management/Project managers are gathering spikes and giving each relevant developer the required spike at the beginning of an iteration with the notion that the developer will produce tasks for the spike by the following wednesday so the work can get scheduled into the following iteration.</p> <p>While this works, it seems as if there is a better way to gather requirements around the spikes. How is everyone else scheduling the time to perform the spikes? We don't schedule all of a developers 80 hours for an iteration, so there is a little breathing room for meetings/e-mail/spikes etc..</p> <p>That being said, I want to make sure management isn't asking for spikes unless they <em>know</em> that the work is going to be performed the following iteration. A couple times they asked for a number of spikes only to not schedule the work to be performed.</p> <p>Any suggestions would be greatly appreciated!</p> http://stackoverflow.com/questions/1584187/agile-xp-and-layered-approach 0 Agile/XP and Layered approach JMSA 2009-10-18T06:43:06Z 2009-12-09T06:28:42Z <p>Can Agile/XP go together with layered approach?</p> <p>Should Agile/XP go together with layered approach?</p> <p>Breaking the source code into layers requires extra efforts and thereby increases the development-time significantly.</p> <p>N.B : By 'Layers' I mean separate assemblies with POCO, DA, etc.</p> http://stackoverflow.com/questions/126955/favorite-agile-related-books 11 Favorite agile related books? RoyOsherove 2008-09-24T12:57:28Z 2009-12-08T05:05:20Z <p>From implementing Scrum in an organization to Test Driven Development, what books would you recommend for beginners, advanced and trainers in Agile development methodologies?</p> http://stackoverflow.com/questions/1838789/how-to-motivate-stake-holders-to-test-the-sprint-delivered-software 4 How to motivate stake holders to test the sprint delivered software Hugo Palma 2009-12-03T09:37:03Z 2009-12-06T12:50:57Z <p>One recurring problem we have in projects is the fact that the stake holders only start looking properly into the delivered software until the near the final release date even though we deploy the sprint result into the test environment every time and demo from it and keep reminding them that it's really important to get their feedback during the execution of the project and not only when the release end approaches.</p> <p>Even with all this, we usually get only a couple of issues reported every sprint and 10 times more issues reported when the release is about to finish.</p> <p>Any ideas on how we could motivate our stake holders to get more involved in testing during the whole project and not just when the deadline approaches ?</p> http://stackoverflow.com/questions/1830860/which-groups-should-participate-in-agile 4 Which groups should participate in Agile? jacob 2009-12-02T05:39:50Z 2009-12-06T12:10:15Z <p>In my company we have the programmers, front end developers, designers, and UX team all participate in Agile groups. I am no Agile master but I understood that all members of a team should be able to be able to do any of the work. Having designers, the UX team, frond end developers, and sys admins join in on a vote to estimate how long a backend task will take seems crazy to me. I barely know! So my question is am I being too harsh? Can this work in an Agile environment?</p> http://stackoverflow.com/questions/1561984/best-kanban-tools 2 Best Kanban Tools Michael Dubakov 2009-10-13T18:11:03Z 2009-12-05T05:05:46Z <p>What tools for managing Kanban would you recommend?</p> http://stackoverflow.com/questions/1838544/how-to-stay-dry-do-not-repeat-yourself 14 How to stay DRY? Do Not Repeat Yourself! hagope 2009-12-03T08:43:16Z 2009-12-04T22:17:56Z <p>I find that one of the most frustrating aspects to software development is finding a solution to a problem, forgetting it, then being faced with the same issue in the future only to forgot how you previously solved it. Or to write a useful bit of code, then on a later project not be able to find this code.</p> <p>My general question is this: <strong>How do you keep track of all the new things you learn each day while programming?</strong> Does anyone have a systematic way to capture knowledge and easily and efficiently apply it in the future?</p> <p>UPDATE: Thanks the for the responses, here's what you came up with:</p> <p><strong>Social</strong></p> <ul> <li>Stackoverflow</li> <li>Tumblr</li> <li>Twitter</li> <li>Evernote</li> <li>Blogs/Wikis</li> </ul> <p><strong>Code Repositories</strong></p> <ul> <li>Github</li> <li>Unfuddle</li> <li>LaunchPad</li> <li>Google Code</li> </ul> <p><strong>Desktop</strong></p> <ul> <li>Dropbox</li> <li>Yojimbo (mac)</li> <li>VoodooPad (mac)</li> <li>Wikidpad (win)</li> <li>Surfulater</li> </ul> http://stackoverflow.com/questions/1807100/kanban-scrum-boards 13 Kanban/Scrum Boards Jon 2009-11-27T06:30:07Z 2009-12-04T16:12:00Z <p>I'm curious as to what other people use for physical Kanban/Scrum boards in their companies. I appreciate that because of sensitive business information you may not be able to provide a photo of the board. I"m looking at to find out <strong>what does your board looks like</strong>, and <strong>how you organize user stories and tasks</strong> as they move through a typical sprint/iteration?</p> <p>Typically I've worked in a places that organize the board as follows with each </p> <pre><code>User Story | Todo | In Progress | Ready for QA | Done | UC-001 | Domain Object, Service | DAO(Bob) | | | UC-002 | Payment UI Screen | | Payment Srv (Don)| | UC-003 | | | UC-003 | | | | | | UC-004 | | | | | UC-005 | </code></pre> <p>So to summarise:</p> <ul> <li>A task for UC-001 is in progress by one member of the team (Bob). A list of tasks for other people to pick up are waiting in the Todo column, but this can be picked up by another member of the team who co-ordinate with Bob to get the work done.</li> <li>For UC-002 the payment service task was completed and an automated test harness was completed for QA allowing them to test the service without a UI. If the test fails a bug is raised and moved along with the Payment Service task back into the QA phase</li> <li>All the tasks for UC-003 was completed and moved to Ready for QA.</li> <li>All the tasks for Uc-004 and UC-005 were complete so the user story was moved to Done. </li> </ul> <p>This works as a tangible white board that involves people interacting with each of the tasks/user stories (represented as post it notes). An electronic version is created prior to the sprint/iteration and is only updated at the end of the sprint/iteration corresponding to the current situation. Comments and criticism are welcomed : )</p> http://stackoverflow.com/questions/1181967/an-idea-about-developing-an-agile-wall-web-tool 1 An idea about developing an agile wall web tool unknown (google) 2009-07-25T12:00:10Z 2009-12-04T14:04:01Z <p>Hi folks,</p> <p>I'm thinking about developing a web app to visualize the agile wall. The reason is that the project I'm working in has multiple distributed teams, so it is very difficult to share the information on the agile wall across the teams. I know some tools like JIRA do have agile wall functionality built in, what I want to have is a dedicated agile wall web app which could potentially integrate with those popular project management systems. </p> <p>Does this idea sound sensible and interesting to you? Please let me know if you get better idea about sharing the agile wall across distributed teams.</p> <p>Thanks. John</p>