User CJP - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T07:46:39Zhttp://stackoverflow.com/feeds/user/13152http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/168950#1689502Answer by CJP for What's the least useful comment you've ever seen?CJP2008-10-03T21:17:20Z2009-10-12T20:53:28Z<p>A very large source file, implementing multi-threading in a single process. In the midst of all the call-stack switching and semaphore grabbing and thread suspension and resumption was a simple comment regarding a particularly obscure bit of pointer manipulation:</p>
<pre><code>/* Trickiness */
</code></pre>
<p>Gee, thanks for sharing.</p>
http://stackoverflow.com/questions/360774/how-is-code-review-different-from-qa-quality-assurance-reviews/360795#3607951Answer by CJP for How is code review different from QA (quality assurance) reviews?CJP2008-12-11T20:39:18Z2008-12-11T20:39:18Z<p>Our code reviews include QA developers, so they hear discussions that point to different test equivalence classes. But the main focus in a code review or inspection is: Does the code perform as expected and does it meet our acceptance criteria and standards. So while it's a step in the quality process, it's not specifically a QA area, so typically there are more developers than QA folks in the room.</p>
<p>We've code-reviewed QA tests and output on projects I've worked on in the past, to make sure that the tests were doing what was expected and testing all the appropriate cases rather than varying data within the same equivalence class.</p>
http://stackoverflow.com/questions/178484/how-can-we-get-people-to-participate-in-team-building/179302#1793021Answer by CJP for How can we get people to participate in team building?CJP2008-10-07T16:28:16Z2008-10-07T16:28:16Z<p>If the team is gelled and performing, let everyone be and let the team decide how comfortable it is with team-building activities. Worrying about someone else who consistently avoids team-building exercises says more about the worrier's approach to teams and interpersonal relationships than it does about the team itself. If most of the team participates and finds it valuable, then life is good.</p>
<p>Of course, if the team isn't gelled or isn't performing, then it's time to consult the members of the team to get it back on track. That's team-building of a different sort than one sees over minigolf or cupcakes though.</p>
<p>Every team has different roles and personalities. Some people need to feel all teamy and personally connected to each and every coworker. Some people feel that it's a job, and hey, if the boss decides to pay for lunch or a movie as part of the job, well, hey, free food and free entertainment. Some people -- perish the thought! -- live to write software and don't want to be distracted from that, even for free food. It's a big planet with big software projects, so there's room for all these people on the same team. </p>
http://stackoverflow.com/questions/140476/what-do-your-code-reviews-involve-and-what-patterns-are-successful/140623#1406231Answer by CJP for What do your code reviews involve and what patterns are successful?CJP2008-09-26T16:44:28Z2008-09-26T16:44:28Z<ul>
<li><p>Schedule reviews or inspections
regularly and frequently.
Review/Inspect whole modules when
new, and delta <strong>+ surrounding
code</strong> for maintenance. Building up a backlog of stuff to be reviewed makes the whole process intimidating.</p></li>
<li><p>Everyone's code gets reviewed, from
the most junior to the most senior,
and anyone can comment without fear
of recrimination.</p></li>
<li><p>Don't just review/inspect code; look
at tests (especially for TDD) and
test results too. We've detected
some interesting bugs and test
omissions by discovering that what
we thought we were testing wasn't
really what was being tested, or
that we'd inadvertently used test
data from the same equivalence class
when we thought we were using
distinct classes of data.</p></li>
</ul>
http://stackoverflow.com/questions/88399/how-do-i-duplicate-a-whole-line-in-emacs/88427#884270Answer by CJP for How do I duplicate a whole line in Emacs?CJP2008-09-17T22:40:53Z2008-09-17T22:40:53Z<p>ctrl-k, ctrl-k, (position to new location) ctrl-y</p>
<p>Add a ctrl-a if you're not starting at the beginning of the line. And the 2nd ctrl-k is to grab the newline character. It can be removed if you just want the text.</p>
http://stackoverflow.com/questions/68835/code-review/74945#749451Answer by CJP for Code ReviewCJP2008-09-16T17:41:39Z2008-09-16T17:41:39Z<p>We do distributed development, so sitting together in a room is impossible when we're hundreds of miles apart. So we have set times twice a week when we go through code, everyone connected to a shared desktop machine. </p>
<p>Anybody can bring code to review, no one is exempt from reviewing, all code should be reviewed before being put into the main thread. And everything is open for review, from testware to test cases to source code. If it's worth doing, it's worth talking with the team about and worth having other eyes looking at it. </p>
<p>We walk through and discuss everything from simple bugs to source file organization to coding standards (we're early enough in the project that these are still evolving). Not a formal inspection (though we do those when the team decides it's necessary), so it's author-led. We do comparisons to previous versions and sometimes bounce from source file to source file in order to answer questions.</p>
<p>Meanwhile, we do pair design and development on an ad hoc basis. Pairs evolve from day to day and week to week as we progress through the project. Again, because folks are remote, it's done through shared desktop connections and the like.</p>
http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/74767#747676Answer by CJP for The single most useful Emacs featureCJP2008-09-16T17:23:09Z2008-09-16T17:23:09Z<p>M-x gdb to test in the debugger while automatically moving through the source tree in other windows. Set break points by opening the source file and doing C-x on the appropriate source lines. </p>