User kfh - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T10:45:56Z http://stackoverflow.com/feeds/user/6597 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/65037/is-there-a-way-to-write-macros-with-a-variable-argument-list-in-visual-c/65067#65067 -4 Answer by kfh for is there a way to write macros with a variable argument list in visual C++? kfh 2008-09-15T17:47:04Z 2008-09-17T10:57:05Z <p>Almost. It's uglier than that though (and you probably don't want a trailing semi-colon in the macro itself:</p> <h1>define DBGPRINT( DBGPRINT_ARGS ) printf DBGPRINT_ARGS</h1> <p>To use it: DBGPRINT(("%s\n", "Hello World"));</p> <p>(was missing a pair of parens).</p> <p>Not sure why all the negatives, the original question didn't state a version of VC++, and variadic macros aren't supported by all compilers.</p> http://stackoverflow.com/questions/81904/quicker-way-to-create-duplicate-virtual-pc-images/81982#81982 0 Answer by kfh for Quicker way to create duplicate Virtual PC images? kfh 2008-09-17T10:55:38Z 2008-09-17T10:55:38Z <p>Also, you mentioned cut &amp; paste, this is not the best way to be copying large amounts of data within windows. At least use xcopy, robocopy is even faster.</p> http://stackoverflow.com/questions/71429/which-desktop-virtualization-software-runs-most-smoothly/71451#71451 0 Answer by kfh for Which Desktop Virtualization software runs most smoothly? kfh 2008-09-16T11:42:27Z 2008-09-16T11:42:27Z <p>Well, you don't say what OSs are involved, so.....</p> <p>For windows, I find that Remote Desktop works as well or better than anything else, although if you pay for the RealVNC version with the mirror driver, that's supposed to be as good. For off site access for windows, www.logmein.com (the free version) works very well.</p> <p>If Unixes are involved, then VNC is definitely the way to go, there are various solutions for doing this remotely. Everything from redirection servers, to just forwarding a port in your firewall to an ssh server and setting up the various tunnels.</p> http://stackoverflow.com/questions/66107/how-to-identify-specific-digits-of-an-integer-input-in-c/66154#66154 0 Answer by kfh for How to identify specific digits of an integer input in C? kfh 2008-09-15T19:46:27Z 2008-09-15T19:46:27Z <p>Something along the lines of:</p> <pre><code>int val=11031; int count=0; int i=0; char buf[100]; sprint(buf, "%d", val); for(i=0; (i &lt; sizeof(buf)) &amp;&amp; (buf[i]); i++) { if(buf[i] == '1') count++; } </code></pre> http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/64382#64382 5 Answer by kfh for What is the strangest programming language you have used? kfh 2008-09-15T16:22:51Z 2008-09-15T16:30:30Z <p>PERQ microcode. (<a href="http://www.chiark.greenend.org.uk/~pmaydell/PERQ/rot13.mic.html" rel="nofollow">Example of RT13 in microcode</a>) 40 some bits of instruction and you got to hand code them all. If you did it wrong, the machine crashed. If you didn't call the Video interrupt service routine often enough, the machine crashed. For debugging, there was a three digit LED on the front that you could increment (not set!). Beyond that you either used PDP-11 Link boards to hook the machine to another PERQ where you ran the kernel debugger, or you leased a $50k logic analyzer and used that......</p> <p>Fun!</p> http://stackoverflow.com/questions/64360/how-to-copy-text-from-emacs-to-another-application-on-linux/64406#64406 0 Answer by kfh for How to copy text from Emacs to another application on linux kfh 2008-09-15T16:25:55Z 2008-09-15T16:25:55Z <p>Hmm, what platform and what version of emacs are you using? With GNU Emacs 22.1.1 on Windows Vista, it works fine for me.</p> <p>If, by any chance, you are doing this from windows to linux through a RealVNC viewer, make sure you are running "vncconfig -iconic" on the linux box first.....</p> http://stackoverflow.com/questions/63756/is-there-a-way-to-diff-two-xmls-element-wise/63780#63780 1 Answer by kfh for Is there a way to "diff" two XMLs element-wise? kfh 2008-09-15T15:11:16Z 2008-09-15T15:11:16Z <p>See this question <a href="http://stackoverflow.com/questions/62603/seaching-for-a-good-xml-diff-tool#62641">seaching-for-a-good-xml-diff-tool</a></p> http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/62862#62862 2 Answer by kfh for How check if given string is legal (allowed) file name under Windows? kfh 2008-09-15T13:27:16Z 2008-09-15T13:42:27Z <p>The question is are you trying to determine if a path name is a legal windows path, or if it's legal <strong>on the system where the code is running.</strong>? I think the latter is more important, so personally, I'd probably decompose the full path and try to use _mkdir to create the directory the file belongs in, then try to create the file.</p> <p>This way you know not only if the path contains only valid windows characters, but if it actually represents a path that can be written by this process.</p> http://stackoverflow.com/questions/62542/what-is-the-best-free-test-tracking-software/62566#62566 3 Answer by kfh for What is the best free test tracking software? kfh 2008-09-15T12:57:02Z 2008-09-15T12:57:02Z <p>I haven't used this (yet), but <a href="http://www.mozilla.org/projects/testopia/" rel="nofollow">Testopia</a> seems to meet all your requirements, especially the one about Bugzilla.</p>