User GeoffBurns - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T18:26:32Z http://stackoverflow.com/feeds/user/5398 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/172867/is-there-an-easier-way-to-track-scope-changes-in-extremeplanner 0 Is there an easier way to track scope changes in ExtremePlanner? GeoffBurns 2008-10-05T23:55:12Z 2009-07-16T20:49:18Z <p>I am about to join a new software team midway through a project. They are using ExtremePlanner to track their progress. </p> <p>While they tracking tasks completed, they are not tracking how the estimated size of the project is changing over time. In the short time I have been monitoring the project this estimate has changed faster than the completion rate of the tasks. My gut feeling says that this is not just a blip but a problem that has been consistent throughout the project lifetime.</p> <p>But how do I prove or disprove this?</p> <p>I have not found the ExtremePlanner metrics useful for this. I have been exporting the data to MS Excel but the exported task and story info is missing important data like the creation date. Working around this is a bit of work. Is there a better way of doing this?</p> <p>Alternately am I making too much of this? It has been argued by some of my prospective team mates that since no new features have been added that the scope has not changed and it is not a problem. However I argue that since new work within the features is continually being found the scope is changing and that this needs to be taken in to account when estimating the release date.</p> http://stackoverflow.com/questions/165386/how-do-i-improve-compiling-speed-in-visual-studio-c-2003-project-that-is-using 3 How do I improve compiling speed in Visual Studio C++ 2003 project that is using C++ Boost Libraries GeoffBurns 2008-10-03T02:03:54Z 2008-10-03T02:38:18Z <p>I have just started using Boost 1.36. These libraries would be very useful in reducing the amount of code needed in the unmanaged C++ software project that I am working on.</p> <p>However when I tried to used these libraries my compile times increased ten fold. This would pretty much offset the productivity gains I would receive by using the library.</p> <p>I am using a 3GHz Intel Dual Core with 2GB of RAM and VS 2003.</p> <p>There is a snippet of the code that I added.</p> <pre> #include "boost/numeric/ublas/matrix.hpp" #include "boost/numeric/ublas/vector.hpp" #include "boost/numeric/ublas/matrix_proxy.hpp" typedef ublas::bounded_matrix &lt;long double,NUM_OF_COLUMNS,NUM_OF_CATEGORIES,ublas::row_major&gt; Matrix; typedef ublas::bounded_vector &lt;long double,NUM_OF_COLUMNS&gt; Vector; </pre> <p><code> void Print(const Matrix&amp; amount)<br /> {</p> <pre><code>Vector total; total.clear(); for (int category = 0; category &lt; NUM_OF_CATEGORIES; category++) { PrintLine(ublas::row(amount, category)); total += ublas::row(amount, category); } PrintLine(total); </code></pre> <p>} </code></p> <p>Is the problem with VS 2003?<br /> I know that VS 2008 is faster but upgrading is going to be a hard sell.<br /> Is it just that Boost is optimized for fast run times not fast compile times?<br /> Am I just using the Boost Library in a sub-optimal manner?<br /> Or am I just using the wrong tool for the job? </p> http://stackoverflow.com/questions/58107/how-to-find-that-rock-star-junior-developer/58196#58196 1 Answer by GeoffBurns for How to Find that Rock Star Junior Developer? GeoffBurns 2008-09-12T02:32:45Z 2008-09-12T02:32:45Z <p>The best way is if you already know them from before the interview e.g. from a user group or special interest group.</p> http://stackoverflow.com/questions/58107/how-to-find-that-rock-star-junior-developer/58182#58182 0 Answer by GeoffBurns for How to Find that Rock Star Junior Developer? GeoffBurns 2008-09-12T02:20:54Z 2008-09-12T02:20:54Z <p>I test on code comprehension. I use the same standard piece of code that I use to torture all potential developer hires. This allows me to compare and contrast. It is amazing how experience does not necessary determine whether they pass or fail.</p> <p>If you or the other stakeholders in the are impatient this limits the high of the bar you can set. The more people you put though the process the more dimensions you can test on. If HR gives you 4 people to interview you can only test on about one and a half dimensions and bar of the minimum you are willing the put up with.</p> http://stackoverflow.com/questions/58086/what-are-best-practices/58103#58103 0 Answer by GeoffBurns for What are "best practices"? GeoffBurns 2008-09-12T01:27:40Z 2008-09-12T01:27:40Z <p>For any language or domain their will idioms that will be instantly recognized and understood by anyone familiar with the field. I incorporating these will make it easier on any maintainers.</p> <p>Whether these are better in any absolute sense? It depends. </p>