User Laura - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T11:41:04Zhttp://stackoverflow.com/feeds/user/16312http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/202090/join-acm-join-ieee-or-read-programming-books14Join ACM, join IEEE, or read programming books?Laura2008-10-14T17:31:14Z2009-07-06T21:11:17Z
<p>I read blogs and listen to podcasts, and I own many of the "classic" programming books. For the money, what kind of <em>printed material</em> would you say is the most valuable to keep current in software engineering -- books, or magazines from professional organizations such as ACM and IEEE? Which organization has the best periodicals?</p>
http://stackoverflow.com/questions/1041687/learning-a-language-while-on-a-project/1041811#10418111Answer by Laura for Learning a language while on a project?Laura2009-06-25T01:49:50Z2009-06-25T01:49:50Z<p>I like to learn a new language while working on a project, because a <em>real</em> project will usually force me to learn aspects of the language that I might otherwise skip. One of the first things I like to to is read code in that language, and jump in. I find resources (such as books and various internet sites) to help as I go along.</p>
<p>Then, after I've been working on it for a while, I like to read (or re-read) books or other resources on the language. By this time I have some knowledge, so this will help solidify some things and also point out areas where I am flat-out wrong in my understanding. For instance, I can see that I was making incorrect assumptions about similarities between languages.</p>
<p>This also applies to tools -- after using a tool for a while and learning the basics, reading (or skimming) the documentation can teach me a lot.</p>
http://stackoverflow.com/questions/188388/how-well-do-eclipse-and-netbeans-coexist9How well do Eclipse and Netbeans coexist?Laura2008-10-09T17:48:27Z2009-05-24T18:44:37Z
<p>I would like to have both Eclipse and Netbeans (with JUnit) installed on one system, so I can be somewhat familiar with both.</p>
<p>Besides GUI development (see "<a href="http://stackoverflow.com/questions/174308/using-both-eclipse-and-netbeans">Using both Eclipse and Netbeans</a>"), are there any other issues with using both IDEs on the same system, or even the same project?</p>
http://stackoverflow.com/questions/88342/government-work-vs-private-sector3Government Work vs. Private Sector?Laura2008-09-17T22:29:12Z2009-03-16T15:13:06Z
<p>Besides pay and benefits, what would you consider the pros and cons of these <em>non-contractor</em> jobs:</p>
<ol>
<li>Working for a company that creates commercial (shipping) software.</li>
<li>Working for a company on software used internally.</li>
<li>Working on software for the government.</li>
</ol>
http://stackoverflow.com/questions/299539/how-to-design-good-looking-reports/303189#3031891Answer by Laura for How to design good looking reports?Laura2008-11-19T20:10:47Z2008-11-19T20:10:47Z<p>The content <em>is</em> the most important element. After that, simplicity.</p>
<ul>
<li>use a limited set of fonts and colors</li>
<li>use bold, italic, and underline sparingly</li>
<li>use lots of whitespace</li>
<li>base the page layout on a grid</li>
</ul>
<p>For a few tips on layout: <a href="http://www.online.tusc.k12.al.us/tutorials/grdesign/grdesign.htm" rel="nofollow">The Basics of Graphic Design</a> and <a href="http://www.typography-1st.com/typo/prnc-des.shtml" rel="nofollow">Typography and Page Layout</a></p>
http://stackoverflow.com/questions/240323/how-to-report-bugs-the-smart-way/240961#2409610Answer by Laura for How to Report Bugs the Smart WayLaura2008-10-27T18:29:03Z2008-10-27T18:29:03Z<ul>
<li>Always report version number of software under test</li>
<li>Always report versions of any other software (browser, OS, etc.)</li>
<li>Always list all hardware</li>
<li>Steps to reproduce</li>
<li>Symptoms of bug</li>
<li>Screenshots, traces, logs, other attachments (if any)</li>
<li>How critical -- crash, UI, etc.</li>
<li>Report whether reproducible</li>
<li>Anything else tried, that did or did not reproduce the bug</li>
</ul>
http://stackoverflow.com/questions/236348/documentation-writing-style/236610#2366100Answer by Laura for Documentation - writing styleLaura2008-10-25T15:55:17Z2008-10-25T15:55:17Z<p>I've written plenty of documentation that was directed towards an audience of engineers (specifications, processes, and SDK documentation). It's also important to consider readability.</p>
<p>Your audience may all have college degrees, but they will still be able to comprehend the documentation <em>faster</em> if it's more readable. For some of them, English may be their second language -- the academic style of writing could be practically incomprehensible. Readable documentation can also help new team members get up to speed.</p>
<p>Graphics such as flowcharts are very important, but some people are not visual thinkers and prefer words.</p>
http://stackoverflow.com/questions/226863/how-do-you-manage-your-external-documentation/227311#2273110Answer by Laura for How do you manage your external documentation?Laura2008-10-22T19:57:49Z2008-10-22T19:57:49Z<p>For one of our projects, we checked our end-user documentation into the code repository. The specs went into our requirements database (Quality Center). Other documents were on SharePoint.</p>
http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/192827#1928271Answer by Laura for What is your favorite "programmer" t-shirt?Laura2008-10-10T19:55:43Z2008-10-10T19:55:43Z<p>"There are 10 kinds of people in the world - those who understand binary and those who don't."</p>
http://stackoverflow.com/questions/102167/do-you-have-unit-testing-in-your-projects/102987#1029872Answer by Laura for Do you have unit testing in your projects?Laura2008-09-19T15:37:07Z2008-09-19T15:37:07Z<p>I work for a company that has products containing hardware, firmware, and/or software. Integration testing is paramount; unit testing is, well, less formalized. If programming is not considered a "core competency" of the company, I think it can be harder to include some of these practices.</p>
http://stackoverflow.com/questions/88339/which-is-better-shipping-a-buggy-feature-or-not-shipping-the-feature-at-all/88372#883721Answer by Laura for Which is better: shipping a buggy feature or not shipping the feature at all?Laura2008-09-17T22:32:42Z2008-09-17T22:32:42Z<p>There will always be unanswered feature requests and bug reports. Ship it, but include a readme with "known issues" and workarounds when possible.</p>
http://stackoverflow.com/questions/85935/how-do-i-export-styles-from-a-microsoft-word-2003-dot-file/86037#860371Answer by Laura for How do I export styles from a Microsoft Word 2003 .dot file?Laura2008-09-17T18:14:10Z2008-09-17T18:14:10Z<p>Use the "Styles" tab in the "Organizer" (menu "Tools" -> "Templates and Add-Ins" -> "Organizer") to copy the styles.</p>