User kfh - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T10:45:56Zhttp://stackoverflow.com/feeds/user/6597http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/65037/is-there-a-way-to-write-macros-with-a-variable-argument-list-in-visual-c/65067#65067-4Answer by kfh for is there a way to write macros with a variable argument list in visual C++?kfh2008-09-15T17:47:04Z2008-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#819820Answer by kfh for Quicker way to create duplicate Virtual PC images?kfh2008-09-17T10:55:38Z2008-09-17T10:55:38Z<p>Also, you mentioned cut & 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#714510Answer by kfh for Which Desktop Virtualization software runs most smoothly?kfh2008-09-16T11:42:27Z2008-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#661540Answer by kfh for How to identify specific digits of an integer input in C?kfh2008-09-15T19:46:27Z2008-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 < sizeof(buf)) && (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#643825Answer by kfh for What is the strangest programming language you have used?kfh2008-09-15T16:22:51Z2008-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#644060Answer by kfh for How to copy text from Emacs to another application on linuxkfh2008-09-15T16:25:55Z2008-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#637801Answer by kfh for Is there a way to "diff" two XMLs element-wise?kfh2008-09-15T15:11:16Z2008-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#628622Answer by kfh for How check if given string is legal (allowed) file name under Windows?kfh2008-09-15T13:27:16Z2008-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#625663Answer by kfh for What is the best free test tracking software?kfh2008-09-15T12:57:02Z2008-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>