User Jim Hunziker - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T05:24:42Z http://stackoverflow.com/feeds/user/6160 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1792397/backing-up-a-mercurial-repository-while-preserving-timestamps 1 Backing up a mercurial repository while preserving timestamps Jim Hunziker 2009-11-24T19:31:57Z 2009-11-29T11:30:54Z <p>Is there a way to back up a mercurial repository while preserving the files' timestamps?</p> <p>Right now, I'm using <code>hg clone</code> to copy the repository to a staging directory, and the backup program picks up the files from there. I'm not pointing the backup program directly at the repository because I don't want it to be changing (from commits) while the backup is happening.</p> <p>The problem is that <code>hg clone</code> changes all the files' timestamps to the current time, so the backup program (which I cannot change) thinks everything has been modified.</p> http://stackoverflow.com/questions/1288166/technical-documentation-with-deeply-nested-enumerated-lists 1 Technical documentation with deeply nested enumerated lists Jim Hunziker 2009-08-17T14:13:10Z 2009-11-24T11:51:02Z <p>I'm stuck in a software documentation culture I can't change, and software documentation is expected to have deeply nested sections that look like this:</p> <p>2.1.5.3.2.1 Some section</p> <p>This paragraph has some text.</p> <p>2.1.5.3.2.2 Some other section</p> <p>This paragraph has more text.</p> <p>2.1.5.3.3 Higher-level section</p> <p>Blah, blah, blah.</p> <p>Anyway, I'd like to use some presentation-independent documentation tool, and the more readable the source, the better. So I'd love it if ReStructuredText could do this, but DocBook or LaTeX would be okay, too.</p> <p>I just read about how LaTeX has just four levels of nesting counters, and I couldn't get ReStructuredText to count how I wanted at all. After spending lots of time fopping to DocBook documentation, I'm close to opening up Word and struggling with named styles. Any tips?</p> http://stackoverflow.com/questions/1626846/how-do-i-allocate-variably-sized-structures-contiguously-in-memory/1633323#1633323 0 Answer by Jim Hunziker for How do I allocate variably-sized structures contiguously in memory? Jim Hunziker 2009-10-27T20:01:12Z 2009-10-27T20:06:21Z <p>Here's the code I ended up writing:</p> <pre><code>#include &lt;iostream&gt; #include &lt;cstdlib&gt; #include &lt;cassert&gt; using namespace std; struct ArrayOfThese { int e; int f; }; struct DataPoint { int a; int b; int c; int numDPars; ArrayOfThese d[0]; DataPoint(int numDPars) : numDPars(numDPars) {} DataPoint* next() { return reinterpret_cast&lt;DataPoint*&gt;(reinterpret_cast&lt;char*&gt;(this) + sizeof(DataPoint) + numDPars * sizeof(ArrayOfThese)); } const DataPoint* next() const { return reinterpret_cast&lt;const DataPoint*&gt;(reinterpret_cast&lt;const char*&gt;(this) + sizeof(DataPoint) + numDPars * sizeof(ArrayOfThese)); } }; int main() { const size_t BUF_SIZE = 1024*1024*200; char* const buffer = new char[BUF_SIZE]; char* bufPtr = buffer; const int numDataPoints = 1024*1024*2; for (int i = 0; i &lt; numDataPoints; ++i) { // This wouldn't really be random. const int numArrayOfTheses = random() % 10 + 1; DataPoint* dp = new(bufPtr) DataPoint(numArrayOfTheses); // Here, do some stuff to fill in the fields. dp-&gt;a = i; bufPtr += sizeof(DataPoint) + numArrayOfTheses * sizeof(ArrayOfThese); } DataPoint* dp = reinterpret_cast&lt;DataPoint*&gt;(buffer); for (int i = 0; i &lt; numDataPoints; ++i) { assert(dp-&gt;a == i); dp = dp-&gt;next(); } // Here, send it out. delete[] buffer; return 0; } </code></pre> http://stackoverflow.com/questions/1626846/how-do-i-allocate-variably-sized-structures-contiguously-in-memory 3 How do I allocate variably-sized structures contiguously in memory? Jim Hunziker 2009-10-26T19:28:56Z 2009-10-27T20:06:21Z <p>I'm using C++, and I have the following structures:</p> <pre> struct ArrayOfThese { int a; int b; }; struct DataPoint { int a; int b; int c; }; </pre> <p>In memory, I want to have 1 or more ArrayOfThese elements at the end of each DataPoint. There are not always the same number of ArrayOfThese elements per DataPoint.</p> <p>Because I have a ridiculous number of DataPoints to assemble and then stream across a network, I want all my DataPoints and their ArrayOfThese elements to be contiguous. Wasting space for a fixed number of the ArrayOfThese elements is unacceptable.</p> <p>In C, I would have made an element at the end of DataPoint that was declared as <code>ArrayOfThese d[0];</code>, allocated a DataPoint plus enough extra bytes for however many ArrayOfThese elements I had, and used the dummy array to index into them. (Of course, the number of ArrayOfThese elements would have to be in a field of DataPoint.)</p> <p>In C++, is using placement new and the same 0-length array hack the correct approach? If so, does placement new guarantee that subsequent calls to new from the same memory pool will allocate contiguously?</p> http://stackoverflow.com/questions/1562074/how-do-i-show-the-value-of-a-define-at-compile-time 3 How do I show the value of a #define at compile-time? Jim Hunziker 2009-10-13T18:26:18Z 2009-10-20T15:22:14Z <p>I am trying to figure out what version of Boost my code thinks it's using. I want to do something like this:</p> <p><code>#error BOOST_VERSION</code></p> <p>but the preprocessor does not expand BOOST_VERSION.</p> <p>I know I could print it out at run-time from the program, and I know I could look at the output of the preprocessor to find the answer. I feel like having a way of doing this during compilation could be useful.</p> http://stackoverflow.com/questions/893348/busy-indicator-race-condition-in-javascript 1 Busy indicator race condition in Javascript Jim Hunziker 2009-05-21T14:54:27Z 2009-10-19T02:17:28Z <p>I have the following (javascript/jquery) code to show a busy indicator (after a delay) while an image is loading:</p> <pre><code>function imgUpdate(arg) { var loaded = false; $("#image").one("load", function(){ loaded = true; $("#busyIndicator").hide(); }); setTimeout(function(){ if (!loaded) { $("#busyIndicator").show(); } }, 250); $("#image")[0].src = arg; } </code></pre> <p>Sometimes, the indicator comes up and stays up. How is this possible if the browser's javascript engine is single-threaded? (This is on Firefox 3, by the way.)</p> <p>One note: this seems to happen when the image being loaded is already cached.</p> <p>Another note: if I log to my firebug console, all of the lines in imgUpdate are executed, but a log message inside the onload handler never prints on subsequent calls to imgUpdate.</p> http://stackoverflow.com/questions/123826/using-mercurials-mq-for-managing-local-changes 0 Using mercurial's mq for managing local changes Jim Hunziker 2008-09-23T20:57:37Z 2009-10-08T15:05:59Z <p>I have a local mercurial repository with some site-specific changes in it. What I would like to do is set a couple files to be un-commitable so that they aren't automatically committed when I do an <code>hg commit</code> with no arguments.</p> <p>Right now, I'm doing complicated things with <code>mq</code> and guards to achieve this, pushing and popping and selecting guards to prevent my changes (which are checked into an mq patch) from getting committed.</p> <p>Is there an easier way to do this? I'm sick of reading the help for all the <code>mq</code> commands every time I want to commit a change that doesn't include my site-specific changes.</p> http://stackoverflow.com/questions/1288042/how-to-make-tomcat-6-0-log-the-console/1288531#1288531 1 Answer by Jim Hunziker for How to make Tomcat 6.0 log the console? Jim Hunziker 2009-08-17T15:14:43Z 2009-08-17T15:14:43Z <p>Those messages get sent to catalina.out by default, though you can modify this behavior:</p> <p><a href="http://wiki.apache.org/tomcat/FAQ/Logging#Q6" rel="nofollow">http://wiki.apache.org/tomcat/FAQ/Logging#Q6</a></p> http://stackoverflow.com/questions/1207644/how-can-i-get-the-filename-of-a-servlet-resource 2 How can I get the filename of a servlet resource? Jim Hunziker 2009-07-30T16:11:20Z 2009-07-30T16:20:14Z <p>I'm writing a java servlet that calls a function in a jar. I have no control over the code in this jar. The function being called wants the filename of a configuration file as an argument.</p> <p>I'd like to bundle this file with my war file. If I put it in the war somewhere, what filename can I pass the function in the jar?</p> <p>Note that only a filename can be used with the jar's API. So <code>ServletContext.getResourceAsStream()</code> is not helpful.</p> http://stackoverflow.com/questions/1107294/setting-up-mercurial-for-members-of-a-unix-group 1 Setting up Mercurial for members of a unix group Jim Hunziker 2009-07-10T01:34:11Z 2009-07-10T02:51:38Z <p>I have a Mercurial repository set up on a Linux server, and some (but not all) users have permission to push to it. They connect to the repository over ssh.</p> <p>These users are members of a unix group together. Below is the script I'm using to alter a repository to allow it to receive pushes from them.</p> <p>Can this be improved? Are there unnecessary operations in here? Is anything bad style for a <code>bash</code> script?</p> <pre><code>#!/bin/bash if [[ $# -lt 2 ]]; then echo Usage: $0 directory groupname exit 1 fi if ! chown -R :$2 $1; then echo chown failure exit 2 fi if ! find $1/.hg -type d -exec chmod g+s {} \;; then echo chmod failure exit 3 fi if ! find $1 -perm -u+r -exec chmod g+r {} \;; then echo chmod failure 2 exit 4 fi if ! find $1 -perm -u+w -exec chmod g+w {} \;; then echo chmod failure 3 exit 5 fi if ! find $1 -perm -u+x -exec chmod g+x {} \;; then echo chmod failure 4 exit 6 fi </code></pre> http://stackoverflow.com/questions/1013516/what-are-the-well-known-uids 1 What are the well-known UIDs? Jim Hunziker 2009-06-18T15:53:49Z 2009-06-22T23:25:11Z <p>According to the <code>useradd</code> manpage, UIDs below 1000 are typically reserved for system accounts.</p> <p>I'm developing a service that will run as its own user. I know that well-known ports can be found in <code>/etc/services</code>.</p> <p>Is there a place where I can find out what well-known UIDs are out there? I would like to avoid crashing with someone else's UID. </p> http://stackoverflow.com/questions/329259/how-do-i-debug-an-mpi-program/947817#947817 0 Answer by Jim Hunziker for How do I debug an MPI program? Jim Hunziker 2009-06-03T23:22:30Z 2009-06-03T23:22:30Z <p>I do some MPI-related debugging with log traces, but you can also run gdb if you're using mpich2: <a href="http://www.ncsa.uiuc.edu/UserInfo/Resources/Hardware/CommonDoc/mpich2%5Fgdb.html" rel="nofollow">MPICH2 and gdb</a></p> http://stackoverflow.com/questions/804487/how-can-i-do-a-changeset-based-merge-instead-of-file-by-file-based-merge-with-mer/942637#942637 0 Answer by Jim Hunziker for How can I do a changeset based merge instead of file-by-file based merge with Mercurial? Jim Hunziker 2009-06-03T00:58:33Z 2009-06-03T00:58:33Z <p>I think <a href="http://kevin-berridge.blogspot.com/2009/04/what-mercurial-cant-do-merge-by.html" rel="nofollow">this</a> answers your question.</p> http://stackoverflow.com/questions/940964/could-a-page-display-diferrent-content-if-the-url-hash-changes/942528#942528 0 Answer by Jim Hunziker for Could a page display diferrent content if the URL hash changes? Jim Hunziker 2009-06-03T00:15:34Z 2009-06-03T00:15:34Z <p><a href="http://code.quirkey.com/sammy/" rel="nofollow">Sammy</a> is a javascript library that was recently released that does just this.</p> http://stackoverflow.com/questions/939596/fetching-an-image-and-associated-metadata-with-an-ajax-request 0 Fetching an image and associated metadata with an AJAX request Jim Hunziker 2009-06-02T13:37:50Z 2009-06-02T17:03:38Z <p>I have a somewhat expensive server-side operation that produces an image and some associated text metadata about that image. My web page will display both.</p> <p>The image and its data are fetched with AJAX calls. On the server side, it is possible to produce the image and the metadata at the same time. How can I transfer (and display) both the image and the data with one AJAX call?</p> <p>(The problem with making two calls is that the expensive server-side operation ends up happening twice when it doesn't have to.)</p> <p>Edit: To clarify, the image is drawn dynamically in a servlet. If it has a separate URL from the metadata, then two requests are required, and the expensive operation happens twice. I don't want to write my own caching in the servlet, since using a caching proxy and max-age is otherwise working great.</p> http://stackoverflow.com/questions/893348/busy-indicator-race-condition-in-javascript/893623#893623 1 Answer by Jim Hunziker for Busy indicator race condition in Javascript Jim Hunziker 2009-05-21T15:46:12Z 2009-05-21T15:46:12Z <p>Clearing the image's src tag seems to fix the problem:</p> <pre><code>function imgUpdate(arg) { var loaded = false; $("#image").one("load", function(){ loaded = true; $("#busyIndicator").hide(); }); setTimeout(function(){ if (!loaded) { $("#busyIndicator").show(); } }, 250); $("#image")[0].src = ""; $("#image")[0].src = arg; } </code></pre> http://stackoverflow.com/questions/817553/performances-evaluation-with-message-passing/839698#839698 0 Answer by Jim Hunziker for Performances evaluation with Message Passing Jim Hunziker 2009-05-08T13:02:39Z 2009-05-08T13:02:39Z <p>Another thing you might try is the <a href="http://en.wikipedia.org/wiki/Join-calculus" rel="nofollow">Join Calculus</a>. I've found examples of programming with it to be surprisingly intuitive, and I think it's well grounded in theory. I'm not sure why it hasn't caught on more.</p> <p>The other approach is the <a href="http://en.wikipedia.org/wiki/Pi-calculus" rel="nofollow">Pi Calculus</a>, and I think that might be more popular, though it seems harder to understand.</p> http://stackoverflow.com/questions/817553/performances-evaluation-with-message-passing/818343#818343 1 Answer by Jim Hunziker for Performances evaluation with Message Passing Jim Hunziker 2009-05-03T23:37:37Z 2009-05-03T23:37:37Z <p>Well, there are <a href="http://en.wikipedia.org/wiki/Data%5Fflow%5Fdiagram" rel="nofollow">data flow diagrams</a>. Those can help identify parallelism's opportunities and pitfalls. The references on the wikipedia page might give you some more theoretical grounding.</p> <p>When I worked at Lockheed Martin, I was exposed to <a href="http://www.atl.lmco.com/projects/csim/" rel="nofollow">CSIM</a>, a tool they developed for modeling algorithm mapping to processing blocks.</p> http://stackoverflow.com/questions/789817/how-to-use-tinyxml-to-parse-for-a-specific-element/814962#814962 1 Answer by Jim Hunziker for How to use TinyXml to parse for a specific element Jim Hunziker 2009-05-02T14:48:01Z 2009-05-02T14:48:01Z <p>Your best bet is to use the <a href="http://tinyxpath.sourceforge.net/" rel="nofollow">TinyXPath</a> library in addition to TinyXML.</p> <p>This is my best guess for the right <a href="http://en.wikipedia.org/wiki/XPath%5F1.0" rel="nofollow">XPath</a> query:</p> <pre> /nmaprun/host/ports/port[state/@state="open "][1]/@portid </pre> <p>You can check it with an <a href="http://www.mizar.dk/XPath/Default.aspx" rel="nofollow">online tester</a>. Note, though, that you need to remove the second line of the XML fragment you posted. I'm not sure how that got in there.</p> http://stackoverflow.com/questions/785985/what-are-you-doing-with-c/786083#786083 1 Answer by Jim Hunziker for What are you doing with C++? Jim Hunziker 2009-04-24T14:29:20Z 2009-04-24T14:29:20Z <p>I'm in the same boat as the question's author. I use C++ for defense contract work, leaning on STL/boost/mpich2/Intel IPP. From that list, you can probably guess that the system crunches lots of data. Mostly, it's doing radar signal processing.</p> <p>Other languages considered were C, D, and python. I'm not using C because I rely on RAII to manage my resources. I'm not using D because I'd be the only one on my team who would bother to learn it before trying to code in it. I'm using python for some simulation (numpy/scipy), and I even made a prototype bridge to Intel's IPP to see how much of a speedup I could get. It was actually decent, but I didn't stick with it because it was a little too unorthodox for defense work.</p> http://stackoverflow.com/questions/578031/is-there-a-proximity-map-algorithm-or-data-structure 0 Is there a proximity map algorithm or data structure? Jim Hunziker 2009-02-23T15:34:32Z 2009-02-23T15:46:37Z <p>A problem I keep running into when writing code that draws images of scientific data is the following:</p> <p>Given some floating point data, fit those data into slots (1-dimensional case) or a grid (2-dimensional case) such that each datum is in the slot or grid entry whose value is closest to the datum's value.</p> <p>It is not the case that the slot/grid values are evenly spaced.</p> <p>For example, put the following data into the following slots:</p> <p>data: 0.1, 0.6, 4.23, 5.1, 7.0</p> <p>slots: 0.0, 0.4, 0.6, 1.2, 5.0, 10.0</p> <p>In practice, there are far more data than there are slots. So it would be beneficial to have a data structure that kept the slots in cache together.</p> <p>What would be nice is something like a tree or a hash table, where you ask the tree for the value that corresponds to a key, but with sloppy comparisons that yield the closest match.</p> <p>Does such a beast exist?</p> <p>(Right now, I just have loops that do lots of comparisons. It seems like I could at least do better by using a binary search through the slots, though...)</p> http://stackoverflow.com/questions/440204/does-floor-return-something-thats-exactly-representable 6 Does floor() return something that's exactly representable? Jim Hunziker 2009-01-13T18:33:26Z 2009-01-20T21:40:01Z <p>In C89, floor() returns a double. Is the following guaranteed to work?</p> <pre><code>double d = floor(3.0 + 0.5); int x = (int) d; assert(x == 3); </code></pre> <p>My concern is that the result of floor might not be exactly representable in IEEE 754. So d gets something like 2.99999, and x ends up being 2.</p> <p>For the answer to this question to be yes, all integers within the range of an int have to be exactly representable as doubles, and floor must always return that exactly represented value.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/218306#218306 10 Answer by Jim Hunziker for Hidden Features of C++? Jim Hunziker 2008-10-20T12:45:47Z 2008-10-20T12:45:47Z <p>Putting functions or variables in a nameless namespace deprecates the use of <code>static</code> to restrict them to file scope.</p> http://stackoverflow.com/questions/19883/is-there-a-bug-issue-tracking-system-which-integrates-with-mercurial/123855#123855 5 Answer by Jim Hunziker for Is there a bug/issue tracking system which integrates with Mercurial? Jim Hunziker 2008-09-23T21:01:13Z 2008-09-23T21:01:13Z <p>I'd also like to add <a href="http://www.redmine.org/" rel="nofollow">Redmine</a> to the list. I started with Trac, but I found the mercurial support (and the administrative interface for everything) to be much better in Redmine.</p> http://stackoverflow.com/questions/96579/stl-vectors-with-uninitialized-storage 3 STL vectors with uninitialized storage? Jim Hunziker 2008-09-18T20:31:31Z 2008-09-18T22:12:49Z <p>I'm writing an inner loop that needs to place <code>struct</code>s in contiguous storage. I don't know how many of these <code>struct</code>s there will be ahead of time. My problem is that STL's <code>vector</code> initializes its values to 0, so no matter what I do, I incur the cost of the initialization plus the cost of setting the <code>struct</code>'s members to their values.</p> <p>Is there any way to prevent the initialization, or is there an STL-like container out there with resizeable contiguous storage and uninitialized elements?</p> <p>(I'm certain that this part of the code needs to be optimized, and I'm certain that the initialization is a significant cost.)</p> <p>Also, see my comments below for a clarification about when the initialization occurs.</p> <p>SOME CODE:</p> <pre><code>void GetsCalledALot(int* data1, int* data2, int count) { int mvSize = memberVector.size() memberVector.resize(mvSize + count); // causes 0-initialization for (int i = 0; i &lt; count; ++i) { memberVector[mvSize + i].d1 = data1[i]; memberVector[mvSize + i].d2 = data2[i]; } } </code></pre> http://stackoverflow.com/questions/59597/program-entry-points/59634#59634 0 Answer by Jim Hunziker for Program entry points.. Jim Hunziker 2008-09-12T17:59:38Z 2008-09-12T17:59:38Z <p>Many scripting languages don't have a main function. They just start executing from the top of the file. For instance, Python doesn't strictly have a main function; it just has a builtin variable called __name__ that's set to __main__ when the script is being run on its own. If you want to test for that and call a function called main (or anything else), that's up to you.</p> http://stackoverflow.com/questions/1792397/backing-up-a-mercurial-repository-while-preserving-timestamps/1792460#1792460 Comment by Jim Hunziker on Backing up a mercurial repository while preserving timestamps Jim Hunziker 2009-11-24T21:04:59Z 2009-11-24T21:04:59Z One more comment on this (you might want to add): <code>hg clone -U</code> is the way to go, since the working copy that clone makes doesn't have hard links. Just the repository does. http://stackoverflow.com/questions/1792397/backing-up-a-mercurial-repository-while-preserving-timestamps/1792460#1792460 Comment by Jim Hunziker on Backing up a mercurial repository while preserving timestamps Jim Hunziker 2009-11-24T19:46:27Z 2009-11-24T19:46:27Z Yeah, it's the race condition I'm worried about. Would you be able to tell when an <code>hg rollback</code> would be needed? http://stackoverflow.com/questions/1626846/how-do-i-allocate-variably-sized-structures-contiguously-in-memory/1627243#1627243 Comment by Jim Hunziker on How do I allocate variably-sized structures contiguously in memory? Jim Hunziker 2009-10-27T14:22:51Z 2009-10-27T14:22:51Z I think you meant to write things like <code>new DataPointWithArray&lt;27&gt;</code>. But this is allocating data from the heap at random locations in memory. Besides having to stream this over a network, I need to access tons of these in sequence during processing, so having locality of reference is important to me. http://stackoverflow.com/questions/1626846/how-do-i-allocate-variably-sized-structures-contiguously-in-memory/1627331#1627331 Comment by Jim Hunziker on How do I allocate variably-sized structures contiguously in memory? Jim Hunziker 2009-10-27T14:18:28Z 2009-10-27T14:18:28Z The <code>new</code> allocates things from the heap, so the data will not be stored contiguously. http://stackoverflow.com/questions/1626846/how-do-i-allocate-variably-sized-structures-contiguously-in-memory/1627243#1627243 Comment by Jim Hunziker on How do I allocate variably-sized structures contiguously in memory? Jim Hunziker 2009-10-26T21:08:07Z 2009-10-26T21:08:07Z <code>vector</code> doesn't work well with variably sized elements. See <a href="http://stackoverflow.com/questions/1626846/how-do-i-allocate-variably-sized-structures-contiguously-in-memory/1626884#1626884" rel="nofollow" title="how do i allocate variably sized structures contiguously in memory">stackoverflow.com/questions/1626846/&hellip;</a> http://stackoverflow.com/questions/1626846/how-do-i-allocate-variably-sized-structures-contiguously-in-memory/1627162#1627162 Comment by Jim Hunziker on How do I allocate variably-sized structures contiguously in memory? Jim Hunziker 2009-10-26T21:06:56Z 2009-10-26T21:06:56Z This answer is the C way of doing it that I mentioned in the question. http://stackoverflow.com/questions/1626846/how-do-i-allocate-variably-sized-structures-contiguously-in-memory/1626978#1626978 Comment by Jim Hunziker on How do I allocate variably-sized structures contiguously in memory? Jim Hunziker 2009-10-26T20:07:48Z 2009-10-26T20:07:48Z The similarity was just a simplification, and the numbers of ArrayOfThese are not known at compile time. http://stackoverflow.com/questions/1168525/c-gcc4-4-warning-array-subscript-is-above-array-bounds Comment by Jim Hunziker on C++ GCC4.4 warning: array subscript is above array bounds Jim Hunziker 2009-10-16T17:33:27Z 2009-10-16T17:33:27Z Thanks - I have this problem, too, and your workaround helped me. Upvoted. http://stackoverflow.com/questions/1562074/how-do-i-show-the-value-of-a-define-at-compile-time/1562225#1562225 Comment by Jim Hunziker on How do I show the value of a #define at compile-time? Jim Hunziker 2009-10-13T19:38:36Z 2009-10-13T19:38:36Z That didn't work, since BOOST_VERSION is an integer, but I got to see it with this statement: <code>std::vector&lt;BOOST&#95;VERSION&gt;;</code> in gcc 4.4.1. Thanks! http://stackoverflow.com/questions/1562074/how-do-i-show-the-value-of-a-define-at-compile-time/1562115#1562115 Comment by Jim Hunziker on How do I show the value of a #define at compile-time? Jim Hunziker 2009-10-13T18:42:38Z 2009-10-13T18:42:38Z That's okay. <code>M-x get-myself-some-friends</code> Done! http://stackoverflow.com/questions/1562074/how-do-i-show-the-value-of-a-define-at-compile-time/1562115#1562115 Comment by Jim Hunziker on How do I show the value of a #define at compile-time? Jim Hunziker 2009-10-13T18:38:16Z 2009-10-13T18:38:16Z Seconded, Chris. I'm using <code>emacs</code>. :) http://stackoverflow.com/questions/1562074/how-do-i-show-the-value-of-a-define-at-compile-time/1562083#1562083 Comment by Jim Hunziker on How do I show the value of a #define at compile-time? Jim Hunziker 2009-10-13T18:29:29Z 2009-10-13T18:29:29Z I don't think you read my whole question. http://stackoverflow.com/questions/1288166/technical-documentation-with-deeply-nested-enumerated-lists/1289976#1289976 Comment by Jim Hunziker on Technical documentation with deeply nested enumerated lists Jim Hunziker 2009-08-18T13:12:56Z 2009-08-18T13:12:56Z Here's another reference I found: <a href="http://www.sagehill.net/docbookxsl/SectionNumbering.html" rel="nofollow">sagehill.net/docbookxsl/SectionNumbering.html/&hellip;</a> http://stackoverflow.com/questions/1288042/how-to-make-tomcat-6-0-log-the-console/1288531#1288531 Comment by Jim Hunziker on How to make Tomcat 6.0 log the console? Jim Hunziker 2009-08-17T15:49:59Z 2009-08-17T15:49:59Z No problem. I didn't notice it in the FAQ, either. I already knew the answer to your question and searched the web for the answer so I could give you a link! http://stackoverflow.com/questions/1288166/technical-documentation-with-deeply-nested-enumerated-lists/1288456#1288456 Comment by Jim Hunziker on Technical documentation with deeply nested enumerated lists Jim Hunziker 2009-08-17T15:10:25Z 2009-08-17T15:10:25Z I think it is just \enumerate and \itemize that I want. The silly dotted number notation in my example can't be achieved with the 7 levels you mention, can it?