User Chris B-C - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T03:17:55Zhttp://stackoverflow.com/feeds/user/1517http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/17903/should-developers-be-specialists-or-generalists34Should developers be specialists or generalists?Chris B-C2008-08-20T13:12:33Z2009-10-30T12:27:30Z
<p>There has been some discussion of late within my organisation about whether we should be technical generalists - as we currently are, doing a bit of analysis, a bit of design, a bit of testing and a bit of coding - or whether we should be specialists - specialising in a particular discipline(s).</p>
<p>There are obviously pros and cons to each approach, particularly in a large (non-software) organisation where teams are typically quite small.</p>
<p>How do you think development teams are best structured? I've been working as a process analyst for the past year (the exception to the rule), and loved it for awhile but am now growing weary of doing similar things day after day and feel like being a generalist would provide more opportunities for interest and growth.</p>
http://stackoverflow.com/questions/171653/examples-of-requirement-documents/171766#1717661Answer by Chris B-C for Examples of Requirement DocumentsChris B-C2008-10-05T09:50:43Z2008-10-05T09:50:43Z<p>The Inmates Are Running the Asylum by Alan Cooper has been recommended - This great high-level book is targeted at explaining the importance of user-centered design to management and executives.</p>
<p>About Face 3.0 by Alan Cooper is the practitioner's guide to user-centered design and is a brilliant guide to ensuring that a product meets the needs of its users.</p>
<p>The best resources I'd recommend for producing requirements documents are Mastering the Requirements Process by Robertson & Robertson and Software Requirements by Soren Lauesen. the latter provides an in-depth introduction to a number of requirements gathering and capturing techniques.</p>
<p>Depending on the nature of your project (and your role) you might want to consider a more lightweight, agile methodology. Software requirements invariably change once they're written and agile methodologies are designed to recognise this and factor change into the software development process - producing a very lean initial set of requirements and building upon them as the project progresses. Check out Extreme Programming Explained by Kent Beck for more on this style.</p>
<p>If you've gone through all of this already and are just after templates the two most commonly-used (or adapted) are the IEEE standard (1220-1998) and the DoD standard <a href="http://en.wikipedia.org/wiki/MIL-STD-498" rel="nofollow">MIL-STD-498</a>. Of these the MIL standards seem (to me) to offer the most value for the least overhead - But still require a lot of effort that may not directly add value to your project.</p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/167078#16707838Answer by Chris B-C for What real life bad habits has programming given you?Chris B-C2008-10-03T14:15:53Z2008-10-03T14:15:53Z<p>Being far too analytical about absolutely everything. It's a great attribute professionally, but only leads to frustration in my private life...</p>
http://stackoverflow.com/questions/166657/do-you-have-your-own-dnut-ndt-do-not-use-this-never-do-that-list/167058#1670582Answer by Chris B-C for Do you have your own DNUT/NDT ("Do Not Use This/Never Do That") list?Chris B-C2008-10-03T14:09:20Z2008-10-03T14:09:20Z<p>DON'T: Assume it works because you know it can't possibly go wrong</p>
http://stackoverflow.com/questions/166550/what-to-put-in-the-if-block-and-what-to-put-in-the-else-block/167044#1670441Answer by Chris B-C for What to put in the IF block and what to put in the ELSE block?Chris B-C2008-10-03T14:05:57Z2008-10-03T14:05:57Z<p>If you have both true and false conditions then I'd opt for a positive conditional - This reduces confusion and in general I believe makes your code easier to read.</p>
<p>On the other hand, if you're using a language such as Perl, and particularly if your false condition is either an error condition or the most common condition, you can use the 'unless' structure, which executes the code block unless the condition is true (i.e. the opposite of if):</p>
<pre><code>unless ($foo) {
$bar;
}
</code></pre>
http://stackoverflow.com/questions/166833/what-software-analogies-have-helped-you/166997#1669972Answer by Chris B-C for What software analogies have helped you?Chris B-C2008-10-03T13:55:20Z2008-10-03T13:55:20Z<p>While not related to a specific software scenario, in The Mythical Man-Month, Fred Brookes expounds the idea of changing the traditional software development analogy of building software into one of 'growing' software.</p>
<p>His idea in this is to recognise that software engineering is, fundamentally, not building a thing as in a standard engineering discipline, but growing a software product in an iterative, organic fashion.</p>
<p>While he first proposed this idea in the mid-60's, when I first read it I realised both how true this is and how much we still - often subconsciously - consider software engineering in the same way as traditional engineering despite its many differences.</p>
<p>This 40+ year-old idea seems particularly relevant today with the increasing prevalence of agile methodolgies, and I'm amazed at the continued relevance of Brookes's ideas.</p>
http://stackoverflow.com/questions/139411/is-a-gantt-chart-larger-than-a-single-page-ever-useful/139590#1395901Answer by Chris B-C for Is a Gantt Chart larger than a single page ever useful?Chris B-C2008-09-26T13:46:38Z2008-09-26T13:46:38Z<p>I wholeheartedly agree with the comments about GANTT charts not suiting agile development - where we don't have a clear understanding of the details of the implementation at the outset.</p>
<p>On the other hand, I can't help but fondly remember a painful weekend I spent putting together a GANTT chart for a project I was managing where the technology and requirements were very well-understood and the schedule was critical.</p>
<p>We had the entrance wall to our cubicle section partially covered with this GANTT chart (5 A4 pages wide), and having it was extremely useful to making sure we were working to the critical path - getting the things done that needed to be done right now - and also made it possible for me to report to the project board with detailed reports on how the project is progressing against the schedule.</p>
<p>The usefulness of GANTT charts definitely depends on the context, but I'd say that if you know your requirements, and particularly if you have a lot of importance attached to your schedule, they can be incredibly useful.</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/120806#1208061Answer by Chris B-C for What was your first home computer?Chris B-C2008-09-23T12:55:03Z2008-09-23T12:55:03Z<p>I discovered my passion for programming on a Tandy TRS-80 when I was about 6. After becoming bored with the contents of the TRS-80 programming manuals I started adapting programs from any BASIC books I could find to the TRS-80 (and later ported them to my next computer - An Epson PC-XT 8086).</p>
<p>Such fond memories... I wonder if it's still in my parents' garage.</p>
<p><img src="http://www.ntrautanen.fi/computers/other/images/tandy_trs80.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/119723/is-it-worth-the-development-time-to-output-valid-html/120765#1207651Answer by Chris B-C for Is it worth the development time to output valid HTML?Chris B-C2008-09-23T12:46:19Z2008-09-23T12:46:19Z<p>In my opinion the key criterion is "fit for purpose" - If your clients want something for a small/internal market (and don't care if that alienates potential customers who have disabilities or use less-common browsers) then that's their choice.</p>
<p>At the same time I think it's our (as developers) responsibility to make sure they know the implications of their decisions - Some organisations will be bound by legislative requirements that websites be useable by screen readers, which typically means standards-compliant HTML.</p>
http://stackoverflow.com/questions/120014/how-do-you-deal-with-painful-shoulders-and-cold-fingers/120735#1207352Answer by Chris B-C for How do you deal with painful shoulders and cold fingersChris B-C2008-09-23T12:40:22Z2008-09-23T12:40:22Z<p>Relax. Whenever it enters your mind feel your shoulders relax. They should be dropped and back far enough that your shoulderblades protrude from your upper-middle back slightly.</p>
<p>Your desk should be low enough so that your arms are horizontal.</p>
<p>Stretch your neck regularly. Take the opportunity when you're having thinking time. The back and sides of your neck should be relaxed, with your chin tucked into your neck so that you're looking slightly below the horizontal. Focus on relaxing by looking up and slowly dropping your chin until you feel tension in the sides of your neck. If you do this enough you'll be able to bring your chin down far enough to feel your vertebrae touching the collar of your shirt (assuming your shirt has a collar) with your neck still relaxed. This builds the muscles that surround your spine.</p>
<p>This is all really important stuff. After 9 months of 12-hour days I recently woke up with a sprained neck because I hadn't been caring for my body. Not only is it incredibly painful, but the lost productivity (and the masses of work that builds up in your absence) makes these few considerations so worthwhile.</p>
<p>Cold fingers are a sign of poor circulation. In theory this means stop smoking and reduce caffeine. Since that's not likely I'd take an aspirin, green tea or a beer :)</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/18015#1801573Answer by Chris B-C for Computer Language puns and jokesChris B-C2008-08-20T13:55:35Z2008-09-21T19:50:53Z<p>An old favourite of mine - Technical manuals in the spirit of Dr. Seuss:</p>
<p>If a packet hits a pocket on a socket on a port,<br />
And the bus is interrupted as a very last resort,<br />
And the address of the memory makes your floppy disk abort,<br />
Then the socket packet pocket has an error to report! </p>
<p>If your cursor finds a menu item followed by a dash,<br />
And the double-clicking icon puts your window in the trash,<br />
And your data is corrupted 'cause the index doesn't hash,<br />
Then your situation's hopeless, and your system's gonna crash! </p>
<p>You can't say this? What a shame sir!<br />
We'll find you another game sir. </p>
<p>If the label on the cable on the table at your house,<br />
Says the network is connected to the button on your mouse,<br />
But your packets want to tunnel on another protocol,<br />
That's repeatedly rejected by the printer down the hall, </p>
<p>And your screen is all distorted by the side effects of gauss<br />
So your icons in the window are as wavy as a souse,<br />
Then you may as well reboot and go out with a bang,<br />
'Cause as sure as I'm a poet, the sucker's gonna hang! </p>
<p>When the copy of your floppy's getting sloppy on the disk,<br />
And the microcode instructions cause unnecessary RISC,<br />
Then you have to flash your memory and you'll want to RAM your ROM. </p>
<p>Quickly turn off the computer and be sure to tell your mom! </p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/82290#822900Answer by Chris B-C for What's Your Motto As A Developer/Programmer?Chris B-C2008-09-17T11:50:53Z2008-09-17T11:50:53Z<p>"Why?"</p>
<p>While I'm mostly a BA these days I think it holds equally well in either role.</p>
http://stackoverflow.com/questions/58595/should-i-learn-c-or-java/58905#589050Answer by Chris B-C for Should I learn C# or Java?Chris B-C2008-09-12T13:05:35Z2008-09-12T13:05:35Z<p>If you want to learn Java then learn Java.</p>
<p>The one catch to beware of moving from .NET to Java is that .NET provides everything you need (despite the many frustrations I have with it) - If you're looking to learn J2EE you'll have to spend considerable time to understand and work out how to use the many third-party tools you'll want for enterprise applications.</p>
http://stackoverflow.com/questions/58640/great-programming-quotes/58860#5886035Answer by Chris B-C for Great programming quotesChris B-C2008-09-12T12:50:28Z2008-09-12T12:50:28Z<p>A quote I've been using a lot lately dealing with ... difficult people</p>
<blockquote>
<p>'Select' isn't broken</p>
</blockquote>
<p>Fred Brookes (The Mythical Man-Month)</p>
<p>Speaking about the likelihood that, when it appears a common third-party tool is broken rather than your code, chances are that it is, in fact, your code.</p>
http://stackoverflow.com/questions/31837/best-books-about-tdd/31928#319282Answer by Chris B-C for Best books about TDDChris B-C2008-08-28T09:49:46Z2008-08-28T09:49:46Z<p>Test Driven Development: By Example and Extreme Programming Explained, both by Kent Beck, are IMHO the Bibles of TDD.</p>
http://stackoverflow.com/questions/10425/mvc-learning-resources/27465#274650Answer by Chris B-C for MVC Learning ResourcesChris B-C2008-08-26T05:58:21Z2008-08-26T05:58:21Z<p>I recall Apple's Cocoa development guide including a great explanation of MVC. <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/CocoaFundamentals/CocoaDesignPatterns/chapter_5_section_4.html" rel="nofollow">Found it!</a></p>
http://stackoverflow.com/questions/26183/screenshot-taking-tools/27464#274641Answer by Chris B-C for Screenshot Taking ToolsChris B-C2008-08-26T05:49:25Z2008-08-26T05:49:25Z<p>On a Mac they're all built in:</p>
<p><img src="http://www.bennettscash.id.au/Picture%201.png" alt="alt text" /></p>
<p>At work I use Hypersnap, which provides pretty much the same features (along with some more advanced ones) for Windows - <a href="http://www.hyperionics.com/" rel="nofollow">A free trial</a> is available, but the full version costs about $35.</p>
http://stackoverflow.com/questions/24965/beginning-tdd-challenges-solutions-recommendations/25015#250150Answer by Chris B-C for Beginning TDD - Challenges? Solutions? Recommendations?Chris B-C2008-08-24T12:49:23Z2008-08-24T12:49:23Z<p>In my opinion (your mileage may vary):</p>
<p>1- If you didn't write it don't test it. If you wrote it and you don't have a test for it it doesn't exist. </p>
<p>3- As everyone's said, xUnit's free and great.</p>
<p>2 & 4- Deciding exactly what to test is one of those things you can debate about with yourself forever. I try to draw this line using the principles of design by contract. Check out 'Object Oriented Software Construction" or "The Pragmatic Programmer" for details on it.</p>
http://stackoverflow.com/questions/24891/c-memory-management/24918#249181Answer by Chris B-C for C Memory ManagementChris B-C2008-08-24T07:58:13Z2008-08-24T07:58:13Z<p>There are some great answers here about how to allocate and free memory, and in my opinion the more challenging side of using C is ensuring that the only memory you use is memory you've allocated - if this isn't done correctly what you end up with is the cousin of this site - a buffer overflow - and you may be overwriting memory that's being used by another application, with very unpredictable results.</p>
<p>An example:</p>
<pre><code>int main() {
char* myString = (char*)malloc(5*sizeof(char));
myString = "abcd";
}
</code></pre>
<p>At this point you've allocated 5 bytes for myString and filled it with "abcd\0" (strings end in a null - \0).
If your string allocation was</p>
<pre><code>myString = "abcde";
</code></pre>
<p>You would be assigning "abcde" in the 5 bytes you've had allocated to your program, and the trailing null character would be put at the end of this - a part of memory that hasn't been allocated for your use and could be free, but could equally be being used by another application - This is the critical part of memory management, where a mistake will have unpredictable (and sometimes unrepeatable) consequences.</p>
http://stackoverflow.com/questions/24648/whats-the-best-way-to-get-to-know-linux-or-bsd-kernel-internals/24794#247940Answer by Chris B-C for What's the best way to get to know linux or BSD kernel internals?Chris B-C2008-08-24T02:01:09Z2008-08-24T02:01:09Z<p>When I was at uni I spent a semester studying operating systems, and as part of this had an assignment where we had to implement a RAM-based filesystem in Linux.</p>
<p>It was a fantastic way to get to understand the internals of the Linux keurnel and to get a grasp on how everything fits together - And a heck of a lot of fun playing around with how it interacts with standard tools too.</p>
http://stackoverflow.com/questions/24409/how-to-stop-yourself-from-going-rusty/24792#247920Answer by Chris B-C for How to stop yourself from going rusty?Chris B-C2008-08-24T01:57:55Z2008-08-24T01:57:55Z<p>Things that work for me</p>
<ul>
<li>Teach</li>
<li>Blog</li>
<li>Learn</li>
<li>Read</li>
</ul>
<p>I think the single best thing I ever did was to learn objective C in my spare time - It made my appreciation and understanding of the object-oriented thought process (which I already thought I had a pretty good grasp of) increase orders of magnitude.</p>
<p>It's also great to find likeminded people and just talk about whatever comes up. You can guarantee that some of your colleagues have been learning about things you're not aware of, and vice versa, and sharing this makes us all a bit more well-rounded.</p>
http://stackoverflow.com/questions/17320/what-areas-of-specialization-within-programming-would-you-recommend-to-a-beginner/17971#179710Answer by Chris B-C for What areas of specialization within programming would you recommend to a beginnerChris B-C2008-08-20T13:40:51Z2008-08-20T13:40:51Z<p>As a student I'd recommend forgetting about what you're programming and focusing on the software process itself. Understand how to analyse a problem and ask the right questions; learn every design pattern you can and actually <strong>apply them all</strong> to gain a real understanding and appreciation of object-oriented design; write tests and then code only as much as you need to in order to make the tests pass. I think the best way to really learn is to just code as much as you can - the language and the domain aren't important, browse <a href="http://www.sourceforge.net" rel="nofollow">sourceforge</a> and <a href="http://www.freshmeat.net" rel="nofollow">freshmeat</a> for any interesting-sounding projects and get involved. What's important is understanding the fundamentals of software engineering.</p>
<p>And yes, this includes C. Or Assembler. This is the easiest way to get a good understanding of how your computer works and what your high-level code is actually doing.</p>
<p>Finally, never stop learning - Service-oriented architecture, inversion of control, domain-specific languages, business process management are all showing huge benefits so they're important to be aware of - But by the time you finish studying and join the workforce who knows what the next big thing will be?</p>
http://stackoverflow.com/questions/14987/do-you-listen-to-anything-while-programming/17869#178690Answer by Chris B-C for Do you listen to anything while programming?Chris B-C2008-08-20T12:57:47Z2008-08-20T12:57:47Z<p>I couldn't survive without my iPod.</p>
<p>Typically I listen to podcasts, but I also find my favourite tunes to be a great way to stimulate creativity. When I'm up against a particularly hard problem though, nothing beats something with a fast beat and no lyrics - Infected Mushroom has been a favourite this week.</p>
http://stackoverflow.com/questions/3553/one-piece-of-advice/17854#178545Answer by Chris B-C for One piece of adviceChris B-C2008-08-20T12:52:34Z2008-08-20T12:52:34Z<p>Learn Smalltalk. The earlier you really appreciate and understanded object-oriented design the better!</p>
http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/13078#130780Answer by Chris B-C for What good technology podcasts are out there?Chris B-C2008-08-16T09:31:43Z2008-08-16T09:31:43Z<p>What a great bunch of answers - Now I've got a number of podcasts to add to my listening list!</p>
<p>My current list is StackOverflow, TWiT and Mac OS Ken.
I tried to get into SERadio a few months ago but couldn't really engage myself with the podcast - Great introductory material, but I felt a lot of the shows were a bit 'beginner-y'.</p>