User adrianh - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T17:46:48Z http://stackoverflow.com/feeds/user/13165 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1515113/how-can-i-run-individual-tests-with-testclassload/1531027#1531027 1 Answer by adrianh for How can I run individual tests with Test::Class::Load? adrianh 2009-10-07T11:22:31Z 2009-10-07T11:22:31Z <p>Congratulations on spotting the mistake in the documentation :-) </p> <p>The final argument should be the path to the test class - not the package name. You'll also need to add the path to the test class libraries so prove can find them Doing:</p> <pre><code> prove -lv -It/lib t/lib/SG/UtilsTest.pm </code></pre> <p>should work.</p> http://stackoverflow.com/questions/49652/are-there-any-good-automated-test-suites-for-perl/74897#74897 2 Answer by adrianh for Are there any good automated test suites for Perl? adrianh 2008-09-16T17:38:06Z 2008-11-22T09:46:35Z <p>Hi,</p> <p>You said:</p> <blockquote> <p>"What I am looking for is a more of automated framework which can do incremental testing/build checks etc"</p> </blockquote> <p>Still not entirely sure what you're after. As others have mentioned you want to look at things that are based on Test::Harness/TAP. The vast majority of the Perl testing community uses that framework - so you'll get much more support (and useful existing code) by using that.</p> <p>Can you talk a little more about what you mean by "incremental testing/build checks"?</p> <p>I'm guessing that you want to divide up your tests into groups so that you're only running certain sets of tests in certain circumstances?</p> <p>There are a couple of ways to do this. The simplest would be to just use the file system - split up your test directories so you have things like:</p> <pre> core/ database.t infrastructure.t style/ percritic.t ui/ something.t something-else.t </pre> <p>And so on... you can then use the command line "prove" tool to run them all, or only certain directories, etc. </p> <p>prove has a lot of useful options that let you choose which tests are run and in which order (e.g. things like most-recently-failed order). This - all by itself - will probably get you towards what you need.</p> <p>(BTW it's important to get a recent version of Test::Simple/prove/etc. from CPAN. Recent versions have much, much more functionality). </p> <p>If you're of an OO mindset, or have previous experience of xUnit frameworks, than you might want to take a look at Test::Class which is a Perl xUnit framework that's build on top of the TAP/Test::Harness layer. I think it's quite a lot better than PerlUnit - but I would say that since I wrote it :-)</p> <p>Check out delicious for some more info on Test::Class <a href="http://delicious.com/tag/Test::Class" rel="nofollow">http://delicious.com/tag/Test::Class</a></p> <p>If this isn't what you're after - could you go into a bit more detail on what functionality you want?</p> <p>Cheers,</p> <p>Adrian</p> http://stackoverflow.com/questions/253524/whats-a-good-way-to-document-web-page-links-in-a-web-application/257407#257407 0 Answer by adrianh for What's a good way to document web page links in a web application? adrianh 2008-11-02T21:30:31Z 2008-11-02T21:30:31Z <p>From the description of the purpose for the documentation ("I need to check each of the different buttons and functions on each page, and some of these depend on how the user accesses each page") I wonder if it would be a better idea to write the "documentation" in the form of a series of automated tests that would verify that the links exist.</p> <p>Something like <a href="http://selenium.openqa.org/" rel="nofollow">Selenium</a> would be one way you could do this.</p> <p>You'll save yourself a bunch of time in the long run if you were planning to do these sorts of test manually - and have the advantage of and automated suite that's much less likely to get out of sync with the actual app (unlike "paper" documentation like Visio diagrams, etc.)</p> http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/238182#238182 1 Answer by adrianh for Most frustrating programming style you've encountered adrianh 2008-10-26T16:14:30Z 2008-10-26T16:14:30Z <p>I've been dealing with a large chunk of legacy code that's been written in bad Perl by somebody with a Unix shell background. </p> <p>Because of the Unix background they've adopted the convention of using a zero return value as success. Everbody else in the Perl world this evaluates to false. Because of this you have variants of:</p> <pre><code>if (not $success ) { # happy path } else { # failure } </code></pre> <p>everywhere - mixed in with "normal" Perl libraries with the saner convention of false == failure, true == success.</p> <p>Evil.</p> http://stackoverflow.com/questions/212553/what-tools-do-you-design-software-with/212771#212771 0 Answer by adrianh for What tools do you design software with? adrianh 2008-10-17T16:03:16Z 2008-10-17T16:03:16Z <p>Whiteboard, pens, papers, stickies &amp; index cards. Along with being in the same room with the people who understand the business goals.</p> <p>Software - for design work - just slows you down in the vast majority of situations.</p> http://stackoverflow.com/questions/212270/should-application-architects-write-code/212651#212651 7 Answer by adrianh for Should application architects write code? adrianh 2008-10-17T15:29:40Z 2008-10-17T15:29:40Z <p>Every project I've worked on that has included an architect that did not spend a significant portion of their time hands on with the code has had problems because of that absence of hands-on knowledge.</p> <p>That includes the projects where I was that architect :-)</p> <p>It's now a personal big red flag. </p> <p>I agree with all the arguments in favour of architects who code. The arguments against don't hang together well for me.</p> <p>The code needs to abstract the high-level concepts as well as the low in an application. Unless the design and code are integrated at all levels the solution is going to be less than optimal.</p> <p>As for "Coding is a detailed oriented, heads-down funtion which is at odds with the risk management, broad view nature of architecture" - in my experience a broad view - and risk management especially - make for better coders not worse :-) </p> <p>"Architecture is about technical risk management and not implementation" - not it isn't. It's about risk management <em>and</em> implementation (and a bunch of other stuff).</p> <p>"Architecture is about leadership. It's difficult to lead from behind" - why does coding put you behind? Personally I find that the best place to lead is with the people you're working with.</p> http://stackoverflow.com/questions/175454/loops-and-garbage-collection/175476#175476 0 Answer by adrianh for Loops and Garbage Collection adrianh 2008-10-06T18:07:41Z 2008-10-06T18:07:41Z <p>The GC will clean it up.</p> http://stackoverflow.com/questions/173934/html-newspaper-columns/174861#174861 0 Answer by adrianh for HTML newspaper columns adrianh 2008-10-06T15:50:22Z 2008-10-06T15:50:22Z <p>As others have said - not something that's possible with vanilla CSS/XHTML (at least - not until we get widespread CSS3 :-)</p> <p>However, wearing my user experience hat, I'd be interested in your use case for wanting this on a web page (assuming that it's a normal web page that you're targeting). Unlike print splitting a block of text over two columns can make it harder to read. If it's longer than a screen then the user has to do a lot of scrolling up and down to scan/read everything.</p> <p>So - even if you can do it with some JS hacking - might be better to come up with an alternate design that doesn't need it.</p> http://stackoverflow.com/questions/169195/does-scrum-alone-agile/172158#172158 6 Answer by adrianh for Does SCRUM alone = agile? adrianh 2008-10-05T15:43:13Z 2008-10-05T15:43:13Z <blockquote> <p>"I'm hearing about a lot of companies that act like they're agile but the only agile thing > they do is the SCRUM process. Is this enough to be considered agile"</p> </blockquote> <p>Short answer - yes. In my opinion anyway :-)</p> <p>Of course - they have to be actually <em>doing</em> Scrum - rather than just sticking the name on the wall. There's a lot more to Scrum than daily stand-ups... and if that's all they're doing they're not doing it right.</p> <p>Done correctly Scrum forces companies to identify the bottlenecks in how the organisation is running. By setting up regular timeboxed sprints, getting a decent feedback loop, and splitting responsibility across product owner and team appropriately you actually get useful baseline information on how to improve your process.</p> <p>The organisation has to listen to that feedback - and act on it. </p> <p>It's certainly not the only way to do agile. It might not even be the best way to introduce agile into an organisation. I'm more of an XP fan myself - and find that the extra practices provide a useful framework for kick-starting those process improvements. </p> <p>That said - for many organisations - the biggest problem is bad split of responsibilities &amp; the complete lack of a sane and rapid feedback loop. Scrum fixes that out of the gate. </p> <p>Meetings are a very small part of that :-)</p> http://stackoverflow.com/questions/155250/help-me-understand-how-qa-works-in-scrum/172121#172121 1 Answer by adrianh for Help me understand how QA works in Scrum adrianh 2008-10-05T15:14:03Z 2008-10-05T15:14:03Z <blockquote> <p>"How is scrum supposed to work when releasable Dev tasks take up most of the sprint?"</p> </blockquote> <p>As you've found out - it doesn't work terribly well :-) The process you're describing doesn't sound much like Scrum to me - or at least not like Scrum done well.</p> <p>I'm unsure from what you've described whether the QA folk are part of the team - or a separate group. </p> <p>If they're a separate group then this is probably a big part of the problem. They won't be involved in the team's commitment to completion of tasks - and the associated scope negotiation with the product owner. I've never seen an agile group succeed well without their being QA skills in the team. Either by having developers with a lot of testing/QA skills - or by having an embedded QA person or three on the team.</p> <p>If they <em>are</em> on the team then they need to get their voice heard more in the initial sprint planning. By now it should be clear to the product owner and team that you're overcommitting. </p> <p>I'd try a few things if it were me:</p> <ul> <li>Get QA/testing folk on the team if they're not there already</li> <li>Have a good long chat with the product owner &amp; the team over what counts as "done". It sounds like some of the developers are still in the pre-scrum mindset of "handed over to QA"" == done. </li> <li>Break down the stories into smaller chunks - makes it easier to spot estimation mistakes</li> <li>Consider running shorter sprints - because little and more often is easier to track and learn from.</li> </ul> <p>You might also find these <a href="http://stackoverflow.com/questions/91257/scrum-burndown-issues">tips about smoothing down a scrum burndown</a> useful.</p> http://stackoverflow.com/questions/130771/what-tips-do-you-have-to-keep-developers-happy/132769#132769 1 Answer by adrianh for What tips do you have to keep developers happy? adrianh 2008-09-25T11:41:31Z 2008-09-25T11:41:31Z <p>An unordered list consisting of:</p> <ul> <li>Interesting work</li> <li>Enough money</li> </ul> <p>:-)</p> http://stackoverflow.com/questions/116261/software-for-managing-medium-sized-projects/123482#123482 2 Answer by adrianh for Software for managing medium sized projects adrianh 2008-09-23T20:01:36Z 2008-09-23T20:01:36Z <p>Since you seem to have a maximum of six people working in a single room - I'd give serious consideration to not using software at all. </p> <p>A whiteboard &amp; cork board for each project, plus a whole lot of index cards / stickies can go a long, long way towards meeting the project management needs of one or two small projects.</p> <p>(Failing that - I've found basecamp a fairly lightweight tool for small projects - although it doesn't do any sort of source control integration. I've also heard good things about the latest FogBugz - but I've had such bad personal experiences of earlier versions I've not tried it yet myself)</p> http://stackoverflow.com/questions/112046/how-to-deal-with-pair-programming-issues/123417#123417 1 Answer by adrianh for How to deal with pair programming issues? adrianh 2008-09-23T19:54:11Z 2008-09-23T19:54:11Z <p>I'd second muloh's question - what kinds of thing are they having problems with?</p> <p>In my experience these problems are often (but not always) a sign of underlying problems with the team structure / skills / relationships that need to be addressed if you want to get the best out of everybody involved.</p> <p>Is Mary not getting along with Fred because Fred doesn't know enough about how sane folk work with databases? Is Fred not getting along with Jo because Jo doesn't bathe quite as regularly as they ought? Is Jo not getting along with Mary because Mary is a rude SOB? If so you can almost guarantee that Fred, Jo &amp; Mary are also annoying the rest of the team in similar ways.</p> <p>Just coz one or two folk push the issue enough to avoid pairing doesn't mean the problems goes away. It may well be annoying other folk too - they may have alternate ways of coping. Like looking for alternate employment for example :-)</p> <p>If the team doesn't work well together it isn't a team.</p> <p>Out of curiosity - how long are your pairing sessions and how often do you switch pairs? I find that it's sometimes easier to deal with this sort of thing if folk are switching pairs on a regular basis - once or twice a day. That way everybody gets to share the relative pros and cons of everybody on the team - which can help everybody focus on solving some of the cons.</p> http://stackoverflow.com/questions/121806/behaviour-driven-or-test-driven-development/123230#123230 5 Answer by adrianh for Behaviour-Driven or Test-Driven Development? adrianh 2008-09-23T19:28:20Z 2008-09-23T19:28:20Z <p>I'm very much of the BDD = TDD done properly camp. If you're doing TDD as originally described by Beck - and practised by many - then there is essentially no difference.</p> <p>What BDD brings to the table is some interesting variants on the language used to describe the process. By using alternate terminology in the descriptions of the process and the tools BDD folk hope to encourage better practices - a laudable goal.</p> <p>I've been doing TDD for so long now it's hard for me to judge whether this actually helps. I think (hope :-) I've already learned many of the lessons that BDD tools/language encourage so that they don't seem to provide much extra value to me. Of course YMMV - and I've not done a whole "real world" project using BDD tools - so I might be taking my personal experiments and extrapolating too far.</p> <p>I'd <em>guess</em> that BDD tools/language may be more useful to folk being introduced to this way of approaching development - since they avoid the whole confusion with "test" being used in the more traditional sense. I've not done this myself yet - and would be interested if folk here have had any such experience.</p> http://stackoverflow.com/questions/110567/any-good-book-about-software-test-engineering-specifically-targeted-to-programmer/112732#112732 2 Answer by adrianh for Any good book about Software Test Engineering specifically targeted to programmers? adrianh 2008-09-22T01:05:48Z 2008-09-22T01:05:48Z <p>I'd take a look at <a href="http://rads.stackoverflow.com/amzn/click/0471081124" rel="nofollow">Lessons Learned in Software Testing</a>. It's not aimed at developers - but I think it's one of the better books for getting a general overview of what good testers do.</p> <p>As the title suggests it's divided up into nearly 300 separate "lessons" - brief overviews of everything from testing techniques to planning a career in software testing.</p> <p>The only two minor criticisms I could throw at it would be:</p> <ul> <li>since it covers a lot of ground - it can't go into too much detail</li> <li>it mostly predates the changing roles of testers within agile teams</li> </ul> <p>but it's definitely worth a read. It's an excellent book on getting into the mindset of career testers.</p> http://stackoverflow.com/questions/107059/how-much-mathematics-and-physics-should-a-programmer-know/109712#109712 -4 Answer by adrianh for How much mathematics and physics should a programmer know? adrianh 2008-09-20T23:04:29Z 2008-09-20T23:04:29Z <p>I'm going to go against the general opinion here... and say that you probably don't need to worry about it much.</p> <p>I know a bunch of developers who do maths &amp; physics backgrounds (hell - I've got a half way decent background in both myself). I also know a bunch of developers who don't.</p> <p>I don't see any correlation between being a <em>good</em> developer and having any particular background knowledge in another field.</p> <p>Learn to be a good <em>developer</em> first. </p> http://stackoverflow.com/questions/105830/seo-and-hard-links-with-dynamic-urls/105880#105880 0 Answer by adrianh for SEO and hard links with dynamic URLs adrianh 2008-09-19T21:42:57Z 2008-09-19T21:42:57Z <p>The best thing to help Google in this instance is to return a permanent redirect on the old URL to the new one.</p> <p>I'm not an ASP.NET hacker - so I can't recommend the best way to implement this - but <a href="http://www.google.co.uk/search?q=ASP.NET%20MVC%20permanent%20redirect" rel="nofollow">Googling the topic</a> looks fairly productive :-)</p> http://stackoverflow.com/questions/105720/what-are-some-excellent-examples-of-user-sign-up-forms-on-the-web/105856#105856 1 Answer by adrianh for What are some excellent examples of user sign-up forms on the web? adrianh 2008-09-19T21:38:58Z 2008-09-19T21:38:58Z <p>There are some nice shots of sign up forms in the flickr set to go along with Luke Wroblewski's "Web Form Design" book</p> <p><a href="http://www.flickr.com/photos/rosenfeldmedia/sets/72157604272550634/" rel="nofollow">http://www.flickr.com/photos/rosenfeldmedia/sets/72157604272550634/</a></p> <p>(which is jolly good - worth picking up if you're interested in this sort of thing).</p> http://stackoverflow.com/questions/102072/adversarial-naive-pairing-with-tdd-how-effective-is-it/105819#105819 0 Answer by adrianh for Adversarial/Naive Pairing with TDD: How effective is it? adrianh 2008-09-19T21:33:58Z 2008-09-19T21:33:58Z <p>I like it some of the time - but don't use that style the entire time. Acts as a nice change of pace at times. I don't think I'd like to use the style all of the time.</p> <p>I've found it a useful tool with beginners to introduce how the tests can drive the implementation though.</p> http://stackoverflow.com/questions/101981/single-most-important-thing-to-impart-when-teaching-tdd/105668#105668 2 Answer by adrianh for Single most important thing to impart when teaching TDD adrianh 2008-09-19T21:13:02Z 2008-09-19T21:13:02Z <p>I don't know whether this would count as the single most important thing - but it was something that took me some time to "get" when I was first exploring using TDD.</p> <p>Don't write the code in your head before you write the test.</p> <p>When I first started doing TDD I "knew" what the design should be. I "knew" what code I wanted to write. So I wrote a test that would let me write that bit of code.</p> <p>When I was doing this I wasn't really doing TDD - since I was writing the code first (even if the code was only in my head :-)</p> <p>It took me some time (and some poking by clever folk) to realise that you need to focus on the test. Write the test for the behaviour you want - then write the minimal code needed to make it pass - then let the design emerge through refactoring. Repeat until done.</p> http://stackoverflow.com/questions/85114/how-do-you-structure-a-development-sprint/85561#85561 3 Answer by adrianh for How do you structure a development sprint? adrianh 2008-09-17T17:21:29Z 2008-09-18T23:36:50Z <p>I'd consider experimenting with sprints that are shorter then one month. </p> <p>Personally I find one-two week iterations more effective at getting effective feedback quickly. It also prevents any issues that may be causing problems at the iteration level building up to levels that become harder to manage.</p> <p>Even for the 30 day sprint - two days sounds about a day to long for the sprint review... and one day sounds about 0.5 days too long for the retrospective. I've found that if you need much more than that there have been communication problems while the iterations has been going on - so you might want to look at needing long reviews as a possible red flag.</p> <p>Of course that's just been my experience - of mostly developing web apps with smallish (4-12) person teams. You're experience may vary.</p> <p>That said - I'd definitely give shorter sprints a try. Like integration builds - a lot of things get easier if you do them more often.</p> http://stackoverflow.com/questions/94481/what-tools-are-available-for-a-team-leader-members-to-manage-tasks-agile-progr/97915#97915 0 Answer by adrianh for What tools are available for a team leader & members to manage tasks (Agile programming) adrianh 2008-09-18T23:13:59Z 2008-09-18T23:13:59Z <p>For a co-located team nothing beats a big wall and a whole bunch of index cards as far as I'm concerned. Maybe with whiteboard or two for burnup/down charts.</p> http://stackoverflow.com/questions/91257/scrum-burndown-issues/97869#97869 16 Answer by adrianh for Scrum Burndown issues adrianh 2008-09-18T23:07:50Z 2008-09-18T23:07:50Z <p>Some tips on smoothing things out.</p> <p>1) As others have said - try and break down the tasks into smaller chunks. The more obvious way of doing this is to try and break down the technical tasks in greater detail. Where possible I'd encourage you to talk to the product owner and see if you can reduce scope or "thin" the story instead. I find the latter more effective. Juggling priorities and estimates is easier if both team and product owner understand what's being discussed.</p> <p>My general rule of thumb is any estimate bigger than half an ideal day is probably wrong :-)</p> <p>2) Try doing shorter sprints. If you're doing one month sprints - try two weeks. If you're doing two weeks - try one.</p> <ul> <li>It acts a limiter on story size - encouraging the product owner and the team to work on smaller stories that are easier to estimate accurately</li> <li>You get feedback more often about your estimates - and it's easier to see the connections between the decisions you made at the start of the sprint and what actually happened</li> <li>Everything gets better with practice :-)</li> </ul> <p>3) Use the stand ups and retrospectives to look a bit more at the reasons for the ups and downs. Is it when you spend time with particular areas of the code base? Is it caused by folk misunderstanding the product owner? Random emergencies that take development time away from the team? Once you have more of an understanding where ups and downs are coming from you can often address those problems specifically. Again - shorter sprints can help make this more obvious.</p> <p>4) Believe your history. You probably know this one... but I'll say it anyway :-) If fiddling with that ghastly legacy Foo package took 3 x longer than you thought it would last sprint - then it will also take 3 x as long as you think the next sprint. No matter how much more effective you think you'll be this time ;-) Trust the history and use things like Yesterday's Weather to guide your estimates in the next spring.</p> <p>Hope this helps!</p> http://stackoverflow.com/questions/91585/what-do-you-need-from-a-test-harness/97745#97745 5 Answer by adrianh for What do you need from a test harness? adrianh 2008-09-18T22:43:35Z 2008-09-18T22:43:35Z <p>An arbitrary set of tags - so I can mark a test as, for example "integration, UI, admin".</p> <p>(you knew I was going to ask for this didn't you :-)</p> http://stackoverflow.com/questions/78319/writing-a-book-and-targeting-pdf-and-html/78371#78371 3 Answer by adrianh for Writing a book and targeting PDF and HTML adrianh 2008-09-16T23:33:55Z 2008-09-16T23:33:55Z <p>You might want to take a look at what he Subversion folk did with "Version Control with Subversion" (<a href="http://svnbook.red-bean.com/" rel="nofollow">http://svnbook.red-bean.com/</a>). They build HTML/PDF versions from the same source using DocBook (XML based).</p> http://stackoverflow.com/questions/76408/which-of-these-scripting-languages-is-more-appropriate-for-pen-testing/78103#78103 3 Answer by adrianh for Which of these scripting languages is more appropriate for pen-testing? adrianh 2008-09-16T22:48:56Z 2008-09-16T22:48:56Z <p>I could make an argument for all three :-)</p> <p>Perl has all of CPAN - giving you a huge advantage in pulling together functionality quickly. It also has a nice flexible testing infrastructure that means you can plug lots of different automated testing styles (including tests in other languages) in the same framework.</p> <p>Ruby is a lovely language to learn - and lacks some of the cruft in Perl 5. If you're doing web based testing it also has the watir library - which is trez useful (see <a href="http://wtr.rubyforge.org/" rel="nofollow">http://wtr.rubyforge.org/</a>)</p> <p>Python - nice language and (while it's not to my personal preference) some folk find the way its structured easier to get to grips with.</p> <p>Any of them (and many others) would be a great language to learn.</p> <p>Instead of looking at the language - I'd look at your working environment. It's always easier to learn stuff if you have other folk around who are doing similar stuff. If you current dev/testing folk are already focussed on one of the above - I'd go for that. If not, pick the one that would be most applicable/useful to your current working environment. Chat to the rest of your team and see what they think.</p> http://stackoverflow.com/questions/107059/how-much-mathematics-and-physics-should-a-programmer-know/109712#109712 Comment by adrianh on How much mathematics and physics should a programmer know? adrianh 2009-03-21T08:11:13Z 2009-03-21T08:11:13Z During my career. All sorts. Everything from adding X11/Xt support to dynamic programming environments, through educational software, desktop apps, palm apps and - for the last few years - mostly web applications. http://stackoverflow.com/questions/280810/is-perl-worth-it/281242#281242 Comment by adrianh on Is Perl worth it? adrianh 2008-11-12T15:45:58Z 2008-11-12T15:45:58Z <i>&quot;And I’ve yet to meet a Perl developer who understands TDD (*3).&quot;</i> Curiously I've had the opposite experience. I find Perl folk to be one of the more TDD (and testing in general) aware group of developers. Maybe it's just the folk I hang with :-) http://stackoverflow.com/questions/91585/what-do-you-need-from-a-test-harness/97745#97745 Comment by adrianh on What do you need from a test harness? adrianh 2008-10-05T15:46:47Z 2008-10-05T15:46:47Z @Ovid patches welcome :-) http://stackoverflow.com/questions/112046/how-to-deal-with-pair-programming-issues/123417#123417 Comment by adrianh on How to deal with pair programming issues? adrianh 2008-10-05T15:45:19Z 2008-10-05T15:45:19Z Might be worth changing more often then. Maybe experiment with either smaller stories - or swapping during a story (I tend to like doing the latter myself - spreads the info around more). (sorry about late response - assumed SO would e-mail me about comments on comments :-) http://stackoverflow.com/questions/155250/help-me-understand-how-qa-works-in-scrum/155358#155358 Comment by adrianh on Help me understand how QA works in Scrum adrianh 2008-10-05T15:21:14Z 2008-10-05T15:21:14Z If QA a working one iteration behind the rest of the team - how do they decide what's &quot;done&quot;? Sounds like it would be a recipe for driving problems from iteration N to iteration N+1 (where QA find them to iteration N+2 (when they're pushed back to dev)... http://stackoverflow.com/questions/160482/java-development-in-a-perl-shop-how-to-select-the-right-tool Comment by adrianh on Java development in a Perl shop: How to select the right tool? adrianh 2008-10-02T16:40:50Z 2008-10-02T16:40:50Z Can you talk more about what form the pressure is taking? Performance? Hiring problems? Costs of supporting multiple infrastructures? Something else? http://stackoverflow.com/questions/105226/is-perl-still-a-viable-language-for-web-development/105644#105644 Comment by adrianh on Is Perl still a viable language for web development? adrianh 2008-09-19T21:57:12Z 2008-09-19T21:57:12Z I too have seen lots of large companies using (and continuing to use) Perl for business critical apps. <a href="http://www.perlfoundation.org/perl5/index.cgi?companies_using_perl" rel="nofollow">perlfoundation.org/perl5/&hellip;</a> In my experience Perl isn't better or worse, than anything else for large projects. It's the developers that need to be good!