User philippe - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:08:18Z http://stackoverflow.com/feeds/user/18804 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1807498/are-there-any-good-blogs-for-software-team-leaders-or-software-project-managers/1807548#1807548 3 Answer by philippe for Are there any good blogs for software team leaders or software project managers? philippe 2009-11-27T08:59:33Z 2009-11-27T09:06:48Z <p>In addition to Rands in Repose, I'd suggest <a href="http://www.noop.nl/" rel="nofollow">noop.nl</a>, it's well-written, fun and inspired. </p> http://stackoverflow.com/questions/1805257/elements-of-a-structure/1805283#1805283 2 Answer by philippe for elements of a structure philippe 2009-11-26T19:19:58Z 2009-11-26T19:19:58Z <p>This is possible with X-macros. See <a href="http://stackoverflow.com/questions/1784782/is-there-any-way-to-loop-through-a-struct-with-elements-of-diferent-types-in-c/1785699#1785699">this answer where I demonstrate exactly this</a>.</p> http://stackoverflow.com/questions/1803136/gathering-requirements-with-scrum/1803253#1803253 2 Answer by philippe for Gathering Requirements with Scrum philippe 2009-11-26T11:52:12Z 2009-11-26T11:52:12Z <p>We have someone in the team that is in charge of fixing the requirements on behalf of the Product owner. Sometimes we have just-in-time requirements, sometimes, we have some rework to do. QA accepts the requirements are reviewed formally in the latest sprints of the release. </p> <p>The team should only commit for tasks that are clearly defined by the Product Owner, otherwise they cannot be estimated. Perhaps you could shorten your iteration so that only stable requirements can be planned ? </p> <p>If your process mandates this review cycle, then perhaps you can restrict your sprintable items to those approved by the product manager/management/stakeholder. </p> http://stackoverflow.com/questions/1800658/unit-testing-how-to-go-about-it/1803162#1803162 0 Answer by philippe for Unit Testing - How to go about it? philippe 2009-11-26T11:33:29Z 2009-11-26T11:33:29Z <blockquote> <p>Would it be possible to run the blackbox tests from a unit test framework?</p> </blockquote> <p>Yes, you could invoke the Autotest with <code>system()</code> from the unit tests and then assert on the returned value. </p> <p>But I wouldn't recommend doing that as unit tests are executed very often, they shall be very fast i.e. measured in seconds, not in minutes. </p> <p>Unit tests and integration tests (which you call blackbox tests) serve different purposes: unit tests validate that the <em>units</em> in the code (whatever this means, function or clusters of function) works as expected by the tests, while integration tests cover the program end-to-end, validating it as a whole. </p> <p>So, typically unit tests are ran after every few changes in the code, especially if you apply TDD, while integration tests are executed when a capability has been added. </p> <p>I would rather have a typical unit-test program(s), with assertions, and an integration suite that would invoke the unit-tests in addition to your blackbox tests. </p> <blockquote> <p>The problem is that I am not sure what boundary to use between assertions and outputting the return value of the function (for logging purposes, since I like how Autotest will give me a diff).</p> </blockquote> <p>With assertions there is nothing to output: either the expected and the actual values are equal and nothing happens, or they are different and the UT framework prints out an error message (expected is X, actual is Y). That is one let the computer do the job of testing. </p> <p>With logging output diff, one has still to manually (visually) inspect the outcome of the diff (for instance: is there one item missing in the list or one extra item ...). </p> <blockquote> <p>Since most functions return lists, it is quicker to prepare using the diff with expected output (expout using Autotest).</p> </blockquote> <p>You might want to write a function that compares lists using assertions. </p> http://stackoverflow.com/questions/1796333/predeclaration-in-c/1796436#1796436 2 Answer by philippe for predeclaration in c++ philippe 2009-11-25T11:46:30Z 2009-11-25T12:27:35Z <p>Turbo C++ is a very old compiler for MS-DOS, although it was renewed in 2006.</p> <ul> <li>Remove conio.h as you will unlikely have it on Fedora</li> <li>scope of variable declared in for loop is now reduced to the loop you have to redeclare i as an int in every <code>for(i=0</code> ... statement </li> <li><p>define the void router::build(int j) method outside of the router class : </p> <p>class router { </p> <pre><code> void router::build(int j) </code></pre> <p>} r[10];</p> <p>void router::build(int j) { ...} </p></li> <li><p>Compile with g++ -ansi (<strong>EDIT</strong> no <em>required</em> here)</p></li> </ul> http://stackoverflow.com/questions/1795203/how-to-use-cpp-unit/1795488#1795488 2 Answer by philippe for how to use cpp unit philippe 2009-11-25T08:44:11Z 2009-11-25T08:44:11Z <p>Unit-testing allows testing classes <strong>in isolation</strong>, one method at a time.</p> <p>Basically a testcase creates one instance of the class being tested and the class it depends on, invoke one method and verify the method worked as expected with <strong>assertions</strong>. </p> <p>A great way to achieve unit-testing is <a href="http://en.wikipedia.org/wiki/Test-driven%5Fdevelopment" rel="nofollow">Test-Driven Development</a> (TDD), where the unit-tests are written before the code. While this may sounds weird at first, this allows to obtain code that is testable (and tested). If the code is written first, then it might not be testable easily. </p> <p>The TDD process is as follows:</p> <p>RED: write a test that fails GREEN: write just enough code to make it pass REFACTOR: cleanup the code, remove duplication</p> <p><hr></p> <p>I'm not sure CppUnit is the most widely used. It's a portation of jUnit - the Java framework - but it's quite heavy ; there exists simplified verisons: CppUnitLite, NanoCppUnit and also Cxxtest, Boost.Test and TUT, see <a href="http://en.wikipedia.org/wiki/List%5Fof%5Funit%5Ftesting%5Fframeworks#C.2B.2B" rel="nofollow">this list</a> on Wikipedia. If you're not tied to CppUnit, there is an <a href="http://gamesfromwithin.com/exploring-the-c-unit-testing-framework-jungle" rel="nofollow">article comparing them</a>. </p> http://stackoverflow.com/questions/1784782/is-there-any-way-to-loop-through-a-struct-with-elements-of-diferent-types-in-c/1785699#1785699 4 Answer by philippe for Is there any way to loop through a struct with elements of diferent types in C? philippe 2009-11-23T20:22:45Z 2009-11-24T09:42:51Z <p>I'm not sure what you want to achieve, but you can use <strong><a href="http://en.wikipedia.org/wiki/C%5Fpreprocessor#X-Macros" rel="nofollow">X-Macros</a></strong> and have the preprocessor doing the iteration over all the fields of a structure:</p> <pre><code>//--- first describe the structure, the fields, their types and how to print them #define X_FIELDS \ X(int, field1, "%d") \ X(int, field2, "%d") \ X(char, field3, "%c") \ X(char *, field4, "%s") //--- define the structure, the X macro will be expanded once per field typedef struct { #define X(type, name, format) type name; X_FIELDS #undef X } mystruct; void iterate(mystruct *aStruct) { //--- "iterate" over all the fields of the structure #define X(type, name, format) \ printf("mystruct.%s is "format"\n", #name, aStruct-&gt;name); X_FIELDS #undef X } //--- demonstrate int main(int ac, char**av) { mystruct a = { 0, 1, 'a', "hello"}; iterate(&amp;a); return 0; } </code></pre> <p>This will print :</p> <pre><code>mystruct.field1 is 0 mystruct.field2 is 1 mystruct.field3 is a mystruct.field4 is hello </code></pre> <p>You can also add the name of the function to be invoked in the X_FIELDS...</p> http://stackoverflow.com/questions/1783922/how-to-unit-test-the-sorting-of-a-stdvector/1788482#1788482 1 Answer by philippe for How to unit test the sorting of a std::vector philippe 2009-11-24T07:42:28Z 2009-11-24T07:42:28Z <p>The TDD process is </p> <ol> <li><p>RED: write a test, verify it fails </p></li> <li><p>GREEN write just enough code to make it pass, verify it passes</p></li> <li><p>refactor the code - both the test and the production code</p></li> </ol> <p>If you find yourself having to resort to the debugger at step 2, it <em>could</em> be that you're testing too much at a time. <strong>Divide and conquer</strong>. Although dividing could not be so easy for a sorting algorithm, did you start with sorting an empty vector, then a vector with a single element, then a vector with two elements already ordered, a vector with two elements in the wrong order ...</p> http://stackoverflow.com/questions/1771983/in-agile-scrum-user-stories-how-much-detail-is-enough/1776113#1776113 0 Answer by philippe for In agile/scrum user stories, how much detail is enough? philippe 2009-11-21T17:25:14Z 2009-11-22T15:51:18Z <p>Scrum backlog items/User Stories do not need to be very specific to be added to the Backlog.</p> <p>More details is required to make them sprintable (schedulable in a Sprint). Enough detail is needed at that time so that it can be estimated, and it should have a clearly defined <strong>completion criteria</strong>. </p> <p>A <a href="http://alistair.cockburn.us/A+user+story+is+to+a+use+case+as+a+gazelle+is+to+a+gazebo" rel="nofollow">User Story is a promise for a conversation</a> with the Product Owner about the scenario it covers.</p> <p>Premature details are a <strong>waste</strong>.</p> http://stackoverflow.com/questions/1757373/which-unit-testing-framework-to-use-for-c-development-on-windows/1763918#1763918 2 Answer by philippe for Which unit testing framework to use for C development on Windows? philippe 2009-11-19T15:04:57Z 2009-11-19T15:04:57Z <p><a href="http://www.jera.com/techinfo/jtns/jtn002.html" rel="nofollow">minunit</a> only is four macros long, so it'll compile on <strong>any</strong> platform. It's not fully-featured, but does the job, and can be easily extended to fit your needs. </p> http://stackoverflow.com/questions/1757053/are-there-any-debugging-patterns/1757263#1757263 1 Answer by philippe for Are there any Debugging Patterns? philippe 2009-11-18T16:30:09Z 2009-11-18T16:30:09Z <p><strong>Fault isolation</strong> is one. Does the problem occur on all the OSes, or is it related to one OS only ? </p> <p>Proceed by dichotomy to determine the location and the cause of the problem. </p> http://stackoverflow.com/questions/1752188/can-scrum-work-with-mediocre-developers/1757211#1757211 0 Answer by philippe for Can Scrum work with mediocre developers? philippe 2009-11-18T16:22:32Z 2009-11-18T16:22:32Z <p>The most important is their learning willpower. If they are ready to learn and progress, then Scrum can guide them. If they are satisfied with things as described, then ...</p> <p>Moreover, with Scrum the Team will know sooner how they are doing, which could challenge them. </p> <p>Add a seasoned developer to lead by example, if possible. </p> http://stackoverflow.com/questions/222243/best-way-of-using-scrum-and-sprint-for-infrastructure-improvement/229416#229416 1 Answer by philippe for Best way of using Scrum and Sprint for Infrastructure improvement philippe 2008-10-23T11:38:09Z 2009-11-14T09:24:45Z <p>Scrum is a project management method, it is not specifically aimed at software development ; so it can be used for network enhancement project. </p> <p>You said you're struggling with "sprint that never finishes", that is not Scrum. Sprint are timeboxed, they finish on time, period. </p> <p>Now, if the team overcommitted for the sprint, or if some tasks were underestimated, and there are backlog items that are not "done done", they are removed from the outcome of the sprint, and may be continued in the next sprint. </p> <p>There are several things you can do to prevent overcommitement :</p> <ul> <li>backlog items shall be small ; small items are easier to estimate that large items. Actually, they should have <a href="http://xp123.com/xplor/xp0308/index.shtml" rel="nofollow">INVEST characteristics</a>. <strong>EDIT</strong>: the backlog items should be sized so that the Team can complete between 5 and 10 in one Sprint, <em>on average</em>.</li> <li>after the first sprint, you now how much the team can put in a sprint (provided comparable ressources)</li> <li>do not allocate people 100% on the sprint, start with 80% as a rule of thumb</li> <li>define what "done" means</li> <li>re-estimate your backlog items based on what your learnt</li> </ul> <p>If the network enhancement project never finishes, I assume it is because new needs are identified. Add them in your backlog, prioritize them, estimate them, they will eventually be scheduled in a sprint. </p> http://stackoverflow.com/questions/1729091/unit-test-a-method-that-creates-an-object/1729160#1729160 0 Answer by philippe for unit test a method that creates an object philippe 2009-11-13T13:18:42Z 2009-11-13T13:18:42Z <p>You do not want to use the real controller but a mock, right ? </p> <p>It seems to me the simplest way to achieve this would be to subclass the request so that it returns the name of a MockController. </p> http://stackoverflow.com/questions/311807/unit-testing-with-functions-that-return-random-results/1714934#1714934 0 Answer by philippe for Unit Testing with functions that return random results philippe 2009-11-11T12:37:53Z 2009-11-11T12:37:53Z <p>Methods that do not exhibit a <strong>deterministic behavior</strong> cannot be properly unit-tested,as the results will differ from one execution to another. One way to get around this is to <a href="http://en.wikipedia.org/wiki/Random%5Fseed" rel="nofollow">seed</a> the random number generator with a fixed value for the unit test. You can also extract the randomness of the date generation class (and thus applying the <a href="http://www.objectmentor.com/resources/articles/srp.pdf" rel="nofollow">Single Responsibility Principle</a>), and inject known values for the unit-tests. </p> http://stackoverflow.com/questions/1701869/unit-testing-file-structure/1710580#1710580 0 Answer by philippe for Unit testing. File structure philippe 2009-11-10T19:32:45Z 2009-11-10T19:32:45Z <p>Keep the test code close to the product code, and arrange your Makefile (or whatever you're using) so that the tests compile at the same time as the test, to make them visible, especially if not everyone in the team is writing tests. </p> http://stackoverflow.com/questions/1708910/resources-for-tdd-best-practices-methods-etc/1709345#1709345 0 Answer by philippe for Resources for TDD best practices, methods, etc philippe 2009-11-10T16:40:08Z 2009-11-10T16:40:08Z <p>Two classics:</p> <ul> <li><a href="http://junit.sourceforge.net/doc/testinfected/testing.htm" rel="nofollow">Test infected: programmers love writing tests</a>.</li> <li><a href="http://www.objectmentor.com/resources/articles/xpepisode.htm" rel="nofollow">The bowling game episode</a>.</li> </ul> http://stackoverflow.com/questions/1708030/how-to-initialize-struct-in6addr/1708283#1708283 0 Answer by philippe for How to initialize struct in6_addr? philippe 2009-11-10T14:15:46Z 2009-11-10T14:15:46Z <p>Because one need to indicate which form of the address it is addressing (shown using C99):</p> <pre><code>const struct in6_addr naddr6 = { { .u6_addr32 = { 0x3ffe0501, 0x00080000, 0x026097ff, 0xfe40efab } } }; </code></pre> <p>The first bracket pair is for the in6_addr struct, the second for the union:</p> <pre><code>struct in6_addr { union { uint8_t u6_addr8[16]; uint16_t u6_addr16[8]; uint32_t u6_addr32[4]; } in6_u; }; </code></pre> http://stackoverflow.com/questions/1700703/unit-for-estimating-hours-in-scrum-tool/1700817#1700817 1 Answer by philippe for Unit for estimating hours in Scrum tool philippe 2009-11-09T12:53:38Z 2009-11-09T12:53:38Z <p>Use hours for both the initial estimate and the remaining time. Tasks are usually estimated in hours. </p> <p>You can use Scrum point - or any other unit - to estimate the backlog items. </p> http://stackoverflow.com/questions/1699661/design-classes-oops-features/1700040#1700040 0 Answer by philippe for Design classes - OOPS features philippe 2009-11-09T09:49:53Z 2009-11-09T10:11:24Z <p>Give a look a <a href="http://en.wikipedia.org/wiki/Domain-driven%5Fdesign" rel="nofollow">Domain-Driven</a> <a href="http://domaindrivendesign.org/" rel="nofollow">Design</a>, which defines entities, value objects, factories, services and repositories and the <a href="http://en.wikipedia.org/wiki/GRASP%5F%28Object%5FOriented%5FDesign%29" rel="nofollow">GRASP patterns</a> (General Responsibility Assignment Software Patterns) e.g. Expert, Creator, Controller. </p> http://stackoverflow.com/questions/1661628/which-objects-to-mock-when-doing-tdd/1697402#1697402 0 Answer by philippe for Which objects to mock when doing TDD philippe 2009-11-08T18:14:57Z 2009-11-08T18:14:57Z <p>Only mock the objects that gets in the way when writing the unit tests. If a method creates an object to perform its tasks an you can probe its result, then there is no need to mock the class of the object that is creates. </p> <p>Use mock when you want to isolate a class from other. Use mock so keep the tests away from</p> <ul> <li>filesystems</li> <li>databases</li> <li>networks</li> <li>object with unpredictable behavior (clock, random number generator ...)</li> </ul> <p>Separate usage of object from their construction</p> http://stackoverflow.com/questions/1696855/signal-segmentation-fault-where-this-error-is-coming-from/1697335#1697335 0 Answer by philippe for "signal Segmentation fault". Where this error is coming from? philippe 2009-11-08T17:54:35Z 2009-11-08T17:54:35Z <p>A <a href="http://en.wikipedia.org/wiki/Segmentation%5Ffault" rel="nofollow">segfault</a> basically is caused by an attempt to access memory in a non-authorized way. To determine where the problem occured, a <a href="http://en.wikipedia.org/wiki/Core%5Fdump" rel="nofollow">core file</a> can have been generated on your system. If necessary the system has to be configured to get those files, but this depends on your system ; see <a href="http://man.cx/coreadm%281M%29" rel="nofollow">coreadm(1M)</a> for instance. </p> <p>Once you get the core file you can get the stack trace of the process that caused the fault with an utility such as <a href="http://man.cx/pstack" rel="nofollow">pstack</a>, and many more with a debugger.</p> http://stackoverflow.com/questions/120164/how-to-work-in-untestable-legacy-code-in-bug-fixing/1688377#1688377 0 Answer by philippe for How to work in untestable legacy code- in bug fixing philippe 2009-11-06T15:38:25Z 2009-11-06T15:38:25Z <p>An alternative to unit-tests when addressing legacy code is introduced in the book <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code</a> : </p> <p><a href="http://en.wikipedia.org/wiki/Characterization%5FTest" rel="nofollow">Characterization tests</a> are tests that pin down (characterize) the current behavior of the code and sense when changes invalidate it. Quoting Wikipedia: </p> <blockquote> <p>The goal of characterization tests is to help developers verify that the modifications made to a reference version of a software system did not modify its behaviour in unwanted or undesirable ways. They enable, and provide a safety net for, extending and refactoring code that does not have adequate unit tests.</p> </blockquote> http://stackoverflow.com/questions/1679647/automated-testing-approach/1687439#1687439 0 Answer by philippe for Automated Testing Approach philippe 2009-11-06T12:58:49Z 2009-11-06T12:58:49Z <p>It's very difficult to retrofit unit-tests into legacy code (that is code without unit-tests). There is a book about this: <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working effectively on legacy code</a>. Unit-testing should be applied when developing new code. </p> <p>It's not easy to recommend tools without information on the type of the product that is being testing. You might have to add internal interfaces so that test tools can poke the product: to test a GUI-based application, you can add an <em>undocumented</em> option to supply a command file that will simulate user actions. </p> <p>Look at the more tedious and error-prone tasks of the manual testing, what testers complain the most of. </p> <p>Automate your tests steps by steps, for instance, tests execution first and results verification (PASS/FAIL criteria) in a second phase. </p> <p>Keep hard tasks manual (e.g. installation, configuration) in the beginning.</p> <p>In short, apply a low hanging fruit strategy. </p> <p>Also strive to reproduce every problem fixed in the codebase with an automatic test, this will help verification on the fix and constitute automatic regression testing. </p> <p>Scripting (bash, Perl, Powershell, whatever) is certainly helpful when dealing with automation. </p> http://stackoverflow.com/questions/654905/legacy-code-nightmare/1687419#1687419 0 Answer by philippe for Legacy Code Nightmare philippe 2009-11-06T12:55:20Z 2009-11-06T12:55:20Z <p>You could extract and then refactor some part of it, to break the dependencies and isolate layers into different modules, libraries, assemblies, directories. Then you re-inject the cleaned parts in to the application with a <a href="http://www.martinfowler.com/bliki/StranglerApplication.html" rel="nofollow">strangler application</a> strategy. Lather, rinse, repeat. </p> http://stackoverflow.com/questions/1661204/how-do-you-organize-your-work/1661247#1661247 2 Answer by philippe for How do you organize your work? philippe 2009-11-02T13:11:24Z 2009-11-02T13:11:24Z <blockquote> <p><a href="http://www.forcedo.com/" rel="nofollow">ForceDo</a> is a free online to do list. You can add as many tasks as you want and start a timer which will force you to get things done. ForceDo will help you beat your procrastination.</p> </blockquote> <p>A mix a to-do list and <a href="http://www.pomodoro-book.com/" rel="nofollow">pomodoro</a>.</p> http://stackoverflow.com/questions/1569132/has-anybody-used-unit-testing-as-a-way-to-learn-programming/1605480#1605480 1 Answer by philippe for Has anybody used Unit Testing as a way to learn programming? philippe 2009-10-22T07:02:30Z 2009-11-02T11:19:48Z <p>As a sidenote, TDD and/or unit testing can come very late in the learning process. Even seasoned programmers can gain from <strong>Learning Tests</strong> when starting working with a new language, or a new API. </p> <p>Kent Beck recommends this under the "<a href="http://books.google.com/books?id=goE1TL0u0dUC&amp;pg=PA136&amp;lpg=PA136&amp;dq=%22learning%20test%22&amp;source=bl&amp;ots=I9xBqSezDf&amp;sig=VWL3w32Z1lR5hH37-VvQ9srX%5FeM&amp;hl=en&amp;ei=1v7fSsCCFpWx4Qbnr8wX&amp;sa=X&amp;oi=book%5Fresult&amp;ct=result&amp;resnum=1&amp;ved=0CAsQ6AEwAA#v=onepage&amp;q=%22Learning%20Test%22&amp;f=false" rel="nofollow">Learning test</a>" name in its "Red bar patterns" in Test-Driven Development: by example.</p> <blockquote> <p>Instead of just using a new method or a new class, we write a little test that verifies that the API works as expected.</p> </blockquote> <p>Likewise, Mike Clark wrote a suite of 400+ tests while <a href="http://www.clarkware.com/cgi/blosxom/2005/03/18/RLT1" rel="nofollow">learning Ruby</a>. </p> <blockquote> <p>Writing learning tests is a fun way to poke and prod any new language or API. And with every test you write you're investing in an executable knowledge base.</p> </blockquote> http://stackoverflow.com/questions/1592281/recommended-thing-for-a-tdd-newbie/1652632#1652632 0 Answer by philippe for Recommended thing for a TDD newbie philippe 2009-10-30T22:24:17Z 2009-10-30T22:24:17Z <blockquote> <p>Do I have to do test-first in TDD? </p> </blockquote> <p>Yes, TDD is necessarily test-first. Writing the test first allows to think about the function to be written in terms of behavior, rather than of implementation, focusing on invoking the function and verifying the result. This leads to testable code ; otherwise you may find yourself in a dead end.<br /> Writing tests first also make it easier not to forget or neglect tests. </p> <p>Moreover, writing - and failing - the tests first allows testing the test. A test written after the code might never fail.</p> <blockquote> <p>Shall we prefer to use BDD over TDD? </p> </blockquote> <p>Some say <a href="http://thediscoblog.com/2007/08/28/is-bdd-tdd-done-right/" rel="nofollow">BDD is TDD done right</a> as the focus is put on specifications.</p> <blockquote> <p>Do we have to mock the data in TDD? Some people from my team used to say that they are praticsing TDD. But they never follow test-first approach. </p> </blockquote> <p>You don't <em>have to</em> use mock objects. There are just a tool, that can be convenient sometimes.</p> <blockquote> <p>"Using Mock Library" Vs "creating the mock class with data manually". </p> </blockquote> <p>I never felt the need to resort to a mock object generator. </p> <blockquote> <p>Any recommended book for TDD or BDD?</p> </blockquote> <p>TDD by example, is a very good tutorial and presents a bunch of patterns. Another great book, more a reference is <a href="http://xunitpatterns.com/" rel="nofollow">xUnit patterns</a>.</p> http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/194356#194356 0 Answer by philippe for How do you document your coding standards? philippe 2008-10-11T17:35:16Z 2009-10-30T21:49:06Z <p>I do everything to make it easy to apply for everyone:</p> <ul> <li>first of all, everyone in the team should agree to apply them </li> <li>I share setting for used editors (gvim, emacs ...)</li> <li>I provide empty source file with the boilerplate heading</li> <li>I sumarize the standard on a single reference sheet, not showing the rules but a piece of code properly formatted as standardized</li> </ul> http://stackoverflow.com/questions/1650844/user-story-size-scope/1652458#1652458 1 Answer by philippe for User story size/scope philippe 2009-10-30T21:35:00Z 2009-10-30T21:35:00Z <p>Stories shall bring value to customers, and have acceptance criteria so that it's easy to know if a story is complete. </p> <p>Also, <strong>size matters</strong> here, the team shall be able to complete between 5 and 10 stories in on iteration. </p> <p>If necessary, user stories can be <a href="http://xp123.com/xplor/xp0512/index.shtml" rel="nofollow">split</a> or grouped. </p> http://stackoverflow.com/questions/1805257/elements-of-a-structure/1805283#1805283 Comment by philippe on elements of a structure philippe 2009-11-27T07:15:16Z 2009-11-27T07:15:16Z You're right, I voted to close this one, too. http://stackoverflow.com/questions/1795203/how-to-use-cpp-unit Comment by philippe on how to use cpp unit philippe 2009-11-25T07:42:40Z 2009-11-25T07:42:40Z What is bugging you: CppUnit in itself - or more generally unit-testing ? http://stackoverflow.com/questions/614193/how-to-use-rolling-log-using-log4c/1745414#1745414 Comment by philippe on How to use rolling log using log4c? philippe 2009-11-20T07:20:46Z 2009-11-20T07:20:46Z Helpful, thanks, and good luck for your &quot;neuromancer&quot; badge ;-) http://stackoverflow.com/questions/1757373/which-unit-testing-framework-to-use-for-c-development-on-windows/1757516#1757516 Comment by philippe on Which unit testing framework to use for C development on Windows? philippe 2009-11-20T07:14:35Z 2009-11-20T07:14:35Z +1 for the slides, truly awesome. http://stackoverflow.com/questions/1733998/common-table-expression-giving-error Comment by philippe on Common table expression giving error philippe 2009-11-14T11:42:36Z 2009-11-14T11:42:36Z what is the error ? http://stackoverflow.com/questions/1708253/well-established-scientific-truths-about-software-engineering Comment by philippe on Well-established scientific truths about software engineering philippe 2009-11-10T14:22:33Z 2009-11-10T14:22:33Z There is always one more bug http://stackoverflow.com/questions/235848/most-astonishing-violation-of-the-principle-of-least-astonishment/236061#236061 Comment by philippe on Most Astonishing Violation of the Principle of Least Astonishment philippe 2009-10-20T13:16:37Z 2009-10-20T13:16:37Z Same kind of issue with formatting a 3&#189; disk on a Mac in 1988. I remember spending a long time figuring out where I could find this option in the menus ... until mechanically inserting it and getting a popup asking &quot;Unreadable disk, do you want to format it ?&quot; http://stackoverflow.com/questions/1477209/dijit-combobox-filter-autocomplete/1496357#1496357 Comment by philippe on Dijit Combobox filter autocomplete philippe 2009-10-14T11:34:18Z 2009-10-14T11:34:18Z This seems to be the behavior of the widget, I'm afraid you will have to customize the widget - or ask the Dojo people. http://stackoverflow.com/questions/1506674/can-i-tell-if-all-tests-passed-under-perls-testmore/1506700#1506700 Comment by philippe on Can I tell if all tests passed under Perl's Test::More? philippe 2009-10-02T12:34:42Z 2009-10-02T12:34:42Z I've got Can't locate object method &quot;is_passing&quot; via package &quot;Test::Builder&quot; at ./put.pl line 9. with Perl v5.8.4 with 31 registered patches (on Solaris 10) :o( http://stackoverflow.com/questions/1410002/agile-dealing-with-changing-requirements-for-already-implemented-features/1410091#1410091 Comment by philippe on Agile - Dealing with changing requirements for already implemented features philippe 2009-10-02T11:34:35Z 2009-10-02T11:34:35Z In a pure agile environment, that's right. But we do not know the context here - it seems the stories are not kept on index cards but in an electronic document. If this document is used in any way, it might be better to update the initial story. http://stackoverflow.com/questions/1491749/define-and-functions-with-variable-length-arguments/1491797#1491797 Comment by philippe on #define and functions with variable length arguments philippe 2009-09-29T15:30:32Z 2009-09-29T15:30:32Z +1 thanks a lot for following up! http://stackoverflow.com/questions/1491749/define-and-functions-with-variable-length-arguments/1491797#1491797 Comment by philippe on #define and functions with variable length arguments philippe 2009-09-29T13:00:26Z 2009-09-29T13:00:26Z Strangely enough gcc compiled the ##args form event with std=c99 ; I thought this removed the GNU extensions (onlt tetsed with gcc v3.4.3). Thanks, I fixed it. http://stackoverflow.com/questions/1477209/dijit-combobox-filter-autocomplete Comment by philippe on Dijit Combobox filter autocomplete philippe 2009-09-28T06:01:18Z 2009-09-28T06:01:18Z Do you observe this behavior with several browsers (IE6, IE7, FF ...) ? http://stackoverflow.com/questions/1414428/how-to-test-visibility-of-values-between-threads Comment by philippe on How to test visibility of values between threads philippe 2009-09-12T07:20:39Z 2009-09-12T07:20:39Z Perhaps introspection allows seeing the volatile qualifier http://stackoverflow.com/questions/1410002/agile-dealing-with-changing-requirements-for-already-implemented-features/1410091#1410091 Comment by philippe on Agile - Dealing with changing requirements for already implemented features philippe 2009-09-11T11:49:37Z 2009-09-11T11:49:37Z OK, thanks for the clarification. But I insist on documenting it, especially since you seem to maintain the stories electronically (reopen and edit). Otherwise you can have contradictions between your stories.