User dmckee - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T06:14:59Zhttp://stackoverflow.com/feeds/user/2509http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1943502/height-of-emacs-bottom-command-line/1943511#19435110Answer by dmckee for height of emacs bottom command linedmckee2009-12-22T00:31:07Z2009-12-22T00:37:36Z<p>Do you mean the <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/emacs/Minibuffer.html" rel="nofollow">minibuffer</a>?</p>
<p>Using <code>C-h v minibuffer <tab></code> will give you a list of minibuffer related variable and if you finish the command give you the help.</p>
<p>Likewise, <code>C-h f minibuffer <tab></code> will give you a list of minibuffer related function.</p>
<p>I don't see anything obvious that would effect the height of the buffer.</p>
http://stackoverflow.com/questions/1941323/always-check-malloced-memory/1941380#19413801Answer by dmckee for Always check malloc'ed memory?dmckee2009-12-21T17:12:24Z2009-12-21T17:12:24Z<p>Yes, having insufficient memeory will almost certatinly presage other failures coming soon. <strong>But</strong> how sure are you that no corrupt output will occur between the failure to allocate and the final crash?</p>
<p>How sure are you for <em>every</em> program, <em>every</em> time you make an edit.</p>
<p>Catch your errors so you can <em>know</em> you crashed on time.</p>
http://stackoverflow.com/questions/1941025/languages-that-dont-compile-down-to-c/1941131#19411311Answer by dmckee for Languages that don't compile down to C?dmckee2009-12-21T16:33:39Z2009-12-21T16:51:53Z<p>Compiling to c is a cheap way to:</p>
<ul>
<li>take advantage of the existence of a c compiler on most platforms</li>
<li>take advantage of the fairly extensive work done on optimizing c</li>
<li>avoid having to really understand the machine you are working on</li>
</ul>
<p>It is not in-and-of-itself desirable, just relatively easy.</p>
http://stackoverflow.com/questions/1937420/how-to-generate-debug-symbols-with-makefile-for-c-linux/1937428#19374284Answer by dmckee for How to generate Debug symbols with Makefile for C? [Linux]dmckee2009-12-20T23:03:48Z2009-12-20T23:03:48Z<p>Include <code>-g</code> in the flags sent to the compiler and linker. The default variables for this are <code>CFLAGS</code> and <code>LDFLAGS</code> respectively.</p>
http://stackoverflow.com/questions/1936719/what-are-the-gcc-preprocessor-flags-for-the-compilers-version-number/1936737#19367372Answer by dmckee for What are the gcc preprocessor flags for the compiler's version number?dmckee2009-12-20T19:36:27Z2009-12-20T19:36:27Z<p>From the <a href="http://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html" rel="nofollow">online docs</a>:</p>
<blockquote>
<p>__GNUC__<br>
__GNUC_MINOR__<br>
__GNUC_PATCHLEVEL__<br>
These macros are defined by all GNU compilers that use the C preprocessor: C, C++, Objective-C and Fortran. Their values are the major version, minor version, and patch level of the compiler, as integer constants. For example, GCC 3.2.1 will define __GNUC__ to 3, __GNUC_MINOR__ to 2, and __GNUC_PATCHLEVEL__ to 1. These macros are also defined if you invoke the preprocessor directly. </p>
</blockquote>
<p>and</p>
<blockquote>
<p>__VERSION__<br>
This macro expands to a string constant which describes the version of the compiler in use. You should not rely on its contents having any particular form, but it can be counted on to contain at least the release number.</p>
</blockquote>
http://stackoverflow.com/questions/1934678/what-is-the-equivalent-of-getfsstat-on-linux/1934687#19346870Answer by dmckee for What is the equivalent of getfsstat() on Linux?dmckee2009-12-20T02:28:36Z2009-12-20T02:28:36Z<p>You can parse <code>/proc/filesystems</code>.</p>
http://stackoverflow.com/questions/1933451/why-should-exec-and-eval-be-avoided/1933462#19334622Answer by dmckee for Why should exec() and eval() be avoided?dmckee2009-12-19T17:01:40Z2009-12-19T17:01:40Z<p>Allowing these function in a context where they might run user input is a security issue, and sanitizers that actually work are hard to write.</p>
http://stackoverflow.com/questions/1932838/create-symbol-table/1933040#19330400Answer by dmckee for create symbol tabledmckee2009-12-19T14:28:25Z2009-12-19T14:28:25Z<p>Absolutely the simplest thing that you can do is provide an array of structures. SOmething like:</p>
<pre><code>typedef struct {
char *name;
char type; /* i for int, s for string ... */
value union {
int i;
char c;
char *s;
float f;
}
} symbol;
symbol stable[MAX_SYMBOLS];
int symbolCount=0;
</code></pre>
<p>and a set of routines to manipulate it.</p>
<p>You'll need:</p>
<pre><code>int isDefined(char *name); /* returns trye if the named symbol already exists */
symbol* addSymbol(char *name, char type); /* Adds a symbol; returns a pointer to it */
symbol* getSymbol(char *name); /* returns a pointer to the named symbol or NULL */
</code></pre>
<p>Once this is working, you will want to </p>
<ol>
<li>Get rid of the global symbol table, and make it a parameter to all you routines</li>
<li>replace the nasty, inefficient fixed array with a tree or hash table</li>
</ol>
http://stackoverflow.com/questions/1929708/debugging-a-makefile/1931687#19316871Answer by dmckee for debugging a makefiledmckee2009-12-19T01:55:30Z2009-12-19T14:12:15Z<p>This is a bit of a mess, and it is hard to diagnose without knowing more about the environment it is running it. But lets go with a few basics:</p>
<ul>
<li>You have only defined on target (<code>dmic_srv.h</code>), so when you run GNU make without arguments it will use that target.</li>
<li>Making the header depend on the source files is <em>very</em> unusual, <s>I doubt that is what you want this to do.</s> but you're doing code generation, so you are OK there.</li>
<li>There are two different kinds of assignment in GNU make. Plain <code>=</code> has lazy evaulation, but <code>:=</code> forces immediate evaluation. This effects the environment in which you <code>$(foreach )</code>'s are running.</li>
<li>You have two definitions of <code>USER_PRE_TARGETS</code>, but never use it anywhere. <strong>Added:</strong> Given that the all the <code>$(foreach )</code> commands exist in these definitions, you might just remove these and see if it get better.</li>
</ul>
http://stackoverflow.com/questions/1928060/how-to-right-justify-on-the-same-line-in-latex/1931718#19317180Answer by dmckee for How to right justify on the same line in LaTex?dmckee2009-12-19T02:14:30Z2009-12-19T02:14:30Z<p>For just spreading things out <a href="http://stackoverflow.com/questions/1928060/how-to-right-justify-on-the-same-line-in-latex/1928081#1928081">laalto nailed it</a>: use <code>hfill</code>. If you want to get the intervening space filled with "..." or similar look at the way tables of contents are implemented in the standard classes.</p>
<p>You might also consider if the <a href="http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=minitoc" rel="nofollow"><code>minitoc</code></a> package can be made to work for you. Likewise the <a href="http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=smalltableof" rel="nofollow"><code>smalltableof</code></a> package.</p>
http://stackoverflow.com/questions/1928570/any-good-c-or-c-libraries-out-there-for-dealing-with-large-point-clouds/1931711#19317110Answer by dmckee for Any good C or C++ libraries out there for dealing with large point clouds?dmckee2009-12-19T02:11:51Z2009-12-19T02:11:51Z<p>In spirit of the R answers, <a href="http://root.cern.ch/" rel="nofollow">ROOT</a> also provides a good undeling framework for this kind of thing. </p>
<p>Possibly useful features:</p>
<ul>
<li>C++ code base and the Cint c++ interpreter as the working shell. Python binding.</li>
<li>Can display three dim point clouds</li>
<li>A set of geometry classes (though I don't believe that they support all the operations that you need)</li>
<li>Developed by nuclear and particle physicists instead of by statisticians :p</li>
</ul>
http://stackoverflow.com/questions/1925867/crisp-editor-open-source-equivalent/1925949#19259491Answer by dmckee for CRiSP editor open source equivalent?dmckee2009-12-18T02:42:19Z2009-12-18T02:42:19Z<p><a href="http://www.gnu.org/software/emacs/" rel="nofollow">Emacs</a></p>
<p>In particular you are probably interested in</p>
<ul>
<li><a href="http://www.gnu.org/software/tramp/" rel="nofollow">tramp mode</a></li>
<li><a href="http://www.phys.ufl.edu/docs/emacs/emacs%5F408.html" rel="nofollow">shell mode</a></li>
<li>the <code>shell-command</code> command (typically bound to <code>M-!</code>), and related tools. Use <code>C-h f shell-command</code> to get help.</li>
</ul>
http://stackoverflow.com/questions/1919626/can-i-get-a-non-const-c-string-back-from-a-c-string/1919647#19196479Answer by dmckee for Can I get a non-const C string back from a C++ string?dmckee2009-12-17T05:24:41Z2009-12-17T05:24:41Z<p>I guess there is always <code>strcpy</code>.</p>
<p>Or use <code>char*</code> strings in the parts of your C++ code that must interface with the old stuff.</p>
<p>Or refactor the existing code to compile with the C++ compiler and then to use <code>std:string</code>.</p>
http://stackoverflow.com/questions/1919236/how-can-i-fairly-choose-an-item-from-a-list/1919453#19194530Answer by dmckee for How can I fairly choose an item from a list?dmckee2009-12-17T04:24:46Z2009-12-17T04:40:15Z<p>You have already seem several perfectly good answers that depend on knowing the length of the list in advance.</p>
<p>To fairly select a single item from a list <strong>without</strong> needing to know the length of the list in the first place do this:</p>
<pre><code> if (list.empty()) error_out_somehow
r=list.first() // r is a reference or pointer
s=list.first() // so is s
i = 2
while (r.next() is not NULL)
r=r.next()
if (random(i)==0) s=r // random() returns a uniformly
// drawn integer between 0 and i
i++
return s
</code></pre>
<p>(Useful if you list is stored as a linked list)</p>
<p><hr></p>
<p>To distribute prizes in this scenario, just walk down the list of prizes selecting a random winner for each one. (If you want to prevent double winning you then remove the winner from the participant list.)</p>
<p><hr></p>
<p>Why does it work?</p>
<ol>
<li>You start with the first item at <code>1/1</code></li>
<li>On the next pass, you select the second item half the time (<code>1/2</code>), which means that the first item has probability <code>1 * (2-1)/2 = 1/2</code></li>
<li>on further iteration, you select the nth item with probability <code>1/n</code>, and the chance for each previous item is reduced by a factor of <code>(n-1)/n</code></li>
</ol>
<p>which means that when you come to the end, the chance of having the <code>m</code>th item in the list (of <code>n</code> items) is</p>
<pre><code>1/m * m/(m+1) * (m+1)/(m+2) * ... * (n-2)/(n-1) * (n-1)/n = 1/n
</code></pre>
<p>and is the same for every item.</p>
<p><hr></p>
<p>If you are paying attention, you'll note that this means walking the whole list every time you want to select an item from the list, so this is not maximally efficient for (say) reordering the whole list (though it does that fairly).</p>
http://stackoverflow.com/questions/1911516/how-to-make-cheat-sheets-in-latex/1911547#19115470Answer by dmckee for how to make cheat sheets in Latex?dmckee2009-12-16T00:43:45Z2009-12-16T00:43:45Z<p>Consider using <a href="http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=multicol" rel="nofollow"><code>multicol</code></a>.</p>
<p>And consider familiarizing yourself with <a href="http://tug.ctan.org/" rel="nofollow">CTAN</a>. Most things TeX end up there sooner or later, though it does require some digging if you don't know what you're looking for.</p>
http://stackoverflow.com/questions/1905359/self-describing-file-format-for-gigapixel-images/1905557#19055570Answer by dmckee for Self-describing file format for gigapixel images?dmckee2009-12-15T06:30:08Z2009-12-15T06:30:08Z<p>You probably want <a href="http://fits.gsfc.nasa.gov/" rel="nofollow">FITS</a>.</p>
<ul>
<li>Arbitrary size</li>
<li>1--3 dimensional data</li>
<li>Extensive header</li>
<li>Widely used in astronomy and endorsed by NASA and the IAU</li>
</ul>
http://stackoverflow.com/questions/1901213/open-source-latex-environment-for-educational-books/1901763#19017631Answer by dmckee for Open Source LaTeX environment for educational books?dmckee2009-12-14T16:01:42Z2009-12-14T16:22:04Z<p>The usual recommendation for a more configurable long document class is <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/memoir/" rel="nofollow">memoir</a> (read the extensive [manual <a href="http://mirror.ctan.org/macros/latex/contrib/memoir/memman.pdf" rel="nofollow">PDF link</a>).</p>
<p>Colored environment background and the like will probably have to be brought in with additional classes.</p>
http://stackoverflow.com/questions/1892813/what-is-missing-for-this-p-np-proof/1894078#18940780Answer by dmckee for What is missing for this P != NP proof?dmckee2009-12-12T17:17:22Z2009-12-12T17:17:22Z<p>The formal statement of this problem would be one that accepts as input the hashed value (and salt) and attempts to find <em>a</em> password that will generate that hash: your basic known cyphertext collision finding problem. </p>
<p>Depending on the quality of the hash, this <em>might not</em> require exponential time. Indeed, many cryptographic hashed in widespread use have identified attacks that run faster than keyspace searches.</p>
<p>Which is to say: you (ans some of the other responders) have <em>assumed</em> that the password munging routine has all the properties the designers wanted them to have. This would have to be <em>proved</em>.</p>
http://stackoverflow.com/questions/1889770/in-latex-how-does-one-get-a-colon-instead-of-a-full-stop-after-a-theorem/1890096#18900961Answer by dmckee for In LaTeX, how does one get a colon instead of a full stop after a theorem?dmckee2009-12-11T18:46:26Z2009-12-11T18:46:26Z<p>AMS LaTeX should be included in any modern distribution. It (or the <a href="http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=amsthm" rel="nofollow"><code>amsthm</code></a> standalone package ([docs here <a href="http://tug.ctan.org/tex-archive/macros/latex/required/amslatex/classes/amsthdoc.pdf" rel="nofollow">PDF link!</a>)) provides the <code>\theoremstyle</code> and <code>\newtheoremstyle</code> commands.</p>
http://stackoverflow.com/questions/1885264/combining-3d-2d-plots/1885577#18855770Answer by dmckee for Combining 3D/2D plotsdmckee2009-12-11T03:11:21Z2009-12-11T03:11:21Z<p>No help in R, but you can do something similar in <a href="http://root.cern.ch/" rel="nofollow">ROOT</a> as seen in this image:</p>
<p><img src="http://root.cern.ch/root/html524/MACRO_THistPainter_51_c2.gif" alt="histogram plotted with SURF3 option"></p>
<p>taken from the <a href="http://root.cern.ch/root/html524/THistPainter.html" rel="nofollow"><code>THistPainter</code> class documentation</a>.</p>
<p>The code is open source and could be examined if wanted for reimplementation.</p>
http://stackoverflow.com/questions/1878539/does-the-stack-get-unwound-when-a-sigabrt-occurs/1878550#18785500Answer by dmckee for Does the stack get unwound when a SIGABRT occurs?dmckee2009-12-10T03:59:48Z2009-12-10T03:59:48Z<p>The <code>signal(3)</code> man page on my Mac OS X box says</p>
<pre><code> No Name Default Action Description
...
6 SIGABRT create core image abort program (formerly SIGIOT)
</code></pre>
<p>which suggests to me that the default is to not unwind...</p>
http://stackoverflow.com/questions/1877255/problems-with-prime-numbers/1877322#18773222Answer by dmckee for Problems with prime numbers...dmckee2009-12-09T22:17:26Z2009-12-09T22:17:26Z<p>Certainly it will work (see <a href="http://stackoverflow.com/questions/1877255/problems-with-prime-numbers/1877274#1877274">Mark Byers' answer</a>), but for "very large" inputs it may take far too long. You should note that your call to <code>getLowestDivisiblePrimeNumber()</code> conceals another loop, so this runs at O(N^2), and that depending on what you mean by "very large" it may have to work on <a href="http://en.wikipedia.org/wiki/Arbitrary-precision%5Farithmetic" rel="nofollow">BigNums</a> which will be slow.</p>
<p>You could speed it up a little, by noting that your algorithm need never check factors smaller than the last one found.</p>
http://stackoverflow.com/questions/1874604/passing-an-array-of-arrays-in-c/1874972#18749720Answer by dmckee for Passing an array of arrays in Cdmckee2009-12-09T16:14:02Z2009-12-09T18:25:31Z<p>This is the problem:</p>
<pre><code>int *population[][]
</code></pre>
<p>A multidimensional array is simply a block of continuous memory, and when you say <code>foo[3][2]</code>, the compiler finds the right index by <code>3*last_dimension_size + 2</code>, which means that it <em>has</em> to know the size of all the dimensions except the last one.</p>
<p>So that declaration is an error.</p>
<p><hr></p>
<p>BTW-- There are several very complete discussion of issues related to multidimensional arrays in c already on SO. Try searching under both or either <code>[c]</code> and <code>[c++]</code></p>
http://stackoverflow.com/questions/1874826/vectors-vs-vector-graphics/1874917#18749172Answer by dmckee for vectors vs. vector graphicsdmckee2009-12-09T16:07:48Z2009-12-09T16:07:48Z<p>They share a root meaning in mathematics.</p>
<p>The <strong>graphics</strong> meaning (a continuously valued offset from on arbitrary position in space), derives from the fact that you use <em>mathematical</em> vectors to represent it (e.g. one to represent the starting point and to represent the offset).</p>
<p>The <strong>programming language</strong> meaning (an ordered set of numbers) is one way of writing down the mathematical version.</p>
http://stackoverflow.com/questions/1848797/tie-the-life-of-a-process-to-the-shell-that-started-it/1849035#18490350Answer by dmckee for Tie the life of a process to the shell that started it.dmckee2009-12-04T19:08:14Z2009-12-04T20:17:19Z<p>Is it possible that your real problem here is the shell and not your process. My understanding agrees with Jim Lewis' that when the shell dies its children should get SIGHUP. But what you're complaining about is the shell (or perhaps the terminal) trying to prevent you from accidentally killing a running shell with active children.</p>
<p>Consider reading the manual for the shell or the terminal to see if this behavior is configurable.</p>
<p>From the bash manual on my MacBook:</p>
<blockquote>
<p>The shell exits by default upon receipt of a SIGHUP. Before exiting, an interactive shell resends the SIGHUP
to all jobs, running or stopped. Stopped jobs are sent SIGCONT to ensure that they receive the SIGHUP. To
prevent the shell from sending the signal to a particular job, it should be removed from the jobs table with
the disown builtin (see SHELL BUILTIN COMMANDS below) or marked to not receive SIGHUP using disown -h.</p>
<p>If the huponexit shell option has been set with shopt, bash sends a SIGHUP to all jobs when an interactive
login shell exits.</p>
</blockquote>
<p>which might point you in the right direction.</p>
http://stackoverflow.com/questions/1841014/uniform-random-monte-carlo-distribution-on-unit-sphere/1841550#18415500Answer by dmckee for Uniform random (Monte-Carlo) distribution on unit sphere.dmckee2009-12-03T17:33:00Z2009-12-03T17:43:38Z<p>For a spherical sections generate your angle uniformly in <code>phi</code> (the polar angle) and <code>cos(theta)</code> (for theta the azimuthal angle) between your limits.</p>
<p>In pseudo code:</p>
<pre><code>phi = phi_low_limit + rand()*(phi_high_limit - phi_low_limit)
ct = cos(theta_high_limit) + rand()*(cos(theta_low_limit) - cos(theta_high_limit))
// The order is inverted here because cos heads down for increasing theta
theta = arccos(ct)
</code></pre>
<p>This is a special case of the rule that says invert the <a href="http://en.wikipedia.org/wiki/Jacobian%5Fmatrix%5Fand%5Fdeterminant" rel="nofollow">Jacobian</a> and generate uniformly in that space of <em>those</em> coordinates.</p>
<p>Note: Note that I'm using the opposite convention for phi and theta from David Norman line.</p>
<p>Note also: This isn't actually the fastest method, but rather one that illustrates the general principle.</p>
http://stackoverflow.com/questions/1834683/how-does-free-calculate-used-memory/1834724#18347243Answer by dmckee for How does free calculate used memory?dmckee2009-12-02T18:04:00Z2009-12-02T18:28:25Z<p>The title asks: <em>"How does free calculate used memory?"</em></p>
<p>Answer: It asks the OS, which has to keep track of that to do it's job.</p>
<p>More specifically, it asks the memory management subsystem. As sheepsimulator notes in the comments, the Linux kernel exposes all kinds OS maintained data in the <code>/proc</code> virtual filesystem, but every full service OS has to keep track of them kind of data, so it is a small matter to provide an API for <code>free</code> to use.</p>
<p>The question asks: <em>"Why does this differ from adding up the VmSize reported for all processes?"</em></p>
<p>Answer: There are at least to thing going on here</p>
<ol>
<li>Linux will promise memory to a program without actually allocating it. When you do <code>char *p=new(1024*1024*1024*sizeof(char));</code> the kernel doesn't go out at get you a gigabyte right away. If just says "OK", and figures it will grab it when you start using it. Thus the need for the infamous <a href="http://linux-mm.org/OOM%5FKiller" rel="nofollow">OOM killer</a>.</li>
<li>Dynamic libraries are are shared, and a single page of real memory can be mapped into the virtual address space of more than one process.</li>
</ol>
<p>Further, your pass over the proc filesystem is not atomic.</p>
<p>The upshot is that the output of <code>free</code> more accurately reflects the use of physical memory on your machine at a given moment.</p>
http://stackoverflow.com/questions/1814922/what-does-this-mean-in-pascal/1814930#18149300Answer by dmckee for What does this mean in pascal?dmckee2009-11-29T07:43:15Z2009-11-29T07:43:15Z<p>The <code>^</code>'s follow a pointer, and the <code>.</code> access a member of a record. So these lines are probably rearranging the links in a <a href="http://en.wikipedia.org/wiki/Graph%5F%28mathematics%29" rel="nofollow">graph</a> of some kind.</p>
http://stackoverflow.com/questions/1804531/moving-from-vms-to-unix/1805189#18051890Answer by dmckee for Moving from VMS to Unixdmckee2009-11-26T18:59:04Z2009-11-29T03:10:43Z<p><strong>Now?!?</strong></p>
<p><em>Really?</em></p>
<p>The particle physics community made this move <em>en masse</em> about 15--20 years ago. It is likely that <em>someone</em> wrote up some guidelines, though I don't know where to point you. I'd also look for a compatibility library.</p>
http://stackoverflow.com/questions/1739432/options-superseded-in-gcc/1739454#17394546Answer by dmckee for options superseded in gccdmckee2009-11-16T00:26:34Z2009-11-16T00:26:34Z<p>From the <a href="http://linux.die.net/man/1/gcc" rel="nofollow">manpage</a>:</p>
<blockquote>
<p>If you use multiple -O options, with or without level numbers, the
last such option is the one that is effective.</p>
</blockquote>
http://stackoverflow.com/questions/1943962/c-c-ides-that-come-with-without-the-compilerComment by dmckee on C/C++ IDEs that come with/without the compilerdmckee2009-12-22T04:20:17Z2009-12-22T04:20:17ZAnd use <a href="http://stackoverflow.com/search?q=c%2B%2B+ide+windows" rel="nofollow">stackoverflow.com/search?q=c%2B%2B+ide+windows/…</a> for as many more as you want.http://stackoverflow.com/questions/1943962/c-c-ides-that-come-with-without-the-compilerComment by dmckee on C/C++ IDEs that come with/without the compilerdmckee2009-12-22T04:19:25Z2009-12-22T04:19:25ZThis questions is effectively "What IDE should I use for c++ on windows?" and has been done to death. One example: <a href="http://stackoverflow.com/questions/89275/best-c-ide-or-editor-for-windows" rel="nofollow" title="best c ide or editor for windows">stackoverflow.com/questions/89275/…</a>http://stackoverflow.com/questions/1943761/what-is-the-best-piece-of-code-youve-ever-seenComment by dmckee on What is the best piece of code you've ever seen?dmckee2009-12-22T02:44:27Z2009-12-22T02:44:27Z"What is the best..." is a poll.http://stackoverflow.com/questions/1943502/height-of-emacs-bottom-command-line/1943540#1943540Comment by dmckee on height of emacs bottom command linedmckee2009-12-22T00:41:12Z2009-12-22T00:41:12ZFor the win. But you might highlight the variable name.http://stackoverflow.com/questions/1943062/a-good-book-about-software-designComment by dmckee on a good book about software designdmckee2009-12-21T22:35:18Z2009-12-21T22:35:18ZThis has almost certainly been asked before: but google for "Software Carpentry" to cover some parts of this...http://stackoverflow.com/questions/1943021/equivalent-of-define-in-java/1943026#1943026Comment by dmckee on Equivalent of #define in Java?dmckee2009-12-21T22:24:56Z2009-12-21T22:24:56ZI don't think this is what he is looking for. He doesn't want symbolic constants, but an equivalent to conditional compilation. Not knowing java, I haven't a clue, though...http://stackoverflow.com/questions/1942773/ssh-if-command-output-is-more-than-about-5-linesComment by dmckee on SSH if command output is more than about 5 linesdmckee2009-12-21T21:52:08Z2009-12-21T21:52:08ZHe <i>did</i> ask it on StackOverflow, but would probably be better moving it to ServerFault...and I'm with Aidan: my first suspect was the network MTU.http://stackoverflow.com/questions/1942578/turing-machine-adding-two-numbers/1942610#1942610Comment by dmckee on Turing machine adding two numbersdmckee2009-12-21T21:05:09Z2009-12-21T21:05:09ZYou, sir, are a smartass. +1http://stackoverflow.com/questions/1942304/network-protocols/1942371#1942371Comment by dmckee on Network Protocolsdmckee2009-12-21T20:38:22Z2009-12-21T20:38:22ZWE may soon see the day when "electricity" can be replaced by "photons" end-to-end (you can, and often do, use photons for much of the run already).http://stackoverflow.com/questions/1942139/mathematics-questionComment by dmckee on Mathematics Questiondmckee2009-12-21T19:54:01Z2009-12-21T19:54:01ZOn a side note, 9 is a composite number that can not be obtained from 4 by the above procedure. You probably meant any <i>even</i> number larger than 4.http://stackoverflow.com/questions/1942139/mathematics-questionComment by dmckee on Mathematics Questiondmckee2009-12-21T19:53:06Z2009-12-21T19:53:06Z@MatrixFrog: The answer is a proof in arithmetic. While programing relies on arithmetic, is is not the same thing.http://stackoverflow.com/questions/1941556/why-in-place-merge-sort-not-stableComment by dmckee on why in place merge sort not stable?dmckee2009-12-21T17:51:25Z2009-12-21T17:51:25ZThat would be <a href="http://stackoverflow.com/questions/1933822/why-is-in-place-merge-sort-not-stable" rel="nofollow" title="why is in place merge sort not stable">stackoverflow.com/questions/1933822/…</a> with a differnt user name, but the gravitar.http://stackoverflow.com/questions/1941486/are-there-any-thread-safe-graph-libraries-for-cComment by dmckee on Are there any thread-safe graph libraries for C++?dmckee2009-12-21T17:47:37Z2009-12-21T17:47:37Z@Yacoby: Yes, I know. But that tag also includes questions like <a href="http://stackoverflow.com/questions/1879964/plotting-cartesian-plots-axis-inside-the-figure-possible-annotations" rel="nofollow" title="plotting cartesian plots axis inside the figure possible annotations">stackoverflow.com/questions/1879964/…</a> and <a href="http://stackoverflow.com/questions/1878368/something-to-use-for-graphing-numbers" rel="nofollow" title="something to use for graphing numbers">stackoverflow.com/questions/1878368/…</a> which are about <a href="http://en.wikipedia.org/wiki/Graph_of_a_function" rel="nofollow" title="something to use for graphing numbers">en.wikipedia.org/wiki/Graph_of_a_function</a>. O which does the poster mean?http://stackoverflow.com/questions/1941486/are-there-any-thread-safe-graph-libraries-for-cComment by dmckee on Are there any thread-safe graph libraries for C++?dmckee2009-12-21T17:36:34Z2009-12-21T17:36:34ZIs "graph" here the computer science abstract thingy, or another word for a "plot"?http://stackoverflow.com/questions/1941323/always-check-malloced-memory/1941354#1941354Comment by dmckee on Always check malloc'ed memory?dmckee2009-12-21T17:33:15Z2009-12-21T17:33:15ZYou <i>could</i> reserve your safety block and then access each memory page of it to force the memory manager to connect some backing memory. They you get this trick back again.