User jfm3 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T09:21:46Zhttp://stackoverflow.com/feeds/user/11138http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48006/is-it-worth-investing-time-in-learning-to-use-emacs/69824#698244Answer by jfm3 for Is it worth investing time in learning to use emacs?jfm32008-09-16T06:33:51Z2009-11-28T17:46:11Z<p>vi is a kitchen knife.</p>
<p>vim is a really nice, sharp, balanced chef's knife.</p>
<p>Emacs is a light saber.</p>
<p>Most of the time, my job requires me to chop vegetables. Occasionally, I have to take on an entire army of robots.</p>
<p>I've been using Emacs for 20 years. I'm typing in Emacs right now with a widget called <a href="https://addons.mozilla.org/en-US/firefox/addon/4125" rel="nofollow">"It's All Text"</a> that lets me suck text in and out of text boxes in Firefox. I can go really fast in Emacs. I am significantly less productive without it.</p>
<p>This is highly debateable, but I also think that learning Emacs can teach you a surprising amount about programming.</p>
http://stackoverflow.com/questions/75255/how-do-you-start-running-the-program-over-again-in-gdb-with-target-remote3How do you start running the program over again in gdb with 'target remote'? jfm32008-09-16T18:10:03Z2009-10-28T21:05:29Z
<p>When you're doing a usual gdb session on an executable file on the same computer, you can give the run command and it will start the program over again.</p>
<p>When you're running gdb on an embedded system, as with the command target localhost:3210', how do you start the program over again without quitting and restarting your gdb session?</p>
http://stackoverflow.com/questions/154136/why-are-there-sometimes-meaningless-do-while-and-if-else-statements-in-c-c-macr33Why are there sometimes meaningless do/while and if/else statements in C/C++ macros? jfm32008-09-30T17:36:24Z2009-10-10T08:33:06Z
<p>In many C/C++ macros I'm seeing the code of the macro wrapped in what seems like a meaningless <code>do while</code> loop. Here are examples.</p>
<pre><code>#define FOO(X) do { f(X); g(X); } while (0)
#define FOO(X) if (1) { f(X); g(X); } else
</code></pre>
<p>I can't see what the <code>do while</code> is doing. Why not just write this without it?</p>
<pre><code>#define FOO(X) f(X); g(X)
</code></pre>
http://stackoverflow.com/questions/151945/how-do-i-control-how-emacs-makes-backup-files8How do I control how Emacs makes backup files? jfm32008-09-30T06:15:08Z2009-01-21T21:24:48Z
<p>Emacs puts backup files named <code>foo~</code> everywhere and I don't like having to remember to delete them. Also, if I edit a file that has a hard link somewhere else in the file system, the hard link points to the backup when I'm done editing, and that's confusing and awful. How can I either eliminate these backup files, or have them go somewhere other than the same directory?</p>
http://stackoverflow.com/questions/144983/how-do-i-make-emacs-start-without-so-much-fanfare6How do I make Emacs start without so much fanfare?jfm32008-09-28T02:02:31Z2008-10-16T14:46:48Z
<p>Every time I start Emacs I see a page of help text and a bunch of messages suggesting that I try the tutorial. How do I stop this from happening?</p>
http://stackoverflow.com/questions/180910/how-do-i-change-read-write-mode-for-a-file-using-emacs/187917#1879175Answer by jfm3 for How do I change read/write mode for a file using Emacs?jfm32008-10-09T15:52:31Z2008-10-09T15:52:31Z<p>Be sure you're not confusing 'file' with 'buffer'. You can set buffers to read-only and back again with <code>C-x C-q</code> (<code>toggle-read-only</code>). If you have permission to read, but not write, a file, the buffer you get when you visit the file (<code>C-x C-f</code> or <code>find-file</code>) will be put in read-only mode automatically. If you want to change the permissions on a file in the file system, perhaps start with <code>dired</code> on the directory that contains the file. Documentation for dired can be found in info; <code>C-h i (emacs)dired RET</code>.</p>
http://stackoverflow.com/questions/154136/why-are-there-sometimes-meaningless-do-while-and-if-else-statements-in-c-c-macr/154138#15413880Answer by jfm3 for Why are there sometimes meaningless do/while and if/else statements in C/C++ macros? jfm32008-09-30T17:36:35Z2008-09-30T17:36:35Z<p>The <code>do ... while</code> and <code>if ... else</code> are there to make it so that a
semicolon after your macro always means the same thing. Let's say you
had something like your second macro.</p>
<pre><code>#define BAR(X) f(x); g(x)
</code></pre>
<p>Now if you were to use <code>BAR(X);</code> in an <code>if ... else</code> statement, where the bodies of the if statement were not wrapped in curly brackets, you'd get a bad surprise.</p>
<pre><code>if (corge)
BAR(corge);
else
gralt();
</code></pre>
<p>The above code would expand into</p>
<pre><code>if (corge)
f(corge); g(corge);
else
gralt();
</code></pre>
<p>which is syntactically incorrect, as the else is no longer associated with the if. It doesn't help to wrap things in curly braces within the macro, because the following is also syntactically incorrect.</p>
<pre><code>if (corge)
{f(corge); g(corge);};
else
gralt();
</code></pre>
<p>There are two ways of fixing the problem. The first is to use a comma to sequence statements within the macro without robbing it of its ability to act like an expression.</p>
<pre><code>#define BAR(X) f(X), g(X)
</code></pre>
<p>The above version of bar <code>BAR</code> expands the above code into what follows, which is syntactically correct.</p>
<pre><code>if (corge)
f(corge), g(corge);
else
gralt();
</code></pre>
<p>This doesn't work if instead of <code>f(X)</code> you have a more complicated body of code that needs to go in its own block, say for example to declare local variables. In the most general case the solution is to use something like <code>do ... while</code> to cause the macro to be a single statement that takes a semicolon without confusion.</p>
<pre><code>#define BAR(X) do { \
int i = f(X); \
if (i > 4) g(i); \
} while (0)
</code></pre>
<p>You don't have to use <code>do ... while</code>, you could cook up something with <code>if ... else</code> as well, although when <code>if ... else</code> expands inside of an <code>if ... else</code> it leads to a "dangling else", which could make an existing dangling else problem even harder to find, as in the following code.</p>
<pre><code>if (corge)
if (1) { f(corge); g(corge); } else;
else
gralt();
</code></pre>
<p>The point is to use up the semicolon in contexts where a dangling semicolon is erroneous. Of course, it could (and probably should) be argued at this point that it would be better to declare <code>BAR</code> as an actual function, not a macro.</p>
<p>In summary, the <code>do ... while</code> is there to work around the shortcomings of the C preprocessor. When those C style guides tell you to lay off the C preprocessor, this is the kind of thing they're worried about.</p>
http://stackoverflow.com/questions/59465/in-emacs-how-can-i-add-a-website-like-stackoverflow-to-my-webjump-hotlist/151984#1519843Answer by jfm3 for In Emacs, how can I add a website like 'Stackoverflow' to my webjump hotlist?jfm32008-09-30T06:33:31Z2008-09-30T06:33:31Z<p>You will need to find where you are setting your <code>webjump-sites</code> variable. This is probably your <code>.emacs</code> file. Then you'll need to add a pair to that alist as follows.</p>
<pre><code>("stackoverflow". "www.stackoverflow.com")
</code></pre>
<p>A full example of what to put in your .emacs would be as follows.</p>
<pre><code>(setq webjump-sites
(append '(("stackoverflow" . "www.stackoverflow.com"))
webjump-sample-sites)
</code></pre>
http://stackoverflow.com/questions/151639/yasnippet-and-pabbrev-working-together-in-emacs/151956#1519561Answer by jfm3 for Yasnippet and pabbrev working together in Emacsjfm32008-09-30T06:18:31Z2008-09-30T06:18:31Z<p>Have a look at <a href="http://www.emacswiki.org/cgi-bin/wiki/tabkey2.el" rel="nofollow">tabkey2.el</a>. It looks like it addresses the problem you're having.</p>
http://stackoverflow.com/questions/151945/how-do-i-control-how-emacs-makes-backup-files/151946#15194615Answer by jfm3 for How do I control how Emacs makes backup files? jfm32008-09-30T06:15:25Z2008-09-30T06:15:25Z<p>If you've ever had your <em>ass saved</em> by an Emacs backup file, you
probably want more of them, not less of them. It is annoying
that they go in the same directory as the file you're editing,
but that is easy to change. You can make all backup files go
into a directory by putting something like the following in your
<code>.emacs</code>.</p>
<pre><code>(setq backup-directory-alist `(("." . "~/.saves")))
</code></pre>
<p>There are a number of arcane details associated with how Emacs
might create your backup files. Should it rename the original
and write out the edited buffer? What if the original is linked?
In general, the safest but slowest bet is to always make backups
by copying.</p>
<pre><code>(setq backup-by-copying t)
</code></pre>
<p>If that's too slow for some reason you might also have a look at
<code>backup-by-copying-when-linked</code>.</p>
<p>Since your backups are all in their own place now, you might want
more of them, rather than less of them. Have a look at the Emacs
documentation for these variables (with <code>C-h v</code>).</p>
<pre><code>(setq delete-old-versions t
kept-new-versions 6
kept-old-versions 2
version-control t)
</code></pre>
<p>Finally, if you absolutely must have no backup files, you can set
<code>make-backup-files</code> to <code>nil</code>. It makes me sick to think of it
though.</p>
http://stackoverflow.com/questions/147298/multithreaded-memory-allocators-for-c-c/147317#1473171Answer by jfm3 for Multithreaded Memory Allocators for C/C++jfm32008-09-29T02:26:24Z2008-09-29T02:26:24Z<p>We used hoard on a project where I worked a few years ago. It seemed to work great. I have no experience iwth the other allocators. It should be pretty easy to try different ones and do load testing, no?</p>
http://stackoverflow.com/questions/145175/how-to-invoke-an-interactive-elisp-interpreter-in-emacs/145218#1452184Answer by jfm3 for How to invoke an interactive elisp interpreter in Emacs?jfm32008-09-28T04:30:27Z2008-09-28T17:08:43Z<p>Your best bet is the <code>*scratch*</code> buffer. You can make it more like a REPL by first turning on the debugger:</p>
<pre><code>M-x set-variable debug-on-error t
</code></pre>
<p>Then use <code>C-j</code> instead of <code>C-x C-e</code>, which will insert the result of evaluating the expression into the buffer on the line after the expression. Instead of things like command history, <code>* * *</code> and so forth, you just move around the <code>*scratch*</code> buffer and edit.</p>
<p>If you want things like <code>* * *</code> to work, more like a usual REPL, try <code>ielm</code>.</p>
<pre><code>M-x ielm
</code></pre>
http://stackoverflow.com/questions/146159/is-fortran-faster-than-c/146205#1462054Answer by jfm3 for Is Fortran faster than C?jfm32008-09-28T16:35:02Z2008-09-28T16:35:02Z<p>There is nothing about the <em>languages</em> Fortran and C which makes one faster than the other for specific purposes. There are things about specific <em>compilers</em> for each of these languages which make some favorable for certain tasks more than others. </p>
<p>For many years, Fortran compilers existed which could do black magic to your numeric routines, making many important computations insanely fast. The contemporary C compilers couldn't do it as well. As a result, a number of great libraries of code grew in Fortran. If you want to use these well tested, mature, wonderful libraries, you break out the Fortran compiler.</p>
<p>My informal observations show that these days people code their heavy computational stuff in any old language, and if it takes a while they find time on some cheap compute cluster. Moore's Law makes fools of us all.</p>
http://stackoverflow.com/questions/146081/emacs-how-do-you-store-the-last-parameter-supplied-by-the-user-as-the-default/146191#1461914Answer by jfm3 for Emacs: How do you store the last parameter supplied by the user as the default?jfm32008-09-28T16:22:15Z2008-09-28T16:22:15Z<p>You can see how the <code>compile</code> command does this. Bring up the help text for the compile command with <code>C-h f compile</code>, move the cursor over the name of the file that contains the function, then hit <code>RETURN</code>. This will bring up the source file for <code>compile</code>.</p>
<p>Basically, there's a dynamic/global variable <code>compile-command</code> that holds the last compile command. Emacs is a single-user, single-threaded system, so there's really no need for much more. Also keep in mind that Elisp is a very old school Lisp, and variables have dynamic (call stack), not lexical, scope. In this kind of system it is natural to:</p>
<pre><code>(let ((compile-command "gcc -o foo foo.c frobnicate.c"))
...
(compile)
...)
</code></pre>
<p>Speaking of the <code>compile</code> command, have you tried using it instead of your own <code>run-rake</code> function?</p>
http://stackoverflow.com/questions/79165/how-to-migrate-svn-with-history-to-a-new-git-repository/79178#7917810Answer by jfm3 for How to migrate SVN with history to a new Git repository?jfm32008-09-17T02:08:25Z2008-09-28T03:01:40Z<p>Magic:</p>
<pre><code>$ git-svn clone http://svn/repo/here/trunk
</code></pre>
<p>Git and SVN operate very differently. You need to learn Git, and if you want to track changes from SVN upstream, you need to learn <code>git-svn</code>. The <code>git-svn</code> man page has a good examples section:</p>
<pre><code>$ man git-svn
</code></pre>
http://stackoverflow.com/questions/145043/how-do-i-stop-emacs-from-automatically-editing-my-startup-file3How do I stop Emacs from automatically editing my startup file?jfm32008-09-28T02:36:33Z2008-09-28T02:36:42Z
<p>Emacs edits my <code>.emacs</code> file whenever I use the customization facility, or when I type a command that is disabled by default. Any automatic editing of my configuration makes me nervous. How can I stop Emacs from ever editing my <code>.emacs</code>. file?</p>
http://stackoverflow.com/questions/145043/how-do-i-stop-emacs-from-automatically-editing-my-startup-file/145045#1450459Answer by jfm3 for How do I stop Emacs from automatically editing my startup file?jfm32008-09-28T02:36:42Z2008-09-28T02:36:42Z<p>The first thing to do is to stop that silly "disabled command" feature from ever doing anything. If you care this much about your <code>.emacs</code> file, you certainly don't need <code>novice.el</code> bossing you around.</p>
<pre><code>(setq disabled-command-function nil)
</code></pre>
<p>The customization facility can be made to stuff all your customizations in a separate file with the following commands.</p>
<pre><code>(setq custom-file "~/.emacs-custom.el")
(load custom-file 'noerror)
</code></pre>
http://stackoverflow.com/questions/108768/needless-pointer-casts-in-c/109002#1090022Answer by jfm3 for Needless pointer-casts in Cjfm32008-09-20T18:58:44Z2008-09-28T02:23:58Z<p>The "forgot stdlib.h" argument is a straw man. Modern compilers will detect and warn of the problem (gcc -Wall).</p>
<p>You should always cast the result of malloc immediately. Not doing so should be considered an error, and not just because it will fail as C++. If you're targeting a machine architecture with different kinds of pointers, for example, you could wind up with a very tricky bug if you don't put in the cast.</p>
<p><strong>Edit</strong>: The commentor <a href="http://stackoverflow.com/users/13430/evan-teran">Evan Teran</a> is correct. My mistake was thinking that the compiler didn't have to do any work on a void pointer in any context. I freak when I think of FAR pointer bugs, so my intuition is to cast everything. Thanks Evan!</p>
http://stackoverflow.com/questions/144983/how-do-i-make-emacs-start-without-so-much-fanfare/144984#1449844Answer by jfm3 for How do I make Emacs start without so much fanfare?jfm32008-09-28T02:02:44Z2008-09-28T02:02:44Z<p>Put the following in your <code>.emacs</code>:</p>
<pre>
(setq inhibit-startup-message t)
(setq inhibit-startup-echo-area-message t)
</pre>
http://stackoverflow.com/questions/144487/can-you-recommend-a-postgresql-visual-database-designer-for-linux/144973#1449730Answer by jfm3 for Can you recommend a PostgreSQL Visual Database Designer for Linux?jfm32008-09-28T01:50:20Z2008-09-28T01:50:20Z<p>This is a crappy answer for which I should be taken out and shot, but you can search over nearly all PostgreSQL related projects at <a href="http://pgfoundry.org/" rel="nofollow">PgFoundry</a>. I don't know from GUI database design tools, but I'd imagine you should be able to find something there, if it exists.</p>
http://stackoverflow.com/questions/144735/best-way-to-get-started-with-programming-other-things-than-your-computer/144958#1449580Answer by jfm3 for Best way to get started with programming other things than your computer?jfm32008-09-28T01:38:11Z2008-09-28T01:38:11Z<p>I think it's fun to hack old iPods. You can get a <a href="http://en.wikipedia.org/wiki/IPod#Models" rel="nofollow">fourth generation iPod</a> (or any of a number of <a href="http://www.rockbox.org/twiki/bin/view/Main/TargetStatus" rel="nofollow">supported devices</a>), run <a href="http://www.rockbox.org/" rel="nofollow">Rockbox</a> on it, then get the source and help hack on it.</p>
http://stackoverflow.com/questions/144568/learn-c-from-open-source-code/144951#1449514Answer by jfm3 for Learn C from Open Source codejfm32008-09-28T01:33:33Z2008-09-28T01:33:33Z<p>The <a href="http://git.or.cz/" rel="nofollow">Git</a> source code is pretty nice, and nearly all written in C. Some incidental utilities are written in Perl or Python. You can use Git to go back to Git's early simple incarnations, then gradually add patches from the project history to see how things progressed. Bonus: you learn Git.</p>
http://stackoverflow.com/questions/137043/can-emacs-re-indent-a-big-blob-of-html-for-me/144938#1449383Answer by jfm3 for Can emacs re-indent a big blob of HTML for me?jfm32008-09-28T01:22:01Z2008-09-28T01:22:01Z<p>By default, when you visit a <code>.html</code> file in Emacs (22 or 23), it will put you in <code>html-mode</code>. That is probably not what you want. You probably want <code>nxml-mode</code>, which is seriously fancy. <code>nxml-mode</code> seems to only come with Emacs 23, although you can download it for earlier versions of emacs from the <a href="http://www.thaiopensource.com/nxml-mode/" rel="nofollow">nXML web site</a>. There is also a Debian and Ubuntu package named <code>nxml-mode</code>. You can enter <code>nxml-mode</code> with:</p>
<pre>
M-x nxml-mode
</pre>
<p>You can view nxml mode documentation with:</p>
<pre>
C-h i g (nxml-mode) RET
</pre>
<p>All that being said, you will probably have to use something like <a href="http://tidy.sourceforge.net/" rel="nofollow">Tidy</a> to re-format your xhtml example. <code>nxml-mode</code> will get you from
<code></p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<table>
<tr>
<td>blah</td></tr></table>
</body>
</code></pre>
<p></code>
to</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<table>
<tr>
<td>blah</td></tr></table>
</body>
</html>
</code></pre>
<p>but I don't see a more general facility to do line breaks on certain xml tags as you want. Note that <code>C-j</code> will insert a new line with proper indentation, so you may be able to do a quick macro or hack up a <code>defun</code> that will do your tables.</p>
http://stackoverflow.com/questions/129257/eclipse-sytle-function-completions-in-emacs-for-c-c-and-java/129563#1295632Answer by jfm3 for Eclipse Sytle Function Completions in Emacs for C, C++ and JAVA?jfm32008-09-24T20:07:25Z2008-09-24T20:07:25Z<p>I can only answer your question as one who has not used Eclipse much. But! What if there was a really nice fast heuristic analysis of <em>everything</em> you typed or looked at in your emacs buffers, and you got <em>smart</em> completion over all that everywhere, not just in code?</p>
<pre>
M-x load-library completion
M-x global-set-key C-RET complete RET
</pre>
http://stackoverflow.com/questions/122616/painless-way-to-trim-leading-trailing-whitespace-in-c/122912#1229120Answer by jfm3 for Painless way to trim leading/trailing whitespace in C?jfm32008-09-23T18:39:59Z2008-09-23T18:39:59Z<p>I'm not sure what you consider "painless."</p>
<p>C strings are pretty painful. We can find the first non-whitespace character position trivially:</p>
<pre>
while (isspace(* p)) p++;
</pre>
<p>We can find the last non-whitespace character position with two similar trivial moves:</p>
<pre>
while (* q) q++;
do { q--; } while (isspace(* q));
</pre>
<p>(I have spared you the pain of using the <code>*</code> and <code>++</code> operators at the same time.)</p>
<p>The question now is what do you do with this? The datatype at hand isn't really a big robust abstract <code>String</code> that is easy to think about, but instead really barely any more than an array of storage bytes. Lacking a robust data type, it is impossible to write a function that will do the same as PHperytonby's <code>chomp</code> function. What would such a function in C return?</p>
http://stackoverflow.com/questions/121282/why-do-my-keystrokes-turn-into-crazy-characters-after-i-dump-a-bunch-of-binary-da/122696#122696-2Answer by jfm3 for Why do my keystrokes turn into crazy characters after I dump a bunch of binary data into my terminal?jfm32008-09-23T18:08:20Z2008-09-23T18:08:20Z<p>SPECIAL TUESDAY BONUS ANSWER</p>
<p>This does not answer the question! It is a BONUS ANSWER!</p>
<p>If you want to have a look at the contents of <code>/bin/ls</code>, try this:</p>
<pre>
$ cat /bin/ls | od -a
</pre>
http://stackoverflow.com/questions/116654/best-non-c-language-for-generative-programming/122596#1225963Answer by jfm3 for Best non-C++ language for generative programming?jfm32008-09-23T17:51:53Z2008-09-23T17:51:53Z<p>Common Lisp supports programs that write programs in several different ways.</p>
<p>1) Program data and program "abstract syntax tree" are uniform (S-expressions!)</p>
<p>2) <code>defmacro</code></p>
<p>3) Reader macros.</p>
<p>4) MOP</p>
<p>Of these, the real mind-blower is MOP. Read "The Art of the Metaobject Protocol." It will change things for you, I promise!</p>
http://stackoverflow.com/questions/110911/what-is-the-closest-thing-to-slime-for-scheme/122570#1225703Answer by jfm3 for What is the closest thing to Slime for Scheme?jfm32008-09-23T17:46:36Z2008-09-23T17:46:36Z<p>I haven't used it, but you might try <a href="http://www.neilvandyke.org/quack/quack.el" rel="nofollow">Quack</a> with <code>mzscheme</code>.</p>
<p>SLIME is pretty hard to beat though. There's a lot of niceness going on in the SWANK end of it.</p>
http://stackoverflow.com/questions/116506/how-to-get-a-quick-status-from-the-emacs-compilation-buffer/122539#1225392Answer by jfm3 for How to get a quick status from the emacs compilation buffer?jfm32008-09-23T17:41:26Z2008-09-23T17:41:26Z<pre>
(setq compilation-scroll-output t)
</pre>
<p>or</p>
<pre>
M-x set-variable compilation-scroll-output t RET
</pre>
<p>Also, if you get used to using <code>next-error</code> and <code>previous-error</code> before your compilation finishes, you will start to see why the default behavior is desirable.</p>
http://stackoverflow.com/questions/116560/open-an-emacs-buffer-when-a-command-tries-to-open-an-editor-in-shell-mode/122506#1225062Answer by jfm3 for Open an Emacs buffer when a command tries to open an editor in shell-mode jfm32008-09-23T17:37:12Z2008-09-23T17:37:12Z<p>There's emacsclient, gnuserv, and in Emacs 23, multi-tty that are all useful for this. Actually I think in Emacs 23, emacsclient has all of the interesting functionality of gnuserv.</p>
http://stackoverflow.com/questions/34249/best-algorithm-to-test-if-a-linked-list-has-a-cycle/34253#34253Comment by jfm3 on Best algorithm to test if a linked list has a cyclejfm32008-11-12T06:37:29Z2008-11-12T06:37:29ZHash table solutions are O(n) space.http://stackoverflow.com/questions/208193/why-should-i-use-an-ide/208239#208239Comment by jfm3 on Why should I use an IDE?jfm32008-10-25T21:07:59Z2008-10-25T21:07:59ZYeah, that's not a safe generalization. I use Emacs for all the IDE features mentioned in these answers.http://stackoverflow.com/questions/154136/why-are-there-sometimes-meaningless-do-while-and-if-else-statements-in-c-c-macr/154138#154138Comment by jfm3 on Why are there sometimes meaningless do/while and if/else statements in C/C++ macros? jfm32008-09-30T18:05:47Z2008-09-30T18:05:47ZI know, I know! It's like I can read my own mind sometimes!http://stackoverflow.com/questions/148079/how-to-convert-a-string-into-bignum-in-c-code-which-extends-guileComment by jfm3 on How to convert a string into bignum in C code which extends Guile?jfm32008-09-30T06:53:21Z2008-09-30T06:53:21ZShould be tagged lisp and scheme, too.http://stackoverflow.com/questions/149500/what-does-the-code-if-blah-5-doComment by jfm3 on What does the code if ( blah(), 5) {} do?jfm32008-09-30T06:50:57Z2008-09-30T06:50:57ZSmells like homework.http://stackoverflow.com/questions/151639/yasnippet-and-pabbrev-working-together-in-emacsComment by jfm3 on Yasnippet and pabbrev working together in Emacsjfm32008-09-30T05:42:26Z2008-09-30T05:42:26ZHow are they "not playing nicely" can you be more concrete?http://stackoverflow.com/questions/151639/yasnippet-and-pabbrev-working-together-in-emacsComment by jfm3 on Yasnippet and pabbrev working together in Emacsjfm32008-09-30T05:40:54Z2008-09-30T05:40:54ZMore data needed. Are you byte-compiling?http://stackoverflow.com/questions/145563/how-to-find-out-which-numbers-occur-the-most-in-a-given-group-of-numbersComment by jfm3 on How to find out which numbers occur the most in a given group of numbers?jfm32008-09-28T16:38:49Z2008-09-28T16:38:49ZThis smells like a homework problem.http://stackoverflow.com/questions/146159/is-fortran-faster-than-cComment by jfm3 on Is Fortran faster than C?jfm32008-09-28T16:37:34Z2008-09-28T16:37:34ZThe title question is not so much subjective as it is a misunderstanding, I think. The more detailed question is not subjective.http://stackoverflow.com/questions/145699/lispphp/145754#145754Comment by jfm3 on Lisp+PHP ?jfm32008-09-28T16:24:00Z2008-09-28T16:24:00ZNot tooth, as in bite, but toot, as in honk.http://stackoverflow.com/questions/47309/godi-installation-issueComment by jfm3 on GODI installation issuejfm32008-09-28T02:46:00Z2008-09-28T02:46:00ZI'm not sure why this got closed. It's totally a programming question. I mean, if we can ask questions about IDEs, surely we can ask questions about installing libraries?http://stackoverflow.com/questions/144774/why-does-getwindowrgn-fail-on-vistaComment by jfm3 on Why does GetWindowRgn fail on Vista?jfm32008-09-28T01:29:07Z2008-09-28T01:29:07ZShould not be tagged 'c'.http://stackoverflow.com/questions/140336/where-can-i-find-a-video-of-a-pro-using-emacs/140434#140434Comment by jfm3 on Where can I find a video of a pro using emacs?jfm32008-09-28T01:26:13Z2008-09-28T01:26:13ZThis smells like a troll.http://stackoverflow.com/questions/121282/why-do-my-keystrokes-turn-into-crazy-characters-after-i-dump-a-bunch-of-binary-da/122696#122696Comment by jfm3 on Why do my keystrokes turn into crazy characters after I dump a bunch of binary data into my terminal?jfm32008-09-24T21:41:52Z2008-09-24T21:41:52ZMrs. Carlson of Chester, AL downvoted the BONUS ANSWER, and caught a case of the gout and the shingles at the same time. The next day, she changed to upvote the BONUS ANSWER. Not only was her Gouth, Shingles, and Whooping cough cured, but her car runs better than ever now.http://stackoverflow.com/questions/95631/open-a-file-with-su-sudo-inside-emacs/99223#99223Comment by jfm3 on Open a file with su/sudo inside Emacsjfm32008-09-23T19:08:18Z2008-09-23T19:08:18ZYou should only ever need one Emacs process. That's the point of using TRAMP in the first place. Authentication credentials are "cached" in a manner identical to how they are when you run <code>sudo</code> or <code>ssh</code> (that is to say, not at all, or in an <code>ssh-agent</code>).