User gareth_bowles - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:14:50Z http://stackoverflow.com/feeds/user/10715 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1771366/binary-compatibility-between-linux-distributions 3 Binary compatibility between Linux distributions gareth_bowles 2009-11-20T15:47:44Z 2009-11-20T21:26:11Z <p>Sorry if this is an obvious question, but I've found surprisingly few references on the web ... </p> <p>I'm working with an API written in C by one of our business partners and supplied to us as a .so binary file, built on Fedora 11. We've been testing out the API on a Fedora 11 development machine with no problems. However, when I try to link against the API on our customer's target platform, which happens to be SuSE Enterprise 10.2, I get a "File format not recognized" error.</p> <p>Commands that are also part of the binutils package, such as objdump or nm, give me the same file format error. The "file" command shows me:</p> <pre><code>ELF 64-bit LSB shared object, AMD x86-64, version 1 (SYSV), not stripped </code></pre> <p>and the "ldd" command shows:</p> <pre><code>ldd: warning: you do not have execution permission for `./libuscuavactivity.so.1.1' ./libuscuavactivity.so.1.1: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by ./libuscuavactivity.so.1.1) [dependent library list] </code></pre> <p>I'm guessing this is due to incompatibility between the C libraries on the two platforms, with the problem being that the code was compiled against a new version of glibc etc. than the one available on SuSE 10.2. I'm posting this question on the off chance that there is a way to compile the code on our partner's Fedora 11 platform in such a way that it will run on SuSE 10.2 as well.</p> http://stackoverflow.com/questions/1761609/whats-a-good-way-to-collect-logs-from-amazon-ec2-instances/1766703#1766703 0 Answer by gareth_bowles for What's a good way to collect logs from Amazon EC2 instances? gareth_bowles 2009-11-19T21:29:07Z 2009-11-19T21:29:07Z <p>Have a look at the free version of <a href="http://www.splunk.com/" rel="nofollow">Splunk</a> - it will handle the remote log file collection and also give you some really nice search and analysis tools.</p> http://stackoverflow.com/questions/1687341/how-should-i-stress-test-my-web-application/1730807#1730807 2 Answer by gareth_bowles for How should I stress test my web application? gareth_bowles 2009-11-13T17:39:41Z 2009-11-13T17:39:41Z <p><a href="http://seleniumhq.org/" rel="nofollow">Selenium</a> might be a good way to go; it handles AJAX / JavaScript very well, and Adobe has a <a href="http://www.adobe.com/devnet/flash/articles/flash%5Fselenium%5F02.html" rel="nofollow">Selenium extension</a> specifically for Flash testing. Selenium has a bit of a learning curve, but it's well worth the time.</p> http://stackoverflow.com/questions/779370/should-qa-report-to-development 5 Should QA report to development ? gareth_bowles 2009-04-22T21:43:47Z 2009-11-03T21:40:49Z <p>Here's a question I've run across in many, many companies; should a QA team report to the development organization, or be equivalent to development in the company hierarchy ?</p> http://stackoverflow.com/questions/1528387/tracking-requirements-across-multiple-projects-with-jira-or-other-tools 2 Tracking requirements across multiple projects with JIRA (or other tools) gareth_bowles 2009-10-06T22:14:23Z 2009-10-07T00:35:34Z <p>My company has been using JIRA as a requirements tracking tool as well as a bug tracker, and it's been working pretty well while we've been working on one project at a time.</p> <p>We now have a scenario where we have three different project proposals whose requirements partially overlap (e.g. requirement 1 applies to projects A and B, requirement 2 applies to projects B and C, etc.). I'd like to be able to enter a single JIRA issue for each requirement, but that doesn't appear to be possible since JIRA issues and projects have a one-to-one relationship.</p> <p>Has anyone found a way to do this in JIRA, or maybe with some other tool that integrates with JIRA ? </p> http://stackoverflow.com/questions/1488585/remote-java-development-with-eclipse-or-something-else/1488708#1488708 0 Answer by gareth_bowles for Remote Java development with Eclipse (or something else)? gareth_bowles 2009-09-28T18:48:16Z 2009-09-28T18:48:16Z <p>Another option is to run a remote graphics server like <a href="https://help.ubuntu.com/community/FreeNX" rel="nofollow">FreeNX</a> on the Linux server, then connect to it from your Mac with the FreeNX client. You can then have Eclipse installed on the Linux server and just use your Mac as a display client, which avoids any syncing problems. NX works pretty well over low-bandwidth connections; a number of the developers at my company use this method to connect to our office servers from home.</p> http://stackoverflow.com/questions/1488050/windows-software-to-browse-svn-repository-that-isnt-tortoisesvn/1488199#1488199 0 Answer by gareth_bowles for Windows software to browse SVN repository that isn't TortoiseSVN? gareth_bowles 2009-09-28T17:06:40Z 2009-09-28T17:06:40Z <p>If you only need browsing, I'd recommend just going with a Web based tool for ease of maintenance. If you host your repository on Apache already, the default Web access that you get by just browsing to your repository URL is OK; for added features, <a href="http://www.viewvc.org/" rel="nofollow">ViewVC</a> is pretty good.</p> http://stackoverflow.com/questions/1435412/how-do-i-hire-a-really-good-build-install-engineer 7 How do I hire a really good build / install engineer ? gareth_bowles 2009-09-16T20:55:17Z 2009-09-17T21:43:52Z <p>I'm a big fan of giving candidates practical tests during the interview process. It's relatively straightforward to give a developer candidate a programming test or a tester candidate a sample app to see how they would test it, but I'm not so sure what to do with a build engineer.</p> <p>Added to this difficulty is the fact that I've come across a number of sub-optimal build engineers in my time, but it's hard to identify what makes them sub-optimal until they're already on the job. (No offense intended to all the build engineers out there, this is purely my personal experience - and I've been lucky enough to work with a couple of really stellar build engineers too, it's just that they are never available when I want to hire them !). </p> <p>I've worked with a number of people who have turned out not to fully understand the tools that they're working with and/or have implemented overly complex and brittle build solutions that are hard to maintain and extend. </p> <p>What are the qualities of a great build / install engineer, and how can those qualities be tested for during the recruitment process ?</p> http://stackoverflow.com/questions/1429968/can-you-share-components-between-jira-projects/1430302#1430302 3 Answer by gareth_bowles for Can you share components between Jira projects? gareth_bowles 2009-09-16T00:26:25Z 2009-09-16T00:26:25Z <p>I get around this by creating a separate project for the shared code, tagging each issue depending on what release(s) it's related to, and then creating JIRA filters that look at these tags across multiple projects in order to track the list of issues for a release.</p> <p>For example, let's say I have product A and product B, which both use the shared libraries. I want to release version 1 of product A and version 2 of product B; both of these releases need issue 1001 in the shared library project to be fixed.</p> <p>I tag the shared library issue 1001 with "ProdAVer1 ProdBVer2", tag all the product A issues for version 1 with "ProdAVer1" and all the product B issues for version 2 with "ProdBVer2". Then I make a filter including all issues in product A or the shared libraries containing the tag "ProdAVer1" to track my issues for the product A release, and likewise using tag "ProdBVer2" for product B.</p> <p>This sounds a bit long winded now I've written it down, but I think it's a better option than using cloned issues in multiple projects.</p> http://stackoverflow.com/questions/855003/building-linux-packages-for-multiple-distributions-and-versions 3 Building Linux packages for multiple distributions and versions gareth_bowles 2009-05-12T21:40:08Z 2009-09-12T15:18:14Z <p>My company has a software product that's written in C for a Linux platform, built with autotools and distributed via binary packages. To make the binaries, we first produce a source RPM and then compile the source from the SRPM. </p> <p>Currently we only provide RPM packages for 64-bit Fedora 10, but we want to start providing packages for multiple Linux distributions - 32-bit as well as 64-bit - and possibly different versions of each distribution as well (e.g. Fedora 11 as well as Fedora 10).</p> <p>I've heard that the best way to produce builds for multiple Linux flavours is to have a single build server and use a different chrooted environment for each set of packages that you want to build. Does anyone have a good resource that explains this in more detail, maybe with examples of well known projects that use this build mechanism, or have a better alternative to achieve the same goal ? </p> http://stackoverflow.com/questions/1218495/migration-of-test-scripts-into-a-new-release/1374261#1374261 0 Answer by gareth_bowles for Migration of Test Scripts into a New Release gareth_bowles 2009-09-03T15:46:13Z 2009-09-03T15:46:13Z <p>Have a look at <a href="http://testlink.org/wordpress/" rel="nofollow">TestLink</a> - it gives you a nice way to organize your test documents and easily set up new release test plans using existing test cases.</p> http://stackoverflow.com/questions/1315499/is-there-a-single-software-for-multiple-browser-testing/1347749#1347749 1 Answer by gareth_bowles for Is there a single software for multiple browser testing? gareth_bowles 2009-08-28T15:28:25Z 2009-08-28T15:28:25Z <p>Have a look at the free, open source tool Selenium, which supports <a href="http://seleniumhq.org/about/platforms.html#browsers" rel="nofollow">many browsers</a> and can be run as a simple record / playback tool or from code (note the browser compatibility varies a bit depending on which method you choose).</p> <p>Google uses Selenium in a big way these days; there are plenty of good articles such as <a href="http://googletesting.blogspot.com/2007/09/seleniums-inventor.html" rel="nofollow">this one</a> on their testing blog.</p> http://stackoverflow.com/questions/578073/what-is-the-recommended-standard-install-path-for-apache-tomcat-on-a-linux-box/1337293#1337293 1 Answer by gareth_bowles for What is the recommended/standard install path for apache-tomcat on a linux box gareth_bowles 2009-08-26T20:30:32Z 2009-08-26T20:30:32Z <p>There's a Red Hat RPM package for Tomcat 6 - just "yum install tomcat6" and it will put everything in the right place for you and fix up the security by running Tomcat as a dedicated user (not to mention taking care of updates and patches by putting Tomcat into the RPM repository). </p> <p>Most of the executables, the configuration and the webapp directory end up under /var/lib/tomcat6 using this method. </p> http://stackoverflow.com/questions/1050341/deploying-on-ec2/1301840#1301840 1 Answer by gareth_bowles for Deploying on EC2 gareth_bowles 2009-08-19T18:37:30Z 2009-08-19T18:37:30Z <p>I recommend storing your PHP code in a repository such as SVN, and writing a script that checks the latest code out of the repository and redeploys it when you want to upgrade. You could also have this script run on instance startup so that you get the latest code whenever you spin up a new instance; saves on having to create a new AMI every time.</p> <p>The main challenge that I didn't see coming with EC2 is instance startup time - especially with Windows. Linux instances take 5 to 10 minutes to launch, but I've seen Windows instances take up to 40 minutes; this can be an issue if you want to do dynamic load balancing and start up new instances when your load increases.</p> http://stackoverflow.com/questions/1277205/help-me-understand-apache-ab/1278614#1278614 0 Answer by gareth_bowles for Help me understand apache ab gareth_bowles 2009-08-14T15:44:36Z 2009-08-14T15:44:36Z <p>I couldn't find anything to back this up, but I'm pretty sure that ab keeps track of concurrent requests and keeps a constant number of requests active, rather than sending requests in waves. For example, if you specify 50 concurrent connections, rather than waiting for the first 50 requests to complete and then sending another 50, ab will keep sending a new request as soon as a request completes, so that there will always be 50 active connections.</p> http://stackoverflow.com/questions/781952/a-software-testing-book-from-an-engineering-perspective/1272913#1272913 0 Answer by gareth_bowles for A software testing book from an engineering perspective? gareth_bowles 2009-08-13T16:00:49Z 2009-08-13T16:00:49Z <p>The granddaddy of engineering-focused software testing books (despite the title) is Glenford Myers' <a href="http://rads.stackoverflow.com/amzn/click/0471469122" rel="nofollow">"The Art of Software Testing"</a>. Written in 1979, and still just as relevant today !</p> http://stackoverflow.com/questions/757063/why-would-you-not-want-to-use-cloud-computing/1229834#1229834 0 Answer by gareth_bowles for Why would you not want to use Cloud Computing gareth_bowles 2009-08-04T20:43:11Z 2009-08-04T20:43:11Z <p>Another thing you lose with the cloud is the ability to choose exactly what operating system you want to run. For example, the latest Fedora Linux kernel available on EC2 is FC8, and the latest Windows version is Server 2003. </p> http://stackoverflow.com/questions/1222771/web-based-client-for-amazon-s3/1222956#1222956 0 Answer by gareth_bowles for Web based client for Amazon S3 gareth_bowles 2009-08-03T15:24:58Z 2009-08-03T15:24:58Z <p>Note that you can very easily set up browser access (either public or secured with AWS credentials) to an S3 bucket so that the files are accessible via HTTP, without the need for a plugin.</p> <p>There are a few nice standalone clients that give you an explorer-type view of an S# bucket, rather like WinSCP etc. do for FTP or SSH accessible directories. Try <a href="http://cloudberry.com" rel="nofollow">Cloudberry</a> for Windows or <a href="http://cyberduck.ch" rel="nofollow">CyberDuck</a> for Mac.</p> <p>If you want a more functional tool, maybe something cross platform and easy for your employees or IT folks to set up, take a look at <a href="http://jungledisk.com" rel="nofollow">JungleDisk</a>; it lets you mount S3 directories as virtual drives on Windows, Mac or Linux, and also takes care of scheduled backups from your client machines to S3 if that would be useful. </p> <p>[1]: <a href="http://Cloudberry" rel="nofollow">http://Cloudberry</a> Explorer</p> http://stackoverflow.com/questions/803197/how-do-i-go-about-building-a-test-plan-for-our-qa-department/1213064#1213064 0 Answer by gareth_bowles for How do I go about building a test plan for our QA department? gareth_bowles 2009-07-31T15:05:08Z 2009-07-31T15:05:08Z <p>QA should absolutely be writing the test plan, as Tom E points out. They should engage with the customer to understand requirements and with the dev team to understand implementation, but at the end of the day the team with the testing mind set needs to own the test plan.</p> <p>The only situation I can think of where a test plan might need to be written <em>for</em> a QA team is when you have an outsourced team doing QA who is not yet familiar with your product. In that case, I'd recommend having one or two senior members of the team colocate with you during design and development; it helps them come up to speed much faster and they can pass on that knowledge to the rest of the team.</p> http://stackoverflow.com/questions/1131813/dynamic-auto-scaling/1132072#1132072 1 Answer by gareth_bowles for Dynamic / auto scaling gareth_bowles 2009-07-15T15:19:31Z 2009-07-15T15:19:31Z <p>This is more of a question than an answer, but I'm about to start experimenting with autoscaling myself (most likely using the Amazon CloudFront facilities) and am thinking that instance startup time will be a factor. I've noticed that a new EC2 instance can take from 5 to 20 minutes to start up, so it's not as if you can instantly add more capacity when your load increases; it seems like you would need one or more idle instances to be running and ready to pick up increased load.</p> http://stackoverflow.com/questions/1111295/tools-to-manage-manual-testing-results-possibly-integrated-with-trac/1111509#1111509 1 Answer by gareth_bowles for Tools to manage manual testing results - possibly integrated with trac? gareth_bowles 2009-07-10T19:27:24Z 2009-07-10T19:27:24Z <p><a href="http://testlink.sourceforge.net/docs/testLink.php" rel="nofollow">TestLink</a> is a really nice way to manage all your test cases; it has Trac integration and is actively maintained.</p> http://stackoverflow.com/questions/1093198/open-source-testing-tools/1093510#1093510 1 Answer by gareth_bowles for Open Source Testing Tools gareth_bowles 2009-07-07T16:56:12Z 2009-07-07T16:56:12Z <p>Take a look at <a href="http://opensourcetesting.com" rel="nofollow">opensourcetesting.com</a> for lists and discussions on a wide range of open source test tools.</p> http://stackoverflow.com/questions/288011/how-can-i-use-excel-for-project-management/1033690#1033690 1 Answer by gareth_bowles for How can I use Excel for project management? gareth_bowles 2009-06-23T16:26:07Z 2009-06-23T16:26:07Z <p>If you like using spreadsheets and not getting involved with too many fancy tools, have a look at <a href="http://www.onepageprojectmanager.com/" rel="nofollow">The One Page Project Manager</a> - it's exactly as described, a nice, lightweight way to keep track of all your important project info on a single worksheet.</p> http://stackoverflow.com/questions/971945/unit-testing-for-shell-scripts 3 Unit testing for shell scripts gareth_bowles 2009-06-09T19:11:46Z 2009-06-13T06:10:43Z <p>Pretty much every product I've worked on over the years has involved some level of shell scripts (or batch files, PowerShell etc. on Windows). Even though we wrote the bulk of the code in Java or C++, there always seemed to be some integration or install tasks that were better done with a shell script.</p> <p>The shell scripts thus become part of the shipped code and therefore need to be tested just like the compiled code. Does anyone have experience with some of the shell script unit test frameworks that are out there, such as <a href="http://code.google.com/p/shunit2/wiki/GeneralFaq" rel="nofollow">shunit2</a> ? I'm mainly interested in Linux shell scripts for now; I'd like to know how well the test harness duplicate the functionality and ease of use of other xUnit frameworks, and how easy it is to integrate with continuous build systems such as CruiseControl or Hudson.</p> http://stackoverflow.com/questions/984567/what-are-good-advanced-tools-for-managing-ec2/984706#984706 1 Answer by gareth_bowles for What Are Good, Advanced Tools For Managing EC2? gareth_bowles 2009-06-12T02:09:50Z 2009-06-12T02:09:50Z <p>Have a look at <a href="http://www.rightscale.com" rel="nofollow">Rightscale's</a> tools as well; their premium tools are for-money, but their free tools are fairly comprehensive too.</p> http://stackoverflow.com/questions/976155/running-builds-in-the-cloud/976239#976239 2 Answer by gareth_bowles for Running builds in the cloud gareth_bowles 2009-06-10T15:13:40Z 2009-06-10T15:13:40Z <p>My company runs our build system on EC2; we have a much smaller setup than the one you're talking about, but we have a build controller instance running <a href="https://hudson.dev.java.net/" rel="nofollow">Hudson</a> which kicks off builds on a separate, clean instance and then distributes the build artifacts to our repository server (which also happens to be on EC2)</p> <p>Using a cloud solution is ideal for what you're describing, since you can spin up the build servers only when you need them and be confident of building from a fixed baseline each time. The only downside I can think of is the build time; an EC2 instance can take up to 10 minutes to start up, so you either have to add that on to your total build time or keep the build servers running continuously.</p> http://stackoverflow.com/questions/956361/apache-tomcat-using-modproxy-instead-of-ajp/956702#956702 2 Answer by gareth_bowles for Apache + Tomcat: Using mod_proxy instead of AJP gareth_bowles 2009-06-05T16:01:44Z 2009-06-07T21:48:56Z <p>I think your best bet if you want multiple sites on the same server is to use virtual hosts in your Apache configuration. Here's an example:</p> <pre><code>&lt;VirtualHost *:80&gt; ServerName server.domain.com ProxyRequests Off &lt;Proxy *&gt; Order deny,allow Allow from all &lt;/Proxy&gt; ProxyPass / http://server.domain.com:8080/ ProxyPassReverse / http://server.domain.com:8080/ &lt;Location /&gt; Order allow,deny Allow from all &lt;/Location&gt; </code></pre> <p></p> <p>As long as you have server.domain.com registered in your external DNS, the incoming host name will be displayed in client URLs. I'm running a single server hosting 6 separate sites, including 3 that are back by Tomcat, using this method.</p> http://stackoverflow.com/questions/955702/can-i-do-this-apache-modjk-tomcat-axis/956670#956670 0 Answer by gareth_bowles for Can I do this? Apache + mod_jk + Tomcat + Axis gareth_bowles 2009-06-05T15:56:01Z 2009-06-05T15:56:01Z <p>I worked on a product that had exactly this setup about a year ago. I'm afraid the details are a bit fuzzy, but I don't remember having any problems with the software stack. If you find you need help, comment back here and I'll try to dig up some more info.</p> http://stackoverflow.com/questions/933959/apache-is-incorrectly-converting-jsp-pages-to-text-plain/935734#935734 0 Answer by gareth_bowles for Apache is incorrectly converting jsp pages to "text/plain" gareth_bowles 2009-06-01T17:01:44Z 2009-06-01T17:01:44Z <p>If you're seeing this problem intermittently, it's almost certain to be something in the servlet code rather than a misconfiguration of Tomcat or httpd. Do you have logging that you can turn on to print the contents of the HTTP headers ?</p> <p>To isolate the problem a bit further, you could also try bypassing httpd and going direct to the Tomcat URLs for your pages.</p> <p>I haven't seen this particular behaviour before myself, so sorry I can't be more specific.</p> http://stackoverflow.com/questions/921930/are-all-clouds-such-as-aws-still-too-public-for-internal-corporate-use/922150#922150 2 Answer by gareth_bowles for Are all clouds (such as AWS) still too "public" for internal corporate use? gareth_bowles 2009-05-28T17:25:30Z 2009-05-28T17:25:30Z <p>IMO EC2 is well suited for corporate use - as long as you back up all your critical data off site in case of an outage, which you'd want to do for internal systems anyway. The minimum level of security that Amazon enforces is well above what a lot of traditional hosting providers give you, and also above a lot of internal shops I've worked with. Since you have full access to the operating system, you can add in as many extra levels of security as you like.</p> http://stackoverflow.com/questions/1771366/binary-compatibility-between-linux-distributions Comment by gareth_bowles on Binary compatibility between Linux distributions gareth_bowles 2009-11-20T21:02:13Z 2009-11-20T21:02:13Z Actually, objdump run on SuSE gives me the same &quot;File format not recognized&quot; error that the linker does. I've edited the question to reflect that and to show the output from the file and ldd commands, which do work. http://stackoverflow.com/questions/1771366/binary-compatibility-between-linux-distributions Comment by gareth_bowles on Binary compatibility between Linux distributions gareth_bowles 2009-11-20T16:45:01Z 2009-11-20T16:45:01Z I should have mentioned that the build platform and the target SuSE 10.2 platform are both x86_64. http://stackoverflow.com/questions/1739013/find-all-htaccess-files-on-server/1739028#1739028 Comment by gareth_bowles on Find all htaccess files on server gareth_bowles 2009-11-16T16:18:19Z 2009-11-16T16:18:19Z Note that, if you start from the root directory / , you'll need to run the find command with root privileges so that you're able to read all subdirectories on the system. http://stackoverflow.com/questions/1692832/can-i-run-windows-server-2008-on-amazon-ec2/1696026#1696026 Comment by gareth_bowles on Can I run Windows Server 2008 on Amazon EC2 gareth_bowles 2009-11-09T15:45:49Z 2009-11-09T15:45:49Z +1 for actually answering the question http://stackoverflow.com/questions/1653101/rails-based-ec2-ami/1659173#1659173 Comment by gareth_bowles on Rails based EC2 AMI gareth_bowles 2009-11-02T05:31:03Z 2009-11-02T05:31:03Z The EC2 instance is really more like $42 / month - there is an up front charge for reserved instances, the cheapest being $350 if you reserve for 3 years. That adds nearly another $20 / month to your bill. http://stackoverflow.com/questions/1563149/hiring-software-developer-for-testing-position/1563199#1563199 Comment by gareth_bowles on hiring software developer for testing position gareth_bowles 2009-10-30T00:21:52Z 2009-10-30T00:21:52Z I am soooo tired of the assumption that developers merit higher pay than testers. If you pay peanuts you will get monkeys, whatever the job description. http://stackoverflow.com/questions/1325075/how-do-i-set-the-timezone-in-tomcat-for-a-single-web-app/1325084#1325084 Comment by gareth_bowles on How do I set the timezone in Tomcat for a single web app? gareth_bowles 2009-10-22T00:23:28Z 2009-10-22T00:23:28Z This solution would change the overall time zone for the Tomcat server; the question author wanted to set different time zones per webapp. http://stackoverflow.com/questions/1528387/tracking-requirements-across-multiple-projects-with-jira-or-other-tools/1528422#1528422 Comment by gareth_bowles on Tracking requirements across multiple projects with JIRA (or other tools) gareth_bowles 2009-10-07T17:53:53Z 2009-10-07T17:53:53Z Thanks for the answer - I slightly prefer Sereda's suggestion, but I may give yours a try if it doesn't work out. http://stackoverflow.com/questions/1528387/tracking-requirements-across-multiple-projects-with-jira-or-other-tools/1528521#1528521 Comment by gareth_bowles on Tracking requirements across multiple projects with JIRA (or other tools) gareth_bowles 2009-10-07T17:52:55Z 2009-10-07T17:52:55Z Thanks, that's an interesting idea; I'd really prefer to have the requirements issues in the projects they relate to, but I'm going to see how your suggestion works out. http://stackoverflow.com/questions/1528387/tracking-requirements-across-multiple-projects-with-jira-or-other-tools/1528430#1528430 Comment by gareth_bowles on Tracking requirements across multiple projects with JIRA (or other tools) gareth_bowles 2009-10-07T17:51:30Z 2009-10-07T17:51:30Z We have Confluence and use it extensively for free-form documentation such as initial requirements gathering and discussion, but Confluence isn't suitable for the detailed requirement tracking that I need to do. http://stackoverflow.com/questions/1435412/how-do-i-hire-a-really-good-build-install-engineer/1435505#1435505 Comment by gareth_bowles on How do I hire a really good build / install engineer ? gareth_bowles 2009-09-18T16:32:22Z 2009-09-18T16:32:22Z I disagree with the last comment; it's cheaper to get rid of a contractor than a permanent employee, but the cost of having somebody unsatisfactory on board for a while and then having to replace them is much greater. http://stackoverflow.com/questions/1416945/how-can-i-use-perl-to-test-c-programs Comment by gareth_bowles on How can I use Perl to test C programs? gareth_bowles 2009-09-14T18:40:01Z 2009-09-14T18:40:01Z +1 for @docgnome - the whole point of Stack Overflow is that answers are useful to the community, not just the original poster. http://stackoverflow.com/questions/855003/building-linux-packages-for-multiple-distributions-and-versions/1415354#1415354 Comment by gareth_bowles on Building Linux packages for multiple distributions and versions gareth_bowles 2009-09-12T21:55:48Z 2009-09-12T21:55:48Z Thanks - our build infrastructure in on Amazon EC2 so using build agents is a possibility, but I'd prefer to keep everything on one build server if possible for ease of maintenance (for example, if we upgrade the version of some dependent package, I don't want to have to update multiple Amazon machine images). http://stackoverflow.com/questions/1409919/monkey-testing-for-iphone Comment by gareth_bowles on Monkey testing for iPhone? gareth_bowles 2009-09-11T15:28:37Z 2009-09-11T15:28:37Z I haven't had the best luck with chimpanzees; their large fingers are not very accurate on the iPhone's relatively small touch screen. Smaller monkeys like Macaques work really well, though. http://stackoverflow.com/questions/1325075/how-do-i-set-the-timezone-in-tomcat-for-a-single-web-app Comment by gareth_bowles on How do I set the timezone in Tomcat for a single web app? gareth_bowles 2009-08-24T22:16:23Z 2009-08-24T22:16:23Z Good question; I'm scratching my head over a Tomcat installation I have where the timestamps in the Tomcat logs are an hour behind the system time.