User JeffJ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T04:42:23Z http://stackoverflow.com/feeds/user/5429 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54536/win32-gui-app-that-writes-usage-text-to-stdout-when-invoked-as-app-exe-help 5 win32 GUI app that writes usage text to stdout when invoked as "app.exe --help" JeffJ 2008-09-10T16:07:58Z 2009-07-08T13:57:27Z <p>How do I create a windows application that does the following:</p> <ul> <li>it's a regular GUI app when invoked with no command line arguments</li> <li>specifying the optional "--help" command line argument causes the app to write usage text to stdout then terminate</li> <li>it must be a single executable. No cheating by making a console app exec a 2nd executable.</li> <li>assume the main application code is written in C/C++</li> <li>bonus points if no GUI window is created when "--help" is specified. (i.e., no flicker from a short-lived window)</li> </ul> <p>In my experience the standard visual studio template for console app has no GUI capability, and the normal win32 template does not send its stdout to the parent cmd shell.</p> http://stackoverflow.com/questions/54578/how-to-capture-output-of-pnputil-exe-e 2 How to capture output of "pnputil.exe -e" JeffJ 2008-09-10T16:23:47Z 2009-03-20T12:46:24Z <p>How do I capture the output of "%windir%/system32/pnputil.exe -e"? (assume windows vista 32-bit)</p> <p>Bonus for technical explanation of why the app normally writes output to the cmd shell, but when stdout and/or stderr are redirected then the app writes nothing to the console or to stdout/stderr?</p> <pre> C:\Windows\System32>PnPutil.exe --help Microsoft PnP Utility {...} C:\Windows\System32>pnputil -e > c:\foo.txt C:\Windows\System32>type c:\foo.txt C:\Windows\System32>dir c:\foo.txt Volume in drive C has no label. Volume Serial Number is XXXX-XXXX Directory of c:\ 09/10/2008 12:10 PM 0 foo.txt 1 File(s) 0 bytes </pre> http://stackoverflow.com/questions/534307/set-emacs-defaut-font-face-per-buffer-mode/536116#536116 3 Answer by JeffJ for Set Emacs defaut font face per-buffer/mode JeffJ 2009-02-11T09:39:42Z 2009-02-11T09:39:42Z <p>I have to give a partial answer because this is too complicated to figure out on the spot and I already blew my time budget.</p> <p>Face is a frame property. A frame can display multiple buffers at the same time. Mode is a buffer property. You ask how to vary the face on a per-mode basis. Combining all this, it seems that the question cannot not have a single fully-correct answer.</p> <p>You can approximate the desired answer if you assume that a given frame will never display more than one buffer. You can actually accomplish that with something like this, but modified to use special-display-regexps and a set of regexps that match your markdown-mode buffer names.</p> <pre><code>(append special-display-buffer-names '("*VC-log*" "*Help*" ("*Completions*" (height . 25) (font . "8x13")))) </code></pre> <p>However, this is probably not what you want. Your question seems to imply changing the face properties of a single frame.</p> <p>Again assuming that a frame will never display more than one buffer at a time, you can try advising switch-to-buffer. But that might not be sufficiently low level and it might be too slow. (untested)</p> <pre><code>(defadvice switch-to-buffer (after switch-to-buffer activate compile) "change the frame's default face after switch-to-buffer" (doSomethingToChangePropertiesOfDefaultFace)) </code></pre> <p>And now for my actual (incomplete) answer...</p> <p>A better, albeit more complicated, approach would instruct markdown-mode to use a new face for all regions that are not already assigned one of the built-in faces. You can create a new face with copy-face and give it interesting properties with set-face-*. </p> <p>Modify markdown-mode's font-lock-defaults to override the default font-lock-fontify-region-function as described in the comment block near line 946 of font-lock.el that begins, "Fontification functions". You can probably use a very slightly modified font-lock-default-fontify-region that does just one extra step immediately after it does: </p> <pre><code> (unless font-lock-keywords-only (font-lock-fontify-syntactically-region beg end loudly)) </code></pre> <p>The extra step parses the region similar to what font-lock-fontify-syntactically-region does, breaking the region into "interesting" sub-regions. But this time you find sub-regions that have the default face and you put-text-property those sub-regions to the new face that you previously created.</p> <p>In all this feels like it should be only a couple lines of elisp in your .emacs file, plus make a copy of font-lock-default-fontify-region that has only a minor diff from the original (call one new function), plus make a copy of font-lock-fontify-syntactically-region and modify it to do your bidding (the most difficult part).</p> <p>Actually, if you "after" advise font-lock-fontify-syntactically-region then you probably don't even need to modify font-lock-defaults or font-lock-default-fontify-region.</p> http://stackoverflow.com/questions/105130/why-use-windbg-vs-the-visual-studio-vs-debugger/535765#535765 0 Answer by JeffJ for Why use windbg vs the Visual Studio (VS) debugger ? JeffJ 2009-02-11T07:24:05Z 2009-02-11T07:24:05Z <p>Is the latest visual studio still missing an equivalent to windbg's "-o" that makes the debugger automatically attach to child processes? Very useful for apps that must be run from a complicated .bat file, or apps that fork and exit the parent process.</p> http://stackoverflow.com/questions/105130/why-use-windbg-vs-the-visual-studio-vs-debugger/535758#535758 1 Answer by JeffJ for Why use windbg vs the Visual Studio (VS) debugger ? JeffJ 2009-02-11T07:21:10Z 2009-02-11T07:21:10Z <p>Mixing kernel-debugging plus remote-user-mode-debugging.</p> <p>AFAIK, visual studio <em>still</em> cannot do remote debugging in the mode I describe as "solution". That's a darn good reason to use windbg.</p> <p>Problem:</p> <ul> <li>Set up windbg across 1394. Your app runs on the "target". Windbg runs on the "host".</li> <li>Run visual studio on the host</li> <li>Have visual studio launch your app on the target using the remote tools.</li> <li>Break into the kernel mode windbg to halt the target</li> <li>Wait long enough for visual studio's TCP connection to timeout</li> <li>"g" in windbg to un-halt the target</li> <li>observe your app "pop" when the remote monitor realizes the network connection is gone</li> <li>restart your app :(</li> </ul> <p>Solution:</p> <ul> <li>Don't use visual studio.</li> <li>Run a user mode windbg on the target with "-server"</li> <li>Have the target's windbg launch your app.</li> <li>On the host, start a 2nd windbg that connects to target with "-remote".</li> <li>If the TCP connection dies just start another windbg instance on the host and nothing is lost. Your app didn't die because the controlling user mode windbg process is running on the target.</li> </ul> <p>Also, I find it easier to use the same debugger for both kernel mode and user mode, windbg is very powerful even in user mode, and I can leverage my own windbg extensions in both kernel mode and user mode instances.</p> http://stackoverflow.com/questions/180261/which-visual-studio-debugger-features-are-missing-from-windbg/535725#535725 2 Answer by JeffJ for Which Visual Studio debugger features are missing from WinDbg? JeffJ 2009-02-11T07:04:03Z 2009-02-11T07:04:03Z <p>A polished UI is a feature. Windbg somewhat lacks this feature. But that only matters when UI "bugs" slow me down, and that's not really very often.</p> http://stackoverflow.com/questions/535596/biggest-windbg-pet-peeve 1 Biggest windbg pet peeve JeffJ 2009-02-11T06:06:27Z 2009-02-11T07:00:20Z <p>What is your biggest pet peeve related to the windbg debugger from microsoft?</p> <p>(note: I actually really like windbg if I ignore the unpolished UI.)</p> http://stackoverflow.com/questions/127564/what-is-your-favourite-windbg-tip-trick/535618#535618 3 Answer by JeffJ for What is your favourite Windbg tip/trick? JeffJ 2009-02-11T06:15:59Z 2009-02-11T06:15:59Z <p>The "tip" I use most often is one that will save you from having to touch that pesky mouse so often: Alt-1</p> <p>Alt-1 will place focus into the command window so that you can actually type a command and so that up-arrow actually scrolls through command history. However, it doesn't work if your focus is already in the scrollable command history.</p> <p>Peeve: why the heck are key presses ignored while the focus is in a source window? It's not like you can edit the source code from inside windbg. Alt-1 to the rescue.</p> http://stackoverflow.com/questions/535596/biggest-windbg-pet-peeve/535613#535613 0 Answer by JeffJ for Biggest windbg pet peeve JeffJ 2009-02-11T06:14:27Z 2009-02-11T06:14:27Z <p>How insanely slow .kdfiles copies new binaries across the 1394 connection. It can take up to one minute for a large dll.</p> http://stackoverflow.com/questions/535596/biggest-windbg-pet-peeve/535607#535607 0 Answer by JeffJ for Biggest windbg pet peeve JeffJ 2009-02-11T06:11:14Z 2009-02-11T06:11:14Z <p>Key presses are ignored while the focus is in a source window. It's not like you can edit the source code from inside windbg. At least there's the Alt-1 workaround.</p> http://stackoverflow.com/questions/535596/biggest-windbg-pet-peeve/535604#535604 0 Answer by JeffJ for Biggest windbg pet peeve JeffJ 2009-02-11T06:10:09Z 2009-02-11T06:10:09Z <p>The ridiculous behavior when you attempt to use click-drag to select text on a line that is wider than its physical window.</p> <p>The pieces of the history window that I need to copy/paste into bug reports are frequently wider than the physical window. I've gotten so used to the triple-click workaround that I find myself attempting to misuse triple click in other (well behaved) applications.</p> http://stackoverflow.com/questions/240468/worst-muscle-memory-keyboard-shortcut/535585#535585 0 Answer by JeffJ for Worst "muscle memory" keyboard shortcut? JeffJ 2009-02-11T06:00:01Z 2009-02-11T06:00:01Z <p>Premature email sent from outlook because it has so many keyboard shortcuts for sending mail and at least one maps to a common emacs key binding. The key press is so subconscious that I usually don't even remember what I just typed to cause the email to send.</p> http://stackoverflow.com/questions/52855/best-technique-for-launching-a-windbg-user-mode-remote-debugging-session/53100#53100 0 Answer by JeffJ for best technique for launching a windbg user-mode remote debugging session JeffJ 2008-09-09T23:02:28Z 2008-09-26T13:50:13Z <p>I tend to use option 4 (-server) because it is the only one that doesn't "pop" when you break into the kernel debugger long enough for the TCP connection to timeout. But this is more complex and not fully satisfying. So I'm looking for "best practices".</p> http://stackoverflow.com/questions/52855/best-technique-for-launching-a-windbg-user-mode-remote-debugging-session 4 best technique for launching a windbg user-mode remote debugging session JeffJ 2008-09-09T20:39:04Z 2008-09-26T13:50:13Z <p>What is your favorite technique for launching a windbg user-mode remote debugging session? Why is do you prefer this technique over other techniques? (pros/cons)</p> <p>There are at least four different ways to do user-mode remote debug using windbg, as documented in the "Remote Debugging" section of the debugging tools for windows help file.</p> <ol> <li>run app on target then attach to it from the host windbg</li> <li>have the host windbg use remote.exe to launch the app on the target</li> <li>have the "smart client" host windbg launch the app on the target via a process server that is running on the target</li> <li>run a windbg instance on the target machine using the option "-server" to automatically start a server, then connect to the server from a 2nd machine.</li> </ol> http://stackoverflow.com/questions/54578/how-to-capture-output-of-pnputil-exe-e/54733#54733 0 Answer by JeffJ for How to capture output of "pnputil.exe -e" JeffJ 2008-09-10T17:10:21Z 2008-09-10T17:10:21Z <p>@[Peter Ritchie]: Piping to clip has the effect of clearing the clipboard and writing nothing to the console. Good try.</p> http://stackoverflow.com/questions/54578/how-to-capture-output-of-pnputil-exe-e/54681#54681 0 Answer by JeffJ for How to capture output of "pnputil.exe -e" JeffJ 2008-09-10T16:56:12Z 2008-09-10T16:56:12Z <p>I think I found the technical answer for why it behaves this way. The MSDN page for WriteConsole says that redirecting standard output to a file causes WriteConsole to fail and that WriteFile should be used instead. The debugger confirms that pnputil.exe does call kernel32!WriteConsoleW and kernel32!WriteConsoleInputW.</p> <p>Hmm, I should have asked this as two separate questions.</p> <p>I'm still looking for an answer for how to scrape the output from this command. The accepted answer will be one that answers this part of the question.</p> http://stackoverflow.com/questions/54578/how-to-capture-output-of-pnputil-exe-e/54619#54619 0 Answer by JeffJ for How to capture output of "pnputil.exe -e" JeffJ 2008-09-10T16:41:17Z 2008-09-10T16:41:17Z <p>As alluded to in the question, but not clearly stated, "pnputil -e 2> c:\foo.txt" does not have the intended result either. This one directs nothing into the file but it does send the output to the console.</p> http://stackoverflow.com/questions/52600/what-does-the-pdb-get-me-while-debugging-and-how-do-i-know-its-working/52705#52705 3 Answer by JeffJ for What does the PDB get me while debugging and how do I know it's working? JeffJ 2008-09-09T19:34:06Z 2008-09-09T19:34:06Z <p>The pdb contains information the debugger needs in order to correctly read the stack. Your stack traces will contain line numbers and symbol names of the stack frames inside of the modules for which you have the pdb.</p> <p>I'll give two usages examples. The first is the obvious answer. The second explains source-indexed pdb's.</p> <p>1st usage example...</p> <p>Depending on calling convention and which optimizations the compiler used, it might not be possible for the debugger to manually unwind the stack through a module for which you do not have a pdb. This can happen with certain third party libraries and even for some parts of the OS.</p> <p>Consider a scenario in which you encounter an access violation inside of the windows OS. The stack trace does not unwind into your own application because that OS component uses a special calling convention that confuses the debugger. If you configure your symbol path to download the public OS pdb's, then there is a good chance that the stack trace will unwind into your application. That enables you to see exactly what arguments your own code passed into the OS system call. (and similar example for AV inside of a 3rd party library or even inside of your own code)</p> <p>2nd usage example...</p> <p>Pdb's have another very useful property - they can integrate with some source control systems using a feature that microsoft calls "source indexing". A source-indexed pdb contains source control commands that specify how to fetch from source control the exact file versions that were used to build the component. Microsoft's debuggers understand how to execute the commands to automatically fetch the files during a debug session. This is a powerful feature that saves the debug egineer from having to manually sync a source tree to the correct label for a given build. It's especially useful for remote debugging sessions and for analyzing crash dumps post-mortem.</p> <p>The "debugging tools for windows" installation (windbg) contains a document named srcsrv.doc which provides an example demonstrating how to use srctool.exe to determine which source files are source-indexed in a given pdb.</p> <p>To answer your question "how do I know", the "modules" feature in the debugger can tell you which modules have a corresponding pdb. In windbg use the "lml" command. In visual studio select modules from somewhere in the debug menus. (sorry, I don't have a current version of visual studio handy)</p> http://stackoverflow.com/questions/292480/ms-source-server-significance-of-srcsrv-ini-variable/295473#295473 Comment by JeffJ on MS Source Server: significance of srcsrv.ini variable JeffJ 2009-06-17T15:41:20Z 2009-06-17T15:41:20Z What you describe is documented in the srcsrv.doc file that comes as part of Debugging Tools for Windows package. I.e., it comes with windbg. http://stackoverflow.com/questions/534307/set-emacs-defaut-font-face-per-buffer-mode/536116#536116 Comment by JeffJ on Set Emacs defaut font face per-buffer/mode JeffJ 2009-02-11T19:27:36Z 2009-02-11T19:27:36Z Cool. But I'll probably wait until emacs 23 actually ships before updating to it. http://stackoverflow.com/questions/534307/set-emacs-defaut-font-face-per-buffer-mode/536116#536116 Comment by JeffJ on Set Emacs defaut font face per-buffer/mode JeffJ 2009-02-11T09:43:57Z 2009-02-11T09:43:57Z Names and line numbers speak to GNU emacs 22.3.1. http://stackoverflow.com/questions/240468/worst-muscle-memory-keyboard-shortcut/240555#240555 Comment by JeffJ on Worst "muscle memory" keyboard shortcut? JeffJ 2009-02-11T05:50:46Z 2009-02-11T05:50:46Z @TM, Try the &quot;It's All Text!&quot; firefox extension. It adds a button that opens any text area in your favorite editor, e.g. emacs. Great for wikis. But the coolest feature is a &quot;Remove all bugs&quot; checkbox in the options menu. :) http://stackoverflow.com/questions/52855/best-technique-for-launching-a-windbg-user-mode-remote-debugging-session Comment by JeffJ on best technique for launching a windbg user-mode remote debugging session JeffJ 2008-09-26T13:51:40Z 2008-09-26T13:51:40Z Ah, I had confused the inability to accept your own answer with inability to answer your own question. Thanks. http://stackoverflow.com/questions/52855/best-technique-for-launching-a-windbg-user-mode-remote-debugging-session/52871#52871 Comment by JeffJ on best technique for launching a windbg user-mode remote debugging session JeffJ 2008-09-26T13:49:17Z 2008-09-26T13:49:17Z Option 1 is my least favorite because it's difficult to automate with a script. All of the other options are (equally) easy and efficient with the help of a simple script. http://stackoverflow.com/questions/54536/win32-gui-app-that-writes-usage-text-to-stdout-when-invoked-as-app-exe-help/54609#54609 Comment by JeffJ on win32 GUI app that writes usage text to stdout when invoked as "app.exe --help" JeffJ 2008-09-26T13:42:58Z 2008-09-26T13:42:58Z This answer was accepted because of information in the external link. However, I'm tempted to unaccept this answer and accept Hugh Allen's answer instead. http://stackoverflow.com/questions/54536/win32-gui-app-that-writes-usage-text-to-stdout-when-invoked-as-app-exe-help/113032#113032 Comment by JeffJ on win32 GUI app that writes usage text to stdout when invoked as "app.exe --help" JeffJ 2008-09-26T13:39:49Z 2008-09-26T13:39:49Z This is a great answer. Thanks. Forking a 2nd process is not cheating.