User Rob Wells - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T21:15:09Zhttp://stackoverflow.com/feeds/user/2974http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1849358/how-to-redirect-stdout-and-stderr-from-csh-script/1849473#18494731Answer by Rob Wells for How to redirect stdout and stderr from csh script.Rob Wells2009-12-04T20:30:24Z2009-12-04T23:37:43Z<p>G'day,</p>
<p>I <strong>highly</strong> recommend moving away from csh towards something like bash or zsh.</p>
<p>stdio manipulation is not possible in csh. Have a read of "<a href="http://www.faqs.org/faqs/unix-faq/shell/csh-whynot/" rel="nofollow">csh programming considered harmful</a>". An elegant treatise on this topic.</p>
<p>Sorry it's not a direct answer but you'll find that you'll keep banging your head against the constraints of csh the longer you stick with it.</p>
<p>A lot of csh syntax is already available in bash so your learning curve won't be too steep.</p>
<p>Here's a quick suggestion for the same thing written in bash. It's not elegant though.</p>
<pre><code>#!/bin/bash
TO_LOGFILE= "| tee -a ./install.log"
tar -zxf Python-3.1.1.tgz 2>&1 ${TO_LOGFILE}
if [ $? -ne 0 ];then
echo "Untar of Python failed. Exiting..."; exit 5
fi
cd Python-3.1.1 2>&1 ${TO_LOGFILE}
if [ $? -ne 0 ];then
echo "Can't change into Python dir. Exiting..."; exit 5
fi
echo "============== configure ================"
./configure 2>&1 ${TO_LOGFILE}
if [ $? -ne 0 ];then
echo "Configure failed. Exiting..."; exit 5
fi
echo "================ make ==================="
make 2>&1 ${TO_LOGFILE}
if [ $? -ne 0 ];then
echo "Compile of Python failed. Exiting..."; exit 5
fi
echo "================ install ================"
make install 2>&1 ${TO_LOGFILE}
if [ $? -ne 0 ];then
echo "Install of Python failed. Exiting..."; exit 5
fi
cd ..
rm -rf Python-3.1.1 2>&1 ${TO_LOGFILE}
exit 0
</code></pre>
<p>I've added a bit more checking and reporting so that if there's a problem in an earlier step the log file will just contain up until the error was uncovered rather than a stack of pretty useless error messages from the later phases that wouldn't complete anyway.</p>
<p>cheers,</p>
http://stackoverflow.com/questions/1820505/how-do-i-implement-a-test-framework-in-a-legacy-project/1820582#18205826Answer by Rob Wells for How do I implement a test framework in a legacy projectRob Wells2009-11-30T15:44:37Z2009-12-02T14:19:48Z<p>G'day,</p>
<p><strong>Edit:</strong> I've just had a quick look through the first chapter of "<a href="http://rads.stackoverflow.com/amzn/click/1933988274" rel="nofollow">The Art of Unit Testing</a>" which is also available as <a href="http://www.manning.com/osherove/osherove%5Fmeapch1.pdf" rel="nofollow">a free PDF</a> at the <a href="http://www.artofunittesting.com/Chapters/The%5FBasics%5FOf%5FUnit%5FTesting" rel="nofollow">book's website</a>. It'll give you a good overview of what you are trying to do with a unit test.</p>
<p>I'm assuming you're going to use an xUnit type framework. Some initial high-level thoughts are:</p>
<ol>
<li><strong>Edit:</strong> make sure that everyone is is agreement as to what constitutes a good unit test. I'd suggest using the above overview chapter as a good starting point and if needed take it from there. Imagine having people run off enthusiastically to create lots of unit tests while having a different understanding of what a "good" unit test. It'd be terrible for you to out in the future that 25% of your unit tests aren't useful, repeatable, reliable, etc., etc..</li>
<li>add tests to cover small chunks of code at a time. That is, don't create a single, monolithic task to add tests for the existing code base.</li>
<li>modify any existing processes to make sure new tests are added for any new code written. Make it a part of the review process of the code that unit tests must be provided for the new functionality.</li>
<li>extend any existing bugfix processes to make sure that new tests are created to show presence and prove the absence of the bug. N.B. Don't forget to rollback your candidate fix to introduce the bug again to verify that it is only that single patch that has corrected the problem and it is not being fixed by a combination of factors.</li>
<li><strong>Edit:</strong> as you start to build up the number of your tests, start running them as nightly regression tests to check nothing has been broken by new functionality.</li>
<li>make a successful run of <strong>all</strong> existing tests and entry criterion for the review process of a candidate bugfix.</li>
<li><strong>Edit:</strong> start keeping a catalogue of test types, i.e. test code fragments, to make the creation of new tests easier. No sense in reinventing the wheel all the time. The unit test(s) written to test opening a file in one part of the code base is/are going to be similar to the unit test(s) written to test code that opens a different file in a different part of the code base. <strong>Catalogue these to make them easy to find.</strong></li>
<li><strong>Edit:</strong> where you are only modifying a couple of methods for an existing class, create a test suite to hold the complete set of tests for the class. Then only add the individual tests for the methods you are modifying to this test suite. This uses xUnit termonology as I'm now assuming you'll be using an xUnit framework like PHPUnit.</li>
<li>use a standard convention for the naming of your test suites and tests, e.g. testSuite_classA which will then contain individual tests like test__test_function. For example, test_fopen_bad_name and test_fopen_bad_perms, etc. This helps minimise the noise when moving around the code base and looking at other people's tests. It also has then benefit of helping people when they come to name their tests in the first place by freeing up their mind to work on the more interesting stuff like the tests themselves.</li>
<li><strong>Edit:</strong> i wouldn't use TDD at this stage. By definition, TDD will need all tests present before the changes are in place so you will have failing tests all over the place as you add new testSuites to cover classes that you are working on. Instead add the new testSuite and then add the individual tests as required so you don't get a lot of noise occurring in your test results for failing tests. And, as Yishai points out, adding the task of learning TDD at this point in time will really slow you down. Put learning TDD as a task to be done when you have some spare time. It's not that difficult.</li>
<li>as a corollary of this you'll need a tool to keep track of the those existing classes where the testSuite exists but where tests have not yet been written to cover the other member functions in the class. This way you can keep track of where your test coverage has holes. I'm talking at a high level here where you can generate a list of classes and specific member functions where no tests currently exist. A standard naming convention for the tests and testSuites will greatly help you here.</li>
</ol>
<p>I'll add more points as I think of them.</p>
<p>HTH</p>
http://stackoverflow.com/questions/1796455/class-identifier-used-inside-the-class-declaration-is-it-a-good-practice/1796489#17964892Answer by Rob Wells for Class Identifier used inside the class declaration. Is it a good practice?Rob Wells2009-11-25T11:58:27Z2009-11-25T12:11:47Z<p>G'day,</p>
<p>I always thought that sort of identifier was only used in the implementation and wasn't necessary in the class definition.</p>
<p>A class declaration is</p>
<pre><code>class InputRecord;
</code></pre>
<p>What you've got there is a class definition.</p>
<pre><code>class InputRecord
{
/* Construtor */
...
RejectRecord();
...
/* Destructor */
}
</code></pre>
<p>then in your .cpp file you have the implementation</p>
<pre><code>InputRecord::RejectRecord()
{
...
}
</code></pre>
http://stackoverflow.com/questions/1796376/what-are-good-and-bad-ways-to-document-a-software-project/1796439#17964391Answer by Rob Wells for What are good and bad ways to document a software project?Rob Wells2009-11-25T11:46:56Z2009-11-25T11:46:56Z<p>G'day,</p>
<p>Definitely use a wiki. I'd recommend TWiki as it's an excellent and extensive implementation of a wiki without being too complicated to install and manage.</p>
<p>Here's a couple of initial thoughts.</p>
<p><strong>Categories:</strong></p>
<p>Start off with an initial ontology of what you want to capture but</p>
<ul>
<li>allow people to add new categories or sub-categories as required,</li>
<li>allow people to retitle (sub-)categories as required and maybe as agreed for this one so you don't get fragmentation for multiple names for basically the same thing.</li>
<li>let any initial (sub-)categories wither and die if they are left empty. Do this at the end of the project as some areas may only have entries towards the end of a project.</li>
</ul>
<p><strong>Tagging:</strong></p>
<p>Start using a tag cloud. BTW here's an excellent plug-in available for TWiki to start classifying content early on in the project. Retrofitting tags is almost impossible to do. Starting tagging early also allows people to search for information that may be there already rather than having the same info located in multiple places.</p>
<p>HTH I'll come back and add more points as I think of them.</p>
http://stackoverflow.com/questions/1796209/how-to-link-to-vs2008-generated-libs-from-g/1796284#17962841Answer by Rob Wells for How to link to VS2008 generated .libs from g++Rob Wells2009-11-25T11:17:57Z2009-11-25T11:17:57Z<p>G'day,</p>
<p>Not sure if this is going to be possible as there is too much that can vary between compilers from different vendors apart from just the name mangling. Things such as:</p>
<ol>
<li><code>this</code> handling,</li>
<li>layout and contents of v-tables,</li>
<li>class layout,</li>
<li>parameter sequence,</li>
<li>register handling,</li>
<li>return value handling,</li>
<li>etc.</li>
</ol>
<p>I'd be interested to see if it was possible though.</p>
http://stackoverflow.com/questions/1587261/how-can-i-get-the-full-makefile-if-a-makefile-contains-include/1782973#17829730Answer by Rob Wells for How can I get the "full" makefile if a Makefile contains "include"?Rob Wells2009-11-23T12:50:29Z2009-11-23T12:50:29Z<p>G'day,</p>
<p>I find entering <code>make -np 2>&1 | tee results</code> to check the makefile behaviour before you execute the make itself to be very useful. (Assuming bash, zsh or something similar for the dupe of stderr on to stdout.)</p>
<p>N.B. Only time this doesn't work properly is if the makefile contains a command to create a local code env.,e.g. untarring a tarball or making recursive copy of a source tree, before entering and running a recursive make. For those instances perform the analysis in two stages, namely:</p>
<ol>
<li>create the local copy as required and comment out the "cp -r" or "tar -xvf" command as applicable in the makefile, and</li>
<li>now execute your <code> make -np 2>&1 | tee results</code> command as before.</li>
</ol>
<p>BTW This was the only way I got to understand what was happening with building an awesome project that had 20+ makefiles for about 2,500 kSLOC of code. The build also had code generation phases, just to make life more interesting. (-:</p>
<p>HTH</p>
http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf13"Must Have" Books on Your BookshelfRob Wells2008-10-04T12:02:13Z2009-11-23T02:51:19Z
<p>I know, that questions regarding books have been asked before. What I'm after is what books are "must haves" on your bookshelf?</p>
<p>You know, those books that, if you don't have a copy, it makes you feel uncomfortable. They keep vanishing because people keep, er, "borrowing" them.</p>
<p>I read Ed Yourdon's <a href="http://rads.stackoverflow.com/amzn/click/013191958X" rel="nofollow">The Decline and Fall of The American Programmer</a> and while the book was fairly interesting, his Appendix on what he has on his bookshelf, and why, is quite a revelation. Several of the books on his list are not directly concerned with coding but in the appendix he goes on to explain why they are on his list, e.g. Robert Pirsig's book <a href="http://rads.stackoverflow.com/amzn/click/0061673730" rel="nofollow">Zen and the Art of Motorcycle Maintenance</a></p>
<p>This idea also comes from Peter Coffee's Agile 06 keynote address where he relates his choice of books back to the Agile Manifesto (<a href="http://media.libsyn.com/media/agiletoolkit/Agile06%5FKeynote%5FPeterCoffee.mp3" rel="nofollow">mp3</a>).</p>
<p>Here are my must haves:</p>
<ol>
<li><a href="http://rads.stackoverflow.com/amzn/click/0060971843" rel="nofollow">Thriving on Chaos (1st ed.)</a> Tom Peters </li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0671819100" rel="nofollow">Systemantics: How things work and how they fail (1st ed.)</a> - John Gall </li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0932633420" rel="nofollow">The Psychology of Computing Programming</a> - Gerald Weinberg</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">K & R C</a></li>
</ol>
<p>What are your must haves?</p>
http://stackoverflow.com/questions/30026/features-common-to-all-regex-flavors/30054#300541Answer by Rob Wells for Features common to all regex flavors?Rob Wells2008-08-27T13:14:23Z2009-11-23T02:22:36Z<p>If you took the grep regexp grammar, not the egrep one, or the sed regexp grammar and used that you should be using a safe subset across many platforms and tools.</p>
<p>About the only thing that may bite you then is when you go shift between regexp implementations using Finite State Automatons (FSA) and ones using backtracking, e.g. quantifier implementations will vary from grep to Perl.</p>
<p>FSA based implementations will find longest match starting at the first possible position. Backtracking ones will find the left-biased first match, starting at the first possible position. That is, it will try each branch in the order in the pattern until a match is found.</p>
<p>Consider the string <code>"xyxyxyzz"</code>, and the pattern <code>"(xy)*(xyz)?"</code>. FSA based engines will match the longest possible substring, <code>"xyxyxyz"</code>. Back-tracking based engines will match the left-biased first substring, <code>"xyxyxy"</code>.</p>
http://stackoverflow.com/questions/1755550/what-is-the-reasoning-behind-the-makefile-whitespace-syntax4What is the reasoning behind the Makefile whitespace syntax?Rob Wells2009-11-18T12:04:50Z2009-11-19T18:37:27Z
<p>G'day,</p>
<p>I'm revisiting Python after Michael Sparks's excellent walkthrough of Peter Norvig's Python spell checker at the SO DevDay in London.</p>
<p>One of the points he highlighted was how clean Python is to look at. Not cluttered with braces for scopes but using white space to indicate block scope instead.</p>
<p>This got me thinking. I wonder if that is the reason behind the TAB indentations that are prepended to the commands needed to build a make target.</p>
<p>Was it the same clarity aspect? To readily distinguish between a target and the commands needed to build the target?</p>
http://stackoverflow.com/questions/1400057/getting-the-name-of-the-makefile-from-the-makefile/1756848#17568481Answer by Rob Wells for Getting the name of the makefile from the makefileRob Wells2009-11-18T15:37:38Z2009-11-18T15:37:38Z<p>G'day,</p>
<p>If you make a copy of your original makefile, say makefile_test, and then enter the command:</p>
<pre><code>make -np -f makefile_test 2>&1 | tee output
</code></pre>
<p>That will evaluate the makefile and your make environment but not execute any of the commands. Looking through the output file for references to makefile_test will show you what is set in make's environment and where that value is being set.</p>
<p>N.B. This can generate a lot of info! And don't add the -d (debug) switch which will generate tons of additional output about make's decision process but minimal additional info about make's env.</p>
<p>HTH</p>
http://stackoverflow.com/questions/1752473/how-to-turn-off-a-unit-test-in-cppunit/1752491#17524910Answer by Rob Wells for how to turn off a unit test in CPPUnitRob Wells2009-11-17T23:03:54Z2009-11-18T11:30:32Z<p>G'day,</p>
<p>Aren't you able to comment out the individual tests in the testSuite_* code?</p>
<p><strong>Edit:</strong> Sorry, I didn't fully parse your question. But a testSuite_ is a way of grouping individual tests that are related in some way, e.g. for an LD_PRELOAD remapping library that we're using we have several test suites, e.g.</p>
<pre><code>testSuite_access.c
testSuite_acl.c
testSuite_chdir.c
testSuite_chmod.c
...
etc.
</code></pre>
<p>that group several tests together that exercise that particular OS command.</p>
<p>But having a think about it, and actually <strong>reading</strong> what you said (-: , you seem to want to keep the functionality of CPPUnit working and not play with it, i.e. still flagging tests as failing.</p>
<p>So I'd suggest looking at playing with the behaviour of CruiseControl to ignore those known failures. Maybe even flag them as "acceptable" for the time being, e.g. an amber status for the build rather than a green or red status both of which are false for the circumstances you describe.</p>
<p>CruiseControl is very configurable and there is an active community for it over at their wiki which is accessible via their <a href="http://cruisecontrol.sourceforge.net/" rel="nofollow">home page</a>.</p>
<p>HTH</p>
<p>Sorry I can't be more specific apart from recommending that you modify CruiseControl behaviour rather than play with CPPUnit.</p>
http://stackoverflow.com/questions/887209/why-are-blank-lines-being-matched-in-this-regexp1Why are blank lines being matched in this regexp?Rob Wells2009-05-20T10:31:06Z2009-11-17T14:36:07Z
<p>G'day,</p>
<p>I am using the following Perl fragment to extract output from a Solaris cluster command.</p>
<pre><code>open(CL,"$clrg status |");
my @clrg= grep /^[[:lower:][:space:]]+/,<CL>;
close(CL);
</code></pre>
<p>I get the following when I print the content of the elements of the array @clrg BTW "=>" and "<=" line delimiters are inserted by my print statement:</p>
<pre><code>=><=
=>nas-rg mcs0.cwwtf.bbc.co.uk No Online<=
=> mcs1.cwwtf.bbc.co.uk No Offline<=
=><=
=>apache-rg mcs0.cwwtf.bbc.co.uk No Online<=
=> mcs1.cwwtf.bbc.co.uk No Offline<=
=><=
</code></pre>
<p>When I replace it with the following Perl fragment the blank lines are not matched.</p>
<pre><code>open(CL,"$clrg status |");
my @clrg= grep /^[[:lower:][:space:]]{3,}/,<CL>;
close(CL);
</code></pre>
<p>And I get the following:</p>
<pre><code>=>nas-rg mcs0.cwwtf.bbc.co.uk No Online<=
=> mcs1.cwwtf.bbc.co.uk No Offline<=
=>apache-rg mcs0.cwwtf.bbc.co.uk No Online<=
=> mcs1.cwwtf.bbc.co.uk No Offline<=
</code></pre>
<p>Simple question is why?</p>
<p>BTW Using {1,} in the second Perl fragment also matches blank lines!</p>
<p>Any suggestions gratefully received!</p>
<p>cheers,</p>
http://stackoverflow.com/questions/1743803/c-linker-lack-of-duplicate-symbols/1743833#17438333Answer by Rob Wells for C++ linker - Lack of duplicate symbolsRob Wells2009-11-16T18:02:58Z2009-11-16T18:26:28Z<p>G'day,</p>
<p>Isn't default link editor behaviour to take the first symbol that satisfies the requierments and stop searching.</p>
<p>You should be able to enable a complete search to disallow duplicate symbols within the closure of the executable.</p>
<p><strong>Edit:</strong> I've just seen that the link editor on Solaris disallows multiple definitions be default. You actually have to use the link editor switch "-z muldefs" to allow linking to proceed with multiple definitions within the objects being used to establish closure for the executable.</p>
<p><strong>Edit2:</strong> I'm intrigued here as this should be flagged as a warning. What happens if you add</p>
<pre><code>-std=c++98 -pedantic-errors
</code></pre>
<p>to the command line when you build your executable?</p>
http://stackoverflow.com/questions/1739434/whats-wrong-with-this-makefile/1739449#17394495Answer by Rob Wells for What's wrong with this Makefile?Rob Wells2009-11-16T00:25:33Z2009-11-16T00:31:17Z<p>G'day,</p>
<p>You need tabs to indent the lines underneath each target.</p>
<pre><code>LEX = lex
YACC = yacc
CC = gcc
calcu: y.tab.o lex.yy.o
$(CC) -o calcu y.tab.o lex.yy.o -ly -lfl
y.tab.c y.tab.h: parser.y
$(YACC) -d parser.y
y.tab.o: y.tab.c parser.h
$(CC) -c y.tab.c
lex.yy.o: y.tab.h lex.yy.c
$(CC) -c lex.yy.c
lex.yy.c: calclexer.l parser.h
$(LEX) calclexer.l
clean:
rm *.o
rm *.c
rm calcu
</code></pre>
<p>BTW General convention is that you should use braces rather than brackets for your macros. Using brackets are a legacy thing left over from substituting an object back in to an archive. So the above is better expressed as:</p>
<pre><code>LEX = lex
YACC = yacc
CC = gcc
calcu: y.tab.o lex.yy.o
${CC} -o calcu y.tab.o lex.yy.o -ly -lfl
y.tab.c y.tab.h: parser.y
${YACC} -d parser.y
y.tab.o: y.tab.c parser.h
${CC} -c y.tab.c
lex.yy.o: y.tab.h lex.yy.c
${CC} -c lex.yy.c
lex.yy.c: calclexer.l parser.h
${LEX} calclexer.l
clean:
rm *.o
rm *.c
rm calcu
</code></pre>
<p>HTH</p>
http://stackoverflow.com/questions/1734243/in-c-how-do-i-print-filename-of-file-that-is-redirected-as-input-in-shell/1734294#17342940Answer by Rob Wells for In C how do I print filename of file that is redirected as input in shellRob Wells2009-11-14T13:56:00Z2009-11-14T13:56:00Z<p>G'day,</p>
<p>As pointed out in the above answer all you see is the open file descriptor stdin.</p>
<p>If you really want to do this, you could specify that the first line of the input file must be the name of the file itself.</p>
<p>HTH</p>
http://stackoverflow.com/questions/1734024/managing-multiple-software-projects/1734092#17340921Answer by Rob Wells for managing multiple software projectsRob Wells2009-11-14T12:15:55Z2009-11-14T12:15:55Z<p>G'day,</p>
<p>Have a read of Johanna Rothman's excellent book "<a href="http://rads.stackoverflow.com/amzn/click/1934356298" rel="nofollow">Manage Your Project Portfolio</a>" that addresses this very issue by providing an approach to evaluate multiple projects to determine a priority.</p>
<p><strong>Edit:</strong> I forgot to say that I'm applying the technique myself across multiple work streams atm.</p>
<p>HTH</p>
http://stackoverflow.com/questions/1733804/compiler-optimization-implementation/1734047#17340472Answer by Rob Wells for compiler optimization implementationRob Wells2009-11-14T11:56:32Z2009-11-14T11:56:32Z<p>G'day,</p>
<p>What area of optimization are you talking about?</p>
<p>Compiler optimizations such as:</p>
<ul>
<li>loop optimizations</li>
<li>dataflow optimizations</li>
<li>static single assignment based optimizations</li>
<li>code generator optimizations</li>
<li>etc.</li>
<li>etc.</li>
</ul>
<p>Or optimization in the performance of the compiler itself, i.e. the speed with which it works?</p>
http://stackoverflow.com/questions/1731645/challenges-of-code-review-with-remote-team/1731783#17317831Answer by Rob Wells for Challenges of code review with remote teamRob Wells2009-11-13T20:43:47Z2009-11-13T20:43:47Z<p>G'day,</p>
<p>Get your boss to fit time into the schedule of the team for code reviews. Maybe have code reviews one part of people's objectives, i.e. so many reviews per week or month?</p>
<p>To assist this maybe put together reasons for why the reviews make good business sense. You're lucky in that if the company has mandated reviews, then they understand the benefits already to a certain extent. That is <strong>if they are actually performing the reviews!</strong> But does your boss understand the benefits of actually performing code reviews? Or is it something the company says they do so that they can get a "tick in the box" to achieve a certain level in the CMM?</p>
<p>You might like to head over to the <a href="http://smartbear.com/" rel="nofollow">SmartBear</a> site. They have some great resources there regarding code reviews.</p>
<p>BTW Is there a reciprocal in that do you review the changes of other team members as well? Timely responses on your part will help when you're trying to convince others of your need for review. Actually, do they actually perform reviews? Or do they just do a quick click to confirm that they've reviewed it and then check it in? Whether it's reviews of your changes versus reviews of their own changes they're going to need time to do them no matter what!</p>
<p>Working in a reactive rather than responsive team is very frustrating but surely they can't <strong>all</strong> be reacting to the latest crisis all the time. Although, there are plenty of of people who thrive on crises, many of them there own making! Have a read of the excellent RandsInRepose article "<a href="http://www.randsinrepose.com/archives/2009/09/29/the%5Fcrisis%5Fand%5Fthe%5Fcreative.html" rel="nofollow">The Crisis and the Creative</a>" which covers this "crisis" topic. (-:</p>
<p>HTH</p>
<p>cheers,</p>
http://stackoverflow.com/questions/1730809/what-is-the-design-best-practice-for-setting-the-page-width-for-mobile-web-pages/1730844#17308441Answer by Rob Wells for What is the design best practice for setting the page width for mobile web pages?Rob Wells2009-11-13T17:46:18Z2009-11-13T17:46:18Z<p>G'day,</p>
<p>I know you're question is to decide on making a selection of the optimum screen size to work on all phones but that approach soon wears thin with users.</p>
<p>A large web site I'm associated with takes the UserAgent string and normalises it to a common denominator, e.g. over 300 different UA strings in use in the UK for a particular Sony Ericsson phone type so they all get converted to the same string, and then does a lookup into a table to determine screen real estate.</p>
<p>The coders also have access to the current connection speed which is deduced by a geolocation application based on connection type, routing type, etc. <strong>at the time of the request.</strong> You don't want to be sending rich, high-def media to someone with a slow connection.</p>
<p>This is then used to</p>
<ol>
<li>decide if rich content can be served, and then</li>
<li>select the optimum format for the content.</li>
</ol>
<p>HTH</p>
<p>cheers,</p>
http://stackoverflow.com/questions/1726446/how-much-designing-should-go-on-before-any-coding-takes-place/1726584#17265848Answer by Rob Wells for How Much Designing Should Go On Before Any Coding Takes Place?Rob Wells2009-11-13T01:30:21Z2009-11-13T11:56:00Z<p>G'day,</p>
<p>It very much depends on the nature of the project.</p>
<p>I have worked on projects where the new system was a replacement for an existing system and the vast majority of time was spent gathering the behaviour of the existing system to establish requirements.</p>
<p>This phase, and then the design phase, took nearly eighteen months. The coding took about four months in calendar terms. In effort terms it was much more, but the net result was a stable system that the customer loved.</p>
<p>Oh, by the way, this was a replacement for an existing air traffic control system, a <strong>German</strong> air traffic control system, so for them to put it live after only one month of the three months scheduled evaluation period was quite an achievement that I'm incredibly proud of.</p>
<p>I think the large evaluation and design phase for this project was the best approach.</p>
<p><strong>Edit:</strong> The system was in Karlsruhe at the en-route air traffic control centre run by the DFS, the German version of the FAA. The existing radar processing system was going to be replaced by Raytheon however delivery of the main system was delayed. So the DFS decided to upgrade the controller positions to those for the new system but attach them to the existing ATC processing system temporarily. Hence the name of the project Karlsruhe AdvancedDisplay System or KADS. A completely new wing was built on the back of the existing ATC centre as the whole control room was being replaced.</p>
<p>There was an enforced requirements gathering phase where the team was on-site working alongside the software engineers who'd built the existing system.</p>
<p>They documented:</p>
<ul>
<li>all messages between the existing radar processing system and the controller positions</li>
<li>all behaviours of the existing controller positions, touch panels, keyboards, display characteristics, etc.</li>
</ul>
<p>These requirements were then signed off by the DFS and the design phase started. This lasted about a month while several parts were prototyped and the best solutions identified. In parallel with the implementation was a test design phase where all requirements were traced through to the code and had an associated test.</p>
<p>Then coding and testing kicked off with several deliveries, approx. ten, done, each with an associated test and acceptance phase. A Scrum approach before it had a name in that we selected what chunks of work were to go into each "release" phase at the beginning of the phase. Final delivery came in on time and on budget.</p>
<p>The DFS intended to run the new system in parallel with the existing system for three months so that they could evaluate the performance and stability of the new system. Transferring completely over to the new system was an "all or nothing" proposal. They had to physically jackhammer the old radar lines out to remove the old telephone switch gear and there was no going back after that.</p>
<p>So for the German ATC service to be so happy with the system that they would do that was a big pat on the back for us!</p>
<p>BTW The number of the old software engineers who came up during the requirements phase and said that we weren't working because there was no code being written was quite funny. Definitely evidence of an old "seat of the pants" approach that was evident when you looked at some of the code. (-:</p>
<p>HTH</p>
<p>cheers,</p>
http://stackoverflow.com/questions/1133922/what-do-you-use-python-for/1133943#11339432Answer by Rob Wells for What do you use Python for?Rob Wells2009-07-15T20:47:59Z2009-11-13T10:42:38Z<p>All sorts of things.</p>
<p>From generating code for a major C++ project (>2,000 SLOC) to monitoring database servers.</p>
http://stackoverflow.com/questions/1722569/vim-deleting-xml-comments/1722784#17227841Answer by Rob Wells for Vim - Deleting XML CommentsRob Wells2009-11-12T14:57:08Z2009-11-12T14:57:08Z<p>G'day,</p>
<p>Doesn't entering</p>
<pre><code>da>
</code></pre>
<p>delete the comment when the cursor is placed somewhere within the comment block?</p>
<p>You have to have a vim with textobjects enabled at compile time. Entering:</p>
<pre><code>:vers
</code></pre>
<p>will let you see if textobjects are enabled in your build.</p>
<p>There's a lot of these funky text selections. Have a look at the <a href="http://vimdoc.sourceforge.net/htmldoc/motion.html#text-objects" rel="nofollow">relevant page in the docs</a>.</p>
<p><strong>Edit:</strong> You might have to add</p>
<pre><code>set matchpairs+=<:>
</code></pre>
<p>to your .vimrc for this to work.</p>
<p>HTH</p>
<p>cheers,</p>
http://stackoverflow.com/questions/1715347/bash-script-always-true/1715602#17156021Answer by Rob Wells for Bash script always trueRob Wells2009-11-11T14:41:31Z2009-11-11T14:41:31Z<p>G'day,</p>
<p>As an aside, instead of</p>
<pre><code>ps ax | grep -v grep | grep "processName"
</code></pre>
<p>Try doing</p>
<pre><code>ps ax | grep "[p]rocessName"
</code></pre>
<p>The ps is listing the grep function because it is seeing the string "grep processName" in the process list which is being passed by your grep for the string "processName".</p>
<p>Grepping for "[p]rocessName" will match just "processName" on its own, but not the string "grep [p]rocessName".</p>
http://stackoverflow.com/questions/1711795/linux-shell-how-to-read-command-argument-from-a-file/1711858#17118582Answer by Rob Wells for linux shell: How to read command argument from a file?Rob Wells2009-11-10T23:00:11Z2009-11-10T23:00:11Z<p>G'day,</p>
<p>You should be starting off gradually and then move up to the heavy stuff to kill the process if it doesn't want to play nicely.</p>
<p>A SIGKILL (-9) signal can't be caught and that will mean that any resources being held by the process won't be cleaned up.</p>
<p>Try using a kill SIGTERM (-15) first and then check for the presence of the process still by doing a kill -0 $(cat pid). If it is still hanging around, then by all means clobber it with -9.</p>
<p>SIGTERM can be caught by a process and any process that has been properly written should have a signal handler to catch the SIGTERM and then clean up its resources before exiting.</p>
<p>HTH</p>
http://stackoverflow.com/questions/1710307/how-to-add-a-o-on-a-static-library-with-eclipse/1710453#17104530Answer by Rob Wells for How to add a .o on a static library with Eclipse ?Rob Wells2009-11-10T19:13:36Z2009-11-10T19:13:36Z<p>G'day,</p>
<p>I know it sounds clunky, but you might have to come out of Eclipse and use ar directly. For example:</p>
<pre><code>ar -rv my_lib.a new_obj.o
ranlib
</code></pre>
<p>Running ranlib is probably not required anymore with more recent implementations of ar but it's best to run it anyway to make sure that the table has been updated.</p>
<p>HTH</p>
http://stackoverflow.com/questions/1710376/convert-files-of-any-types-to-a-file-with-c-strings/1710418#17104180Answer by Rob Wells for Convert files of any types to a file with c strings.Rob Wells2009-11-10T19:08:16Z2009-11-10T19:08:16Z<p>G'day,</p>
<p>While you're looking at awk I'd suggest having a look at the complete range of the <a href="http://www.cygwin.com/" rel="nofollow">cygwin utilities</a>.Lots of useful stuff in there.</p>
http://stackoverflow.com/questions/1710100/recommendation-for-a-good-functional-algorithms-book/1710209#17102090Answer by Rob Wells for Recommendation for a good functional algorithms bookRob Wells2009-11-10T18:38:26Z2009-11-10T18:38:26Z<p>G'day,</p>
<p>You want basic algorithms, e.g. sorting, etc., then invest in Donald Knuth's masterpiece "The Art of Computer Programming" (<a href="http://rads.stackoverflow.com/amzn/click/0201485419" rel="nofollow">Amazon link</a>)</p>
<p>A <strong>lot</strong> of people have used that as their bible for a long time.</p>
<p>BTW Don't forget his latest extensions as well.</p>
<p>HTH</p>
http://stackoverflow.com/questions/1710038/retrieving-a-string-with-spaces-from-a-file-in-c/1710085#17100850Answer by Rob Wells for retrieving a string with spaces from a file in CRob Wells2009-11-10T18:19:30Z2009-11-10T18:19:30Z<p>G'day,</p>
<p>As you're scanning up until the first number, the latitude, for your city name maybe use a scan for non-numbers for the first item?</p>
http://stackoverflow.com/questions/1662126/does-solaris-cc-embed-in-an-executable-differing-info-for-different-compiles1Does Solaris cc embed in an executable differing info for different compiles ?Rob Wells2009-11-02T15:56:42Z2009-11-10T14:29:05Z
<p>G'day,</p>
<p>This has been asked before for VC++ but I am interested in the answer for Solaris.</p>
<p>I'm compiling and linking the following trivial C code:</p>
<pre><code>#include <stdio.h>
int main() {
printf("Hello world!\n");
return 0;
}
</code></pre>
<p>using the command:</p>
<pre><code>cc -o hello1 hello.c
</code></pre>
<p>and doing this a couple of times to get executables hello2 and hello3. This is being done on the same machine with the same compiler and in the same directory just at different times.</p>
<p>The sizes of the executables are the same but diff reports the binaries as differing and cmp -l goes crazy with a long list of differing locations.</p>
<p>Anyone know what cc is embedding in the executables to make them differ? Timestamps?</p>
<p><strong>Edit:</strong> Stripping the executables as Chris suggested below makes diff report the two executables as identical.</p>
<p>cheers,</p>
http://stackoverflow.com/questions/1704402/scrum-in-sharepoint-online/1704500#17045000Answer by Rob Wells for SCRUM in SharePoint OnlineRob Wells2009-11-09T22:49:41Z2009-11-09T22:49:41Z<p>G'day,</p>
<p>I can't really comment on the SharePoint aspects as I'm a *nix guy. I thought I'd mention that you should be referring to it as Scrum. It's not an acronym but taken from a word that refers to a part of the game of rugby where everyone binds together and each team member has a particular job to do. So the convention is to refer to it as Scrum.</p>
<p>There are lots of excellent, free tools out there to assist with sorting out your burndown charts rather than just chewing raw Excel data.</p>
<p>BTW Good luck with the SharePoint bits. (-:</p>
<p><strong>Edit:</strong> Actually, while looking for a couple of tools I stumbled across the <a href="http://www.21apps.com/" rel="nofollow">21 Apps site</a> which specialises in Agile SharePoint solutions. Some interesting looking stuff there.</p>
http://stackoverflow.com/questions/1849358/how-to-redirect-stdout-and-stderr-from-csh-script/1849488#1849488Comment by Rob Wells on How to redirect stdout and stderr from csh script.Rob Wells2009-12-05T02:17:44Z2009-12-05T02:17:44ZOooh. good call to split it into two scripts. +1 Still don't think you should be sticking with csh though! (-:http://stackoverflow.com/questions/1849358/how-to-redirect-stdout-and-stderr-from-csh-script/1849473#1849473Comment by Rob Wells on How to redirect stdout and stderr from csh script.Rob Wells2009-12-04T22:37:59Z2009-12-04T22:37:59Z@Shelly, oops. forgot you wanted to duplicate to console.http://stackoverflow.com/questions/1849358/how-to-redirect-stdout-and-stderr-from-csh-script/1849473#1849473Comment by Rob Wells on How to redirect stdout and stderr from csh script.Rob Wells2009-12-04T22:25:31Z2009-12-04T22:25:31Z@Shelly, added. (-:http://stackoverflow.com/questions/1820505/how-do-i-implement-a-test-framework-in-a-legacy-project/1820600#1820600Comment by Rob Wells on How do I implement a test framework in a legacy projectRob Wells2009-11-30T17:23:21Z2009-11-30T17:23:21Z@Yishai, good point about the potential effects of late introduction of TDD. I think it could be added for completely new code though iff people know TDD already. Learning TDD, xUnit frameworks and unit testing basics all at once is <b>not</b> going to work well!http://stackoverflow.com/questions/1820505/how-do-i-implement-a-test-framework-in-a-legacy-project/1820582#1820582Comment by Rob Wells on How do I implement a test framework in a legacy projectRob Wells2009-11-30T16:27:03Z2009-11-30T16:27:03Z@Skoog, no probs! Get them to vote me up! (-:http://stackoverflow.com/questions/1820505/how-do-i-implement-a-test-framework-in-a-legacy-project/1820582#1820582Comment by Rob Wells on How do I implement a test framework in a legacy projectRob Wells2009-11-30T16:12:32Z2009-11-30T16:12:32Z@Skoog, just added a link to an excellent intro to unit testing.http://stackoverflow.com/questions/1820505/how-do-i-implement-a-test-framework-in-a-legacy-projectComment by Rob Wells on How do I implement a test framework in a legacy projectRob Wells2009-11-30T15:43:07Z2009-11-30T15:43:07Z@Ewan, agreed. +1http://stackoverflow.com/questions/1812990/incrementing-in-c-when-to-use-x-or-xComment by Rob Wells on Incrementing in C++ - When to use x++ or ++x?Rob Wells2009-11-28T16:57:42Z2009-11-28T16:57:42ZJust added the language to the question so that it's easier to see in searches.http://stackoverflow.com/questions/1796376/what-are-good-and-bad-ways-to-document-a-software-project/1796439#1796439Comment by Rob Wells on What are good and bad ways to document a software project?Rob Wells2009-11-27T15:01:38Z2009-11-27T15:01:38Z@schoetbi, i agree but that is a very specific area of the documentation. I've seen wikis work very successfully when a split happened for different versions of a project. When the split happened, new pages were created to document the individualities of the versions. That is, one page covering the common aspects and then that page is updated with links through to the new pages that are used to specify the specific aspects of the new versions that are different.http://stackoverflow.com/questions/1796209/how-to-link-to-vs2008-generated-libs-from-g/1796284#1796284Comment by Rob Wells on How to link to VS2008 generated .libs from g++Rob Wells2009-11-25T14:09:16Z2009-11-25T14:09:16Z@Ben, Yikes! It's not looking good. Sorry mate.http://stackoverflow.com/questions/1755550/what-is-the-reasoning-behind-the-makefile-whitespace-syntax/1755905#1755905Comment by Rob Wells on What is the reasoning behind the Makefile whitespace syntax?Rob Wells2009-11-23T12:35:29Z2009-11-23T12:35:29Z@Ned, I thought makefiles accepted more than one space and weren't limited to one and only one TAB character.http://stackoverflow.com/questions/1755550/what-is-the-reasoning-behind-the-makefile-whitespace-syntaxComment by Rob Wells on What is the reasoning behind the Makefile whitespace syntax?Rob Wells2009-11-19T00:28:36Z2009-11-19T00:28:36Z@Pavel, just posted an answer. BTW +1 for the comment.http://stackoverflow.com/questions/1755550/what-is-the-reasoning-behind-the-makefile-whitespace-syntax/1755905#1755905Comment by Rob Wells on What is the reasoning behind the Makefile whitespace syntax?Rob Wells2009-11-18T15:29:57Z2009-11-18T15:29:57Z@Ned, yep agree with you. I guess by making it a "Thou shalt tab!" we don't have to worry about discussions like those about being Pythonic! (-:http://stackoverflow.com/questions/1752473/how-to-turn-off-a-unit-test-in-cppunit/1752491#1752491Comment by Rob Wells on how to turn off a unit test in CPPUnitRob Wells2009-11-18T11:33:51Z2009-11-18T11:33:51Z@rmeador, added a bit more info and a suggestionhttp://stackoverflow.com/questions/1743803/c-linker-lack-of-duplicate-symbols/1743833#1743833Comment by Rob Wells on C++ linker - Lack of duplicate symbolsRob Wells2009-11-17T08:51:48Z2009-11-17T08:51:48ZFlag dupes as errors. Or flag them as warnings.