User jrbushell - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:28:51Z http://stackoverflow.com/feeds/user/27437 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1824303/viewing-lcov-file-in-windows/1826652#1826652 1 Answer by jrbushell for Viewing LCOV file in Windows jrbushell 2009-12-01T14:47:21Z 2009-12-01T14:47:21Z <p>Use genhtml to convert it to a set of HTML files. <a href="http://ltp.sourceforge.net/coverage/lcov/genhtml.1.php" rel="nofollow">http://ltp.sourceforge.net/coverage/lcov/genhtml.1.php</a></p> http://stackoverflow.com/questions/1324323/can-i-set-width-of-90-with-overflow-hidden/1434261#1434261 0 Answer by jrbushell for Can I set width of 90% with overflow hidden. jrbushell 2009-09-16T17:06:11Z 2009-09-16T17:06:11Z <p>Try using "table-layout:fixed" - your table's columns will then remain the same size regardless of the content, and overflow:hidden will now do what you expect (at least it has for me so far in the browsers I've tested it with)</p> http://stackoverflow.com/questions/385816/what-was-the-weirdest-time-and-place-that-youve-found-yourself-thinking-and-sol/385941#385941 0 Answer by jrbushell for What was the weirdest time and place that you've found yourself thinking (and solving) a programming problem? jrbushell 2008-12-22T10:25:58Z 2008-12-22T10:25:58Z <p>On more than one occasion when I've been ill, I've been lying in bed in a bit of a daze thinking my illness must be some sort of software bug, and if only I could debug my stomach / head / whatever then it would go away.</p> <p>As for real software problems, I tend to get good ideas while washing up after dinner. </p> http://stackoverflow.com/questions/281289/is-it-possible-to-make-cvs-comments-compulsory-for-commits/281420#281420 1 Answer by jrbushell for Is it possible to make CVS comments compulsory for commits? jrbushell 2008-11-11T16:36:57Z 2008-11-11T16:36:57Z <p>The <a href="http://ximbiot.com/cvs/manual/cvs-1.11.23/cvs_18.html#SEC183" rel="nofollow">verifymsg</a> file looks like what you want, although I've never tried it myself. If the commit comment doesn't match certain criteria, the commit is aborted.</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253748#253748 0 Answer by jrbushell for Exceptions or error codes jrbushell 2008-10-31T14:38:48Z 2008-10-31T14:38:48Z <p>I may be sitting on the fence here, but...</p> <ol> <li>It depends on the language.</li> <li>Whichever model you choose, be consistent about how you use it.</li> </ol> <p>In Python, use of exceptions is standard practice, and I'm quite happy to define my own exceptions. In C you don't have exceptions at all.</p> <p>In C++ (in the STL at least), exceptions are typically only thrown for truly exceptional errors (I virtually never see them myself). I see no reason to do anything different in my own code. Yes it's easy to ignore return values, but C++ doesn't force you to catch exceptions either. I think you just have to get into the habit of doing it.</p> <p>The code base I work on is mostly C++ and we use error codes almost everywhere, but there's one module that raises exceptions for any error, including very unexceptional ones, and all the code that uses that module is pretty horrible. But that might just be because we've mixed exceptions and error codes. The code that consistently uses error codes is much easier to work with. If our code consistently used exceptions, maybe it wouldn't be as bad. Mixing the two doesn't seem to work so well.</p> http://stackoverflow.com/questions/239496/monkey-testing-software-for-windows-apps/239542#239542 2 Answer by jrbushell for monkey testing software for windows apps jrbushell 2008-10-27T10:46:26Z 2008-10-27T10:46:26Z <p>Have a look at AutoIt. It has a COM interface, so you can script it from any language that supports COM. I've written Python scripts to automate GUIs.</p> http://stackoverflow.com/questions/52676/favorite-windows-keyboard-shortcuts/221392#221392 0 Answer by jrbushell for Favorite Windows keyboard shortcuts jrbushell 2008-10-21T10:26:13Z 2008-10-21T10:26:13Z <p>I mapped some global hotkeys:</p> <ul> <li><p>In Winamp I use Ctrl+Alt+Backspace (same as AltGr+Backspace for me) to Pause. If someone wants my attention while I've got headphones on, far easier to press a couple of buttons than click the mouse on a button that's about five pixels wide.</p></li> <li><p>I use Ctrl+Alt+C to run calc.</p></li> </ul> http://stackoverflow.com/questions/218261/where-can-i-find-a-good-template-for-a-software-application-user-guide/219189#219189 1 Answer by jrbushell for Where can I find a good template for a software application user guide? jrbushell 2008-10-20T17:08:56Z 2008-10-20T17:08:56Z <p>For structure and look+feel, consider using a framework such as DocBook. </p> <p>DocBook uses an XML markup schema that makes you think about how your document should be arranged. There are XSL transformations to convert it to common formats like HTML and PDF with a whole load of config options to make it look the way you want. And it's open-source (free). There are downsides of course: the schema's pretty big, and editing can be hard work without a good XML editor.</p> <p>Examples: <a href="http://wiki.docbook.org/topic/WhoUsesDocBook" rel="nofollow">http://wiki.docbook.org/topic/WhoUsesDocBook</a></p> http://stackoverflow.com/questions/212358/binary-search-in-python/212541#212541 1 Answer by jrbushell for Binary Search in Python jrbushell 2008-10-17T15:03:30Z 2008-10-17T15:03:30Z <p>If you just want to see if it's present, try turning the list into a dict:</p> <pre><code># Generate a list l = [n*n for n in range(1000)] # Convert to dict - doesn't matter what you map values to d = dict((x, 1) for x in l) count = 0 for n in range(1000000): # Compare with "if n in l" if n in d: count += 1 </code></pre> <p>On my machine, "if n in l" took 37 seconds, while "if n in d" took 0.4 seconds.</p> http://stackoverflow.com/questions/1824303/viewing-lcov-file-in-windows/1826652#1826652 Comment by jrbushell on Viewing LCOV file in Windows jrbushell 2009-12-02T17:36:55Z 2009-12-02T17:36:55Z genhtml is just a perl script. As a quick experiment, I took an lcov file generated from a Linux app (I only use lcov on Linux) and ran it through genhtml on Windows (Cygwin). It ran ok but only if I turned off source-code highlighting (--no-source). Might work ok if your source is on Windows too? See also <a href="http://stackoverflow.com/questions/1816981/" rel="nofollow">stackoverflow.com/questions/1816981</a> http://stackoverflow.com/questions/412954/converting-binary-data-to-printable-hex/413007#413007 Comment by jrbushell on Converting binary data to printable hex jrbushell 2009-01-05T13:11:11Z 2009-01-05T13:11:11Z The assert on the second line of asciihex() checks that the input size is divisible by 2, so +=2 is safe in this case - I agree though that it at least looks dangerous, and I think I'd code it a bit differently myself. http://stackoverflow.com/questions/412954/converting-binary-data-to-printable-hex Comment by jrbushell on Converting binary data to printable hex jrbushell 2009-01-05T13:07:32Z 2009-01-05T13:07:32Z Shouldn't the first line of asciihex should be: size_t size = in.size();