User mseery - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T06:12:04Zhttp://stackoverflow.com/feeds/user/39153http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/307410/are-you-using-openbsd-for-anything-other-than-a-firewall-or-router3Are you using OpenBSD for anything other than a firewall or router?mseery2008-11-21T00:32:24Z2009-09-26T07:23:15Z
<p>I have been wondering about the relatively small adoption rate of OpenBSD (excepting firewalls and routers).</p>
<p>Is anybody here using OpenBSD for other purposes?</p>
http://stackoverflow.com/questions/763292/is-there-something-like-appverifier-or-driver-verifier-for-linux1Is there something like AppVerifier or Driver Verifier for Linux?mseery2009-04-18T11:11:24Z2009-04-18T18:43:20Z
<p>I am hoping that someone can point me toward Linux software similar to the Microsoft tools <a href="http://technet.microsoft.com/en-us/library/bb457063.aspx" rel="nofollow">Application Verifier</a> and <a href="http://www.microsoft.com/whdc/DevTools/tools/DrvVerifier.mspx" rel="nofollow">Driver Verifier</a>. (They are stress testers for Windows applications and drivers, respectively.)</p>
<p>Do such things exist for Linux?</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/736167#7361677Answer by mseery for What is the best comment in source code you have ever encountered?mseery2009-04-09T22:54:30Z2009-04-09T22:54:30Z<pre><code>// This is a walkaround for bug #7812
</code></pre>
<p>Written by one of our Chinese programmers, for whom English was not his first language.</p>
<p>I really liked this one. I happen to think "walkaround" is almost a better term than "workaround."</p>
http://stackoverflow.com/questions/705766/how-many-of-you-are-using-an-internally-developed-installer-for-your-company/712611#7126110Answer by mseery for How many of you are using an internally developed installer for your company?mseery2009-04-03T05:02:49Z2009-04-03T05:02:49Z<p>Symantec wrote their own installer for Norton AntiVirus 2009. It doesn't use the Windows Installer (msiexec.exe) at all.</p>
<p>This is how they cut the total install time to less than 1 minute.</p>
http://stackoverflow.com/questions/304580/have-you-ever-used-a-genetic-algorithm-in-real-world-applications10Have you ever used a genetic algorithm in real-world applications?mseery2008-11-20T07:47:04Z2009-03-20T13:12:00Z
<p>I was wondering how common it is to find genetic algorithm approaches in commercial code.</p>
<p>It always seemed to me that some kinds of schedulers could benefit from a GA engine, as a supplement to the main algorithm.</p>
http://stackoverflow.com/questions/611253/any-good-certification-in-testing/629556#6295561Answer by mseery for Any Good Certification in Testing mseery2009-03-10T10:12:50Z2009-03-10T10:12:50Z<p>Check out James Bach's <a href="http://www.satisfice.com/blog/archives/36" rel="nofollow">blog post</a> on QA certifications. He considers them to be utterly worthless.</p>
http://stackoverflow.com/questions/139346/including-quality-into-the-software-development-project-plan/478756#4787561Answer by mseery for Including quality into the software development project planmseery2009-01-26T03:07:12Z2009-01-26T03:07:12Z<p>If it applies to your project, be sure to scope out <strong>beta testing cycles</strong> in the project schedule. Be aware that beta testing consumes substantial headcount, but can be a productive way of catching real-world bugs.</p>
<p>Beta cycles require time to recruit, vet, and train users. Only a fraction of them will actually contribute useful bugs, so you will need to gather a larger pool than you might think. And your developers and QA testers will have to devote time to communicating with your beta testers.</p>
http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/425915#4259156Answer by mseery for What's your favorite "programmer ignorance" pet peeve?mseery2009-01-08T20:58:22Z2009-01-08T20:58:22Z<p>Inexperienced programmers are apt to believe the terrible fallacy that there is such a thing as <strong>placeholder code</strong>, which they dutifully demarcate from the rest of the project with a giant <strong>TODO</strong> comment. Such code is generally rife with half-assed algorithms, lousy variable names, random comments, ugly formatting, and scads of corner-case bugs.</p>
<p>What these programmers have yet to realize is that on a commercial software project, the schedule pressures will eliminate any time to go back and clean up that code. When the testers find bugs in that functionality, the programmers will have only enough time to apply the minimally-invasive fix for each bug. Eventually, that placeholder code will have survived weeks of testing and therefore deemed a low priority for refactoring.</p>
<p>Nobody expects beautiful, bug-free code. Just try not to commit any code to the source tree that you wouldn't want to ship in the final product.</p>
http://stackoverflow.com/questions/304103/how-much-math-do-i-need-to-become-productive-in-haskell3How much math do I need to become productive in Haskell?mseery2008-11-20T01:48:03Z2008-12-13T03:32:08Z
<p>I'm interested in learning Haskell on my own time (not through a course), but I suspect that my math background may be insufficient to grok important language concepts (TBD).</p>
<p>I have had a year of college calculus (single variable), but not discrete math or logic.</p>
<p>Am I going to run into gaps in my math?</p>
http://stackoverflow.com/questions/321612/when-is-it-the-right-time-to-quit/322474#3224741Answer by mseery for When is it the right time to quit?mseery2008-11-26T23:04:48Z2008-11-26T23:04:48Z<p>Does your boss understand the value of your work? Are you on good terms with him?</p>
<ol>
<li><p>Figure out what it would take to keep you reasonably happy at your current job. More money? Better job title (good for the resume)? Working from home? Come up with specifics.</p></li>
<li><p>After you know what it would take for you to quit pining for the fjords, approach your manager. Tell him that you don't want to leave, but there isn't enough keeping you there. Tell him what the company could do to make it worth staying.</p></li>
<li><p>Be prepared for the possibility that you will be fired for expressing any dissatisfaction. But also prepare yourself for the possibility that they agree to your terms. (Which is why you should consider them carefully.)</p></li>
</ol>
http://stackoverflow.com/questions/173202/best-practices-for-shipping-software-on-time/319720#3197200Answer by mseery for Best practices for shipping software on timemseery2008-11-26T04:04:31Z2008-11-26T04:04:31Z<p>Stage <strong><em>periodic</em></strong> (monthly? weekly?) product walkthroughs using the current accepted build, for the benefit of the Product Team. Begin these as early as possible. Demo every feature, regardless of their current usability; don't skip over the ones which are lagging behind.</p>
<p>The point is to give the stakeholders a clear idea of the current state of the product over the course of the project. This way decisionmakers are more likely to tackle schedule risks promptly, rather than jeopardize the ship date.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/313216#3132160Answer by mseery for Language features you should never use?mseery2008-11-24T01:13:26Z2008-11-24T01:13:26Z<p>Bitfields in C. They're not portable, and they can cause concurrency problems (race conditions) when shared between threads.</p>
http://stackoverflow.com/questions/306708/must-haves-for-developers-office/312913#3129133Answer by mseery for Must haves for developers officemseery2008-11-23T20:27:05Z2008-11-23T20:27:05Z<p><strong>Laundry room.</strong> (No, I'm serious.)</p>
<p>I actually convinced my employers to add a laundry room to their big buildout and it worked out great. Lots of people rent apartments and don't have an in-unit washer/dryer setup. Instead of having to deal with a laundromat, they can do their laundry at work when they're waiting for code to compile, or whatever. This means more of their free time outside of work is spent on things other than basic chores.</p>
http://stackoverflow.com/questions/303276/suggest-chapters-topics-for-oop-book/312873#3128731Answer by mseery for Suggest chapters/topics for OOP Bookmseery2008-11-23T19:51:12Z2008-11-23T19:51:12Z<p>One of the biggest difficulties people have in picking up OOP is being able to model algorithms in terms of objects. You should consider devoting a chapter to the general issue of thinking about problems in terms of objects.</p>
<p>Humans have a tendency to classify physical objects according to shared characteristics. We often think of things in terms of hierarchical relationships, aggregates and collections. It may be useful to introduce these ideas by way of analogy in terms of concrete everyday examples.</p>
<p>A former coworker of mine had a job interview at <a href="http://www.wildcrest.com/Potel/Portfolio/InsideTaligentTechnology/WW87.htm" rel="nofollow">Taligent</a> back in its heyday. One of the interview questions was: <em>"Is the universe object-oriented?"</em> Her answer was to laugh and declare <em>"That's the stupidest question I've ever heard!"</em> (They hired her.)</p>
<p>I think the serious answer to that question would be "No, but <strong>the human mind</strong> <em>is</em> object-oriented."</p>
http://stackoverflow.com/questions/312721/which-book-should-i-read-first-pragmatic-programmer-or-code-complete/312790#3127902Answer by mseery for Which book should I read first: Pragmatic Programmer or Code Complete?mseery2008-11-23T18:22:27Z2008-11-23T18:22:27Z<p>I haven't read <em>Pragmatic Programmer</em>, so I can't comment on that.</p>
<p>But let me suggest that you buy <strong>two copies</strong> of <em>Code Complete</em>: one for for your cubicle and the other for home (I usually keep mine in the bathroom).</p>
<p>I do not actually write code in the bathroom, however.</p>
http://stackoverflow.com/questions/312069/the-best-memory-leak-definition/312236#3122360Answer by mseery for The Best Memory Leak Definitionmseery2008-11-23T07:02:40Z2008-11-23T07:02:40Z<p>Here are some techniques for preventing / detecting memory leaks:</p>
<ol>
<li><p><strong>Consider your algorithm in terms of memory consumption.</strong> Other respondents have mentioned the fact that you don't have to lose the pointer to an allocated item to leak memory. Even if your implementation contains zero pointer bugs, you can still effectively leak memory if you hold onto allocated items long after you actually need them.</p></li>
<li><p><strong>Profile your application.</strong> You can use memory debugger tools like Valgrind or Purify to find leaks.</p></li>
<li><p><strong>Black-box testing.</strong> Watch what happens to your compiled code after you feed it large data sets, or allow it to run for long periods of time. See if its memory footprint has a tendency to grow without limit.</p></li>
</ol>
http://stackoverflow.com/questions/312148/what-are-the-primary-advantages-of-building-closed-source-applications/312218#3122186Answer by mseery for What are the primary advantages of building closed-source applications?mseery2008-11-23T06:32:53Z2008-11-23T06:32:53Z<p>Having worked in the software industry for 15+ years, in Silicon Valley and for Fortune 1000 corporations, every project I have ever been paid to work on has been closed-source. (Although I have volunteered my spare time to open source projects.)</p>
<p>In my experience, the chief benefit of closed-source projects in commercial software is <strong>Time to Market</strong>.</p>
<p>This is aided by the ability to hide known bugs. Occasionally (<em>cough!</em>) commercial vendors will release a beta-quality 1.0 product just in time to meet a ship date, with the intention of fixing what should have been stop-ship bugs in a forthcoming patch.</p>
<p>The lure of releasing products before they're fully-baked is bolstered by having a userbase that is unable to audit the source code, or examine the bug-tracking database.</p>
http://stackoverflow.com/questions/311807/unit-testing-with-functions-that-return-random-results/312004#3120041Answer by mseery for Unit Testing with functions that return random resultsmseery2008-11-23T01:50:30Z2008-11-23T01:50:30Z<p>Depending on how your function creates the random date, you may also want to check for illegal dates: impossible leap years, or the 31st day of a 30-day month.</p>
http://stackoverflow.com/questions/266373/one-could-use-a-profiler-but-why-not-just-halt-the-program/311958#3119581Answer by mseery for One could use a profiler, but why not just halt the program?mseery2008-11-23T00:45:37Z2008-11-23T00:45:37Z<p>The larger your program gets, the more useful a profiler will be. If you need to optimize a program which contains thousands of conditional branches, a profiler can be indispensible. Feed in your largest sample of test data, and when it's done import the profiling data into Excel. Then you check your assumptions about likely hot spots against the actual data. There are always surprises.</p>
http://stackoverflow.com/questions/311839/are-there-any-standard-texts-on-the-subject-of-software-testing/311871#3118712Answer by mseery for Are there any standard texts on the subject of Software Testing?mseery2008-11-22T22:52:21Z2008-11-22T22:52:21Z<p>Unfortunately, there really are no canonical books on the subject of software testing.</p>
<p>Cem Kaner's books seem to be fairly popular, but they are more properly suited to the beginner audience.</p>
<p>Actually, the best book I would recommend on subject of software quality and understanding the common ways that software breaks is <a href="http://rads.stackoverflow.com/amzn/click/1556155514" rel="nofollow">Writing Solid Code</a> by Steve Maguire.</p>
http://stackoverflow.com/questions/310282/explaining-race-conditions-to-a-non-technical-audience/310601#3106011Answer by mseery for Explaining race conditions to a non-technical audiencemseery2008-11-22T00:07:09Z2008-11-22T00:07:09Z<p>One difficulty in explaining the general concept is that race conditions manifest themselves in a wide variety of situations. If your goal is give your non-technical audience the sense that this is a generic problem type, you should try to offer more than one example.</p>
http://stackoverflow.com/questions/310115/how-can-i-change-the-case-of-a-hash-key3How can I change the case of a hash key?mseery2008-11-21T20:37:07Z2008-11-21T23:29:29Z
<p>I am writing a script which is likely to be modified by users. Currently I am storing the configuration settings inside the script. It exists in the form of a hash-of-hashes.</p>
<p>I would like to guard against people accidentally using lowercase characters in the hash keys, because that will break my script.</p>
<p>It would be simple to inspect the hash keys and merely issue warnings for any keys with lowercase characters, but I would rather fix the case sensitivity automatically.</p>
<p>In other words, I want to convert all the hash keys in the top-level hash to uppercase.</p>
http://stackoverflow.com/questions/310036/how-can-i-make-hash-key-lookup-case-insensitive3How can I make hash key lookup case-insensitive?mseery2008-11-21T20:14:21Z2008-11-21T20:23:55Z
<p>Evidently hash keys are compared in a case-sensitive manner.</p>
<pre><code>$ perl -e '%hash = ( FOO => 1 ); printf "%s\n", ( exists $hash{foo} ) ? "Yes" : "No";'
No
$ perl -e '%hash = ( FOO => 1 ); printf "%s\n", ( exists $hash{FOO} ) ? "Yes" : "No";'
Yes
</code></pre>
<p>Is there a setting to change that for the current script?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/308844/most-important-requirements-to-put-on-a-qa-job-posting/310066#3100661Answer by mseery for Most important requirements to put on a QA job posting?mseery2008-11-21T20:22:51Z2008-11-21T20:22:51Z<p>Your job posting should include something along these lines:</p>
<p><strong><em>The successful candidate can explain the difference between Quality Assurance and testing.</em></strong></p>
<p>QA isn't just testing. It's reviewing requirements, providing input during the design phases, performing code reviews, and analyzing real-world performance after ship.</p>
<p>The point is, effective Quality Assurance requires more than just testing. An exceptional QA candidate should know this.</p>
http://stackoverflow.com/questions/304358/does-anyone-here-have-experience-developing-for-minix2Does anyone here have experience developing for Minix?mseery2008-11-20T04:54:20Z2008-11-20T06:25:15Z
<p>Recently I have become curious about the Minix OS. <a href="http://www.minix3.org/" rel="nofollow">http://www.minix3.org/</a></p>
<p>I am very taken with descriptions of its robustness & reliability features, but I have noticed a distinct paucity of software packages available for the platform.</p>
<p>Has anybody here developed software for (or ported software to) Minix? Anything unexpected about the process?</p>
http://stackoverflow.com/questions/304399/do-caffeinated-drinks-improve-your-programming-productivity-or-cause-more-proble/304415#30441513Answer by mseery for Do caffeinated drinks improve your programming productivity, or cause more problems?mseery2008-11-20T05:28:45Z2008-11-20T05:28:45Z<p>Whatever benefits you receive from the stimulant properties of caffeine must be weighed against the loss in productivity caused by its attendant increase in frequency of urination.</p>
<p>Caffeine blocks receptors for antidiuretic hormone, inhibiting your body's ability to retain water. Hence the kidneys remove more water than usual from the bloodstream, meaning more trips to the bathroom.</p>
<p>Be sure to account for this lost time in your overall cost-benefit analysis.</p>
http://stackoverflow.com/questions/292774/calculating-rotation-along-a-path/304374#3043740Answer by mseery for Calculating rotation along a path.mseery2008-11-20T05:05:29Z2008-11-20T05:05:29Z<p>Always pointing the car toward the destination point is simple and cheap, but it won't work if the car is following a curved path. In which case you need to point the car along the <strong>tangent line</strong> at its current location (see other answers, above).</p>
http://stackoverflow.com/questions/303841/why-does-my-script-report-uninitialized-value-in-eval-string0Why does my script report 'uninitialized value in eval "string"?mseery2008-11-19T23:48:13Z2008-11-20T03:31:22Z
<p>I am getting this warning:</p>
<pre><code>Use of uninitialized value in eval \"string\" at myscript.pl line 57.
</code></pre>
<p>When I run this code:</p>
<pre><code>eval;
{
`$client -f $confFile -i $inputFile -o $outputFile`;
};
if( $@ )
{
# error handling here ...
}
</code></pre>
<p>What is causing the error?</p>
<p>How can I fix the underlying cause? (Or otherwise suppress the warning?)</p>
http://stackoverflow.com/questions/1708/any-online-resources-for-learning-lingo-shockwave-director/304142#3041420Answer by mseery for Any online resources for learning Lingo/Shockwave Director?mseery2008-11-20T02:10:34Z2008-11-20T02:10:34Z<p>I know you asked for <strong>online</strong> resources, but you should get a copy of <em>Lingo in a Nutshell</em> by Bruce Epstein (1998). Used copies are selling on Amazon for pennies.</p>
http://stackoverflow.com/questions/1033330/mfc-application-how-to-validate-hostname-may-be-ip-and-port-number-cstring/1035103#1035103Comment by mseery on [MFC Application] How to validate hostname (may be IP) and port number (CString)mseery2009-06-23T20:56:49Z2009-06-23T20:56:49ZPrivileged ports are those below 1024, not 256.http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/425915#425915Comment by mseery on What's your favorite "programmer ignorance" pet peeve?mseery2009-06-23T20:41:42Z2009-06-23T20:41:42ZAgreed. Point taken.http://stackoverflow.com/questions/611253/any-good-certification-in-testingComment by mseery on Any Good Certification in Testing mseery2009-05-21T21:27:43Z2009-05-21T21:27:43ZRemoved watin tag.http://stackoverflow.com/questions/723356/when-is-it-appropriate-to-use-floating-precision-data-types/723394#723394Comment by mseery on When is it appropriate to use floating precision data types?mseery2009-04-06T23:37:10Z2009-04-06T23:37:10Z+1 for pointing out the problem inherent in testing for equality with floating point numbers.http://stackoverflow.com/questions/319679/sorting-structures-in-order-of-least-changeComment by mseery on Sorting structures in order of least changemseery2008-11-26T04:10:57Z2008-11-26T04:10:57ZDoes this data have to be contained in a single file, or could you break it into multiple files?http://stackoverflow.com/questions/319679/sorting-structures-in-order-of-least-changeComment by mseery on Sorting structures in order of least changemseery2008-11-26T03:50:19Z2008-11-26T03:50:19ZYour goal is to create the smallest possible filesize? Is that the only goal?
It seems you could encode the same information using a different scheme, skipping the absent positions altogether.http://stackoverflow.com/questions/318255/string-separation-in-cComment by mseery on string separation in Cmseery2008-11-25T17:49:18Z2008-11-25T17:49:18ZIs this a homework assignment?http://stackoverflow.com/questions/305223/jon-skeet-facts/312896#312896Comment by mseery on Jon Skeet Facts?mseery2008-11-25T06:03:03Z2008-11-25T06:03:03ZActually laughed out loud. And you know I'm serious because I spelled out the phrase entirely.http://stackoverflow.com/questions/270012/c-training-on-16-bit-microcontrollersComment by mseery on C Training on 16-bit microcontrollersmseery2008-11-23T20:21:02Z2008-11-23T20:21:02ZThe volatile keyword is your friend.http://stackoverflow.com/questions/158128/best-practices-considered-harmfulComment by mseery on Best practices considered harmful?mseery2008-11-23T18:30:22Z2008-11-23T18:30:22ZTop Gun rules of engagement are written for your safety and for that of your team.http://stackoverflow.com/questions/312148/what-are-the-primary-advantages-of-building-closed-source-applications/312218#312218Comment by mseery on What are the primary advantages of building closed-source applications?mseery2008-11-23T18:18:46Z2008-11-23T18:18:46ZCertainly the exception, and not the rule.http://stackoverflow.com/questions/102568/what-is-a-double-underscore-in-perl/312259#312259Comment by mseery on What is a double underscore in Perl?mseery2008-11-23T07:26:03Z2008-11-23T07:26:03ZYou forgot the underscore in the first variable assignment.
$ perl -e '$a_ = "a"; $b = 'b'; print "$a_$b"; print $a_;'
aba
http://stackoverflow.com/questions/312175/probabilistic-file-verification-algorithm-or-librariesComment by mseery on Probabilistic file verification -- algorithm or libraries? mseery2008-11-23T06:13:07Z2008-11-23T06:13:07ZYou brought up the potential of drive failure. Is that a consideration for your algorithm? It isn't listed in the bullet points.http://stackoverflow.com/questions/236907/how-reasonable-is-it-to-correct-terminology-in-questions-and-tagsComment by mseery on How reasonable is it to correct terminology in questions and tags?mseery2008-11-23T00:36:01Z2008-11-23T00:36:01ZI'm sorry, the correct term for "terminology" is "sockeye salmon." Please update the question title.http://stackoverflow.com/questions/311454/how-would-you-format-indent-this-piece-of-code/311517#311517Comment by mseery on How would you format/indent this piece of code?mseery2008-11-22T19:09:54Z2008-11-22T19:09:54Z+1 for anticipating debuggery