User Head Geek - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T01:23:26Z http://stackoverflow.com/feeds/user/12193 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/213907/c-stdendl-vs-n 16 C++: "std::endl" vs "\n" Head Geek 2008-10-17T21:25:17Z 2009-11-17T22:29:29Z <p>Many C++ books contain example code like this...</p> <pre><code>std::cout &lt;&lt; "Test line" &lt;&lt; std::endl; </code></pre> <p>...so I've always done that too. But I've seen a lot of code from working developers like this instead:</p> <pre><code>std::cout &lt;&lt; "Test line\n"; </code></pre> <p>Is there a technical reason to prefer one over the other, or is it just a matter of coding style?</p> http://stackoverflow.com/questions/1726868/proxy-authentication-http-html-details 0 Proxy Authentication -- HTTP/HTML Details? Head Geek 2009-11-13T03:04:18Z 2009-11-13T05:37:45Z <p>My company produces a program that, among other things, needs to connect to the company's servers for updates and e-commerce purposes. We've had this for a long time, but we've never figured out how to handle "proxy authentication", where a proxy server requires a name and password before allowing the program to access the Internet.</p> <p>This program manipulates the HTML headers itself, as strings, and communicates through plain ol' sockets, so I need to know the actual details of the headers. In other words, we're not using a communications library (there are technical reasons for that, which won't change), so we need to know where to put the name/password so that the proxy server will recognize them.</p> <p>All I can find through Google are descriptions of how to configure proxy servers for it, or how end-users should use them. Does anyone know where to find the low-level details that we need for this?</p> http://stackoverflow.com/questions/1616488/retrieve-sd-card-serial-number-on-windows-xp-vista-7 0 Retrieve SD Card serial number on Windows XP/Vista/7? Head Geek 2009-10-23T23:42:11Z 2009-10-24T23:22:52Z <p>There is a manufacturer's serial number on SD cards, and there are a number of pages on the 'net that describe how to retrieve it on various mobile devices (including <a href="http://stackoverflow.com/questions/552681/compact-framework-get-storage-card-serial-number">this one</a>). But I need to retrieve it under <em>desktop</em> versions of Windows, and the code that works for mobile versions of Windows doesn't seem to translate.</p> <p>The question: how do you programmatically retrieve the SD card manufacturer's serial number from an SD card under desktop Windows?</p> <p>EDIT: From what I gather, this can be done using the <code>DeviceIoControl</code>'s <code>IOCTL_SFFDISK_DEVICE_COMMAND</code> to send command 10 from the SD Card specs, but it's unreliable -- it only works with certain non-USB card readers, and only with certain drivers for those readers. That makes it useless for our purposes. Maybe someone else can get some use from the information.</p> http://stackoverflow.com/questions/160147/catching-exceptions-from-a-constructors-initializer-list 4 Catching exceptions from a constructor's initializer list Head Geek 2008-10-01T22:57:13Z 2009-09-23T18:15:16Z <p>Here's a curious one. I have a class A. It has an item of class B, which I want to initialize in the constructor of A using an initializer list, like so:</p> <pre><code>class A { public: A(const B&amp; b): mB(b) { }; private: B mB; }; </code></pre> <p>Is there a way to catch exceptions that might be thrown by mB's copy-constructor while still using the initializer list method? Or would I have to initialize mB within the constructor's braces in order to have a try/catch?</p> http://stackoverflow.com/questions/1302057/cutdown-uuid-further-to-make-short-string/1302160#1302160 2 Answer by Head Geek for cutdown uuid further to make short string Head Geek 2009-08-19T19:30:13Z 2009-08-19T19:30:13Z <p>A UUID has 128 bits. Have you considered doing a CRC of it? That could get it down to 16 or 32 bits easily, and would use all the original information. If a CRC isn't good enough, you could always use the first few bytes of a proper hash (SHA256, for example).</p> <p>If you really want to just cut down the UUID, the format of it is described in <a href="http://www.ietf.org/rfc/rfc4122.txt" rel="nofollow">RFC 4122</a>. You should be able to figure out what parts your implementation doesn't need from that.</p> http://stackoverflow.com/questions/1279110/whats-the-regex-for-removing-dots-in-acronyms-but-not-in-domain-names/1279417#1279417 0 Answer by Head Geek for What's the regex for removing dots in acronyms but not in domain names? Head Geek 2009-08-14T18:30:24Z 2009-08-14T18:30:24Z <p>Not as elegant as a simple <code>re.sub()</code>, but try this:</p> <pre><code>import re s='a.b.c. test@test.com http://www.test.com' m=re.search('(.*?)(([a-zA-Z]\.){2,})(.*)', s) if m: replacement=''.join(m.group(2).split('.')) s=m.group(1)+replacement+m.group(4) print s </code></pre> <p>It assumes that there's no more than one acronym per string, but you could always run it repeatedly.</p> http://stackoverflow.com/questions/1264472/using-the-pefile-py-to-get-file-exe-version/1264515#1264515 0 Answer by Head Geek for using the "pefile.py" to get file(.exe) version Head Geek 2009-08-12T06:30:24Z 2009-08-12T06:30:24Z <p>The version numbers of Windows programs are stored in the resource section of the program file, not in the PE format header. I'm not familiar with <code>pefile.py</code>, so I don't know whether it directly handles resource sections too. If not, you should be able to find the information you need for that in <a href="http://msdn.microsoft.com/en-us/magazine/cc301808.aspx" rel="nofollow">this MSDN article</a>.</p> http://stackoverflow.com/questions/1251625/non-destructive-parsing-and-modifying-of-html-elements-in-c/1251684#1251684 2 Answer by Head Geek for Non-destructive parsing and modifying of HTML elements in C++ Head Geek 2009-08-09T16:27:08Z 2009-08-09T16:27:08Z <p>Regular expressions aren't recommended for HTML because they don't handle nested tags well. They should be fine for this purpose.</p> http://stackoverflow.com/questions/1167262/automatically-determine-the-natural-language-of-a-website-page-given-its-url/1167451#1167451 0 Answer by Head Geek for Automatically determine the natural language of a website page given its URL Head Geek 2009-07-22T19:00:32Z 2009-07-22T19:00:32Z <p>There's no general method that will work solely on URLs. You can check the <a href="http://en.wikipedia.org/wiki/List%5Fof%5FInternet%5Ftop-level%5Fdomains" rel="nofollow">top-level domain</a> to get some idea, and look for portions of the URL that might be indicative of a language (like "en" or "es" between two slashes), and assume anything unknown is in English, but it isn't a perfect solution.</p> <p>So far as I know, the only general way to determine the natural language used by a page is to grab the page's text and check for certain common words in each language. For example, if "a", "an", and "the" appear several times in the page, it's likely that it includes English text; "el" and "la" might suggest Spanish; and so on.</p> http://stackoverflow.com/questions/836086/programmatically-determining-individual-screen-widths-heights-in-linux-w-xineram 1 Programmatically determining individual screen widths/heights in Linux (w/Xinerama, TwinView, and/or BigDesktop) Head Geek 2009-05-07T17:48:10Z 2009-07-16T16:37:54Z <p>I'm developing a little side-project to display multiple wallpapers on multiple screens under GNOME (something that apparently can't be done by GNOME itself or anything else). I've figured out how to do the main part of it (using the ImageMagick components, for the curious); I'm trying to automate the configuration system.</p> <p>To do that, I need a way to determine the dimensions of the individual screens are. Can anyone give me a hint where to look for that? I presume the X server itself has the information, but I'm not sure how my program can ask for it.</p> http://stackoverflow.com/questions/228620/garbage-collection-in-c-why 15 Garbage Collection in C++ -- why? Head Geek 2008-10-23T05:24:59Z 2009-07-13T19:30:40Z <p>I keep hearing people complaining that C++ doesn't have garbage collection. I also hear that the C++ Standards Committee is looking at adding it to the language. I'm afraid I just don't see the point to it... using RAII with smart pointers eliminates the need for it, right?</p> <p>My only experience with garbage collection was on a couple of cheap eighties home computers, where it meant that the system would freeze up for a few seconds every so often. I'm sure it has improved since then, but as you can guess, that didn't leave me with a high opinion of it.</p> <p>What advantages could garbage collection offer an experienced C++ developer?</p> http://stackoverflow.com/questions/1115356/efficiency-of-c-built-ins/1115365#1115365 5 Answer by Head Geek for Efficiency of c++ built ins. Head Geek 2009-07-12T05:14:09Z 2009-07-12T05:30:04Z <p>All of the implementations I've seen are O(1).</p> <p>The documentation you're looking for is the C++ standard -- I believe C++03 is the latest one at present. It isn't available online or in man format, it's sold commercially. There's a list of the places to find it, and recent prices, <a href="http://stackoverflow.com/questions/81656/where-do-i-find-the-current-x-standard/83763#83763">here</a>.</p> http://stackoverflow.com/questions/203667/c-named-parameter-idiom-vs-boostparameter-library 15 C++ "Named Parameter Idiom" vs. Boost::Parameter library Head Geek 2008-10-15T03:46:56Z 2009-07-11T19:29:04Z <p>I've looked at both the <a href="http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.18" rel="nofollow">Named Parameter Idiom</a> and the <a href="http://www.boost.org/doc/libs/1_36_0/libs/parameter/doc/html/index.html" rel="nofollow">Boost::Parameter library</a>. What advantages does each one have over the other? Is there a good reason to always choose one over the other, or might each of them be better than the other in some situations (and if so, what situations)?</p> http://stackoverflow.com/questions/1095378/how-do-i-destruct-data-associated-with-an-object-after-the-object-no-longer-exist/1095482#1095482 1 Answer by Head Geek for How do I destruct data associated with an object after the object no longer exists? Head Geek 2009-07-08T00:06:19Z 2009-07-08T00:06:19Z <p>What you're looking for is <a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/smart%5Fptr/shared%5Fptr.htm" rel="nofollow">Boost::shared_ptr</a>, or some similar smart-pointer system.</p> http://stackoverflow.com/questions/1084982/building-boost-without-filename-decorations/1085116#1085116 0 Answer by Head Geek for Building Boost without filename decorations? Head Geek 2009-07-06T01:59:01Z 2009-07-06T01:59:01Z <p>I don't know of any way to do that with the Boost build system, but you could use a fairly simple script to move and rename them without too much difficulty.</p> <p>On the other hand, with most Windows compilers, you seldom need to concern yourself with the library filenames because, for those libraries that require a separate binary, Boost employs <a href="http://www.boost.org/doc/libs/1%5F39%5F0/more/getting%5Fstarted/windows.html#link-from-within-the-visual-studio-ide" rel="nofollow">auto-linking</a>:</p> <blockquote> <p>Most Windows compilers and linkers have so-called “auto-linking support,” which eliminates the second challenge. Special code in Boost header files detects your compiler options and uses that information to encode the name of the correct library into your object files; the linker selects the library with that name from the directories you've told it to search.</p> </blockquote> <p>Moving and renaming the files would break that.</p> http://stackoverflow.com/questions/1061448/boost-date-add-one-day-non-standard-gmt-string/1064153#1064153 1 Answer by Head Geek for Boost date add one day, non standard GMT string Head Geek 2009-06-30T14:58:37Z 2009-06-30T14:58:37Z <p>That's pretty close to the simplest method I know of. About the only way to simplify it further would be using facets for the I/O stuff, to eliminate the need for string manipulation:</p> <pre><code>#include &lt;iostream&gt; #include &lt;sstream&gt; #include &lt;locale&gt; #include &lt;boost/date_time.hpp&gt; using namespace boost::local_time; int main() { std::stringstream ss; local_time_facet* output_facet = new local_time_facet(); local_time_input_facet* input_facet = new local_time_input_facet(); ss.imbue(std::locale(std::locale::classic(), output_facet)); ss.imbue(std::locale(ss.getloc(), input_facet)); local_date_time ldt(not_a_date_time); input_facet-&gt;format("%Y%m%d-%H:%M:%S"); ss.str("20090629-05:57:43"); ss &gt;&gt; ldt; output_facet-&gt;format("%Y%m%d-%H:%M:%S"); ss.str(std::string()); ss &lt;&lt; ldt; std::cout &lt;&lt; ss.str() &lt;&lt; std::endl; } </code></pre> <p>That's longer, and arguably harder to understand, though. I haven't tried to prove it, but I suspect it would be about equal runtime-efficiency that way.</p> http://stackoverflow.com/questions/1018359/pass-through-keyword-arguments 2 Pass-through keyword arguments Head Geek 2009-06-19T14:44:33Z 2009-06-28T15:43:33Z <p>I've got a class function that needs to "pass through" a particular keyword argument:</p> <pre><code>def createOrOpenTable(self, tableName, schema, asType=Table): if self.tableExists(tableName): return self.openTable(tableName, asType=asType) else: return self.createTable(self, tableName, schema, asType=asType) </code></pre> <p>When I call it, I get an error like this:</p> <pre><code>TypeError: createTable() got multiple values for keyword argument 'asType' </code></pre> <p>Is there any way to "pass through" such a keyword argument?</p> <p>I've thought of several answers, but none of them are optimal. From worst to best:</p> <ul> <li><p>I could change the keyword name on one or more of the functions, but I want to use the same keyword for all three functions, since the parameter carries the same meaning.</p></li> <li><p>I could pass the <code>asType</code> parameter by position instead of by keyword, but if I add other keyword parameters to <code>openTable</code> or <code>createTable</code>, I'd have to remember to change the calls. I'd rather it automatically adapt, as it would if I could use the keyword form.</p></li> <li><p>I could use the <code>**args</code> form here instead, to get a dictionary of keyword parameters rather than using a default parameter, but that seems like using a sledgehammer to swat a fly (because of the extra lines of code needed to properly parse it).</p></li> </ul> <p>Is there a better solution?</p> http://stackoverflow.com/questions/1010914/how-many-places-are-optimized-in-pythons-bytecodeversion-2-5/1010947#1010947 0 Answer by Head Geek for how many places are optimized in Python's bytecode(version 2.5) Head Geek 2009-06-18T05:41:59Z 2009-06-18T05:41:59Z <p>I don't think there's any documentation per se, but there's the C code for the Python interpreter. You can find several different versions of it <a href="http://python.org/download/releases/" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1009686/unable-to-find-an-internet-page-blocked-by-robots-txt/1009754#1009754 4 Answer by Head Geek for Unable to find an internet page blocked by robots.txt Head Geek 2009-06-17T22:04:02Z 2009-06-17T22:04:02Z <p>If I understand your requirements, you'd essentially have to spider every possible site in order to see which one(s) match your criteria. I don't see any faster or more efficient solution, regardless of what tools you use.</p> http://stackoverflow.com/questions/913396/cant-catch-exception/913526#913526 1 Answer by Head Geek for Can't catch exception! Head Geek 2009-05-27T01:07:33Z 2009-05-28T02:41:40Z <p>I'm not familiar with swig, or with using C++ and Python together, but if this is under a recent version of Microsoft Visual C++, then the <code>Monitor</code> class is probably throwing a C structured exception, rather than a C++ typed exception. C structured exceptions aren't caught by C++ exception handlers, even the <code>catch(...)</code> one.</p> <p>If that's the case, you can use the <code>__try/__except</code> keywords (instead of <code>try/catch</code>), or use the <code>_set_se_translator</code> function to translate the C structured exception into a C++ typed exception.</p> <p>(Older versions of MSVC++ treated C structured exceptions as C++ <code>int</code> types, and <em>are</em> caught by C++ handlers, if I remember correctly.)</p> <p>If this <em>isn't</em> under Microsoft Visual C++, then I'm not sure how this could be happening.</p> <p>EDIT: Since you say that this isn't MSVC, perhaps something else is catching the exception (and terminating the program) before your code gets it, or maybe there's something in your catch block that's throwing another exception? Without more detail to work with, those are the only cases I can think of that would cause those symptoms.</p> http://stackoverflow.com/questions/899917/why-do-people-use-enums-in-c-as-constants-while-they-can-use-const/899936#899936 -1 Answer by Head Geek for Why do people use enums in C++ as constants while they can use const? Head Geek 2009-05-22T20:49:16Z 2009-05-22T20:49:16Z <p>One reason is that <code>const</code> requires more typing:</p> <pre><code>enum { Val1, Val2, Val3 }; </code></pre> <p>...versus...</p> <pre><code>const int Val1=0, Val2=1, Val3=2; </code></pre> http://stackoverflow.com/questions/878166/is-there-c-lazy-pointer/878198#878198 0 Answer by Head Geek for Is there C++ lazy pointer? Head Geek 2009-05-18T15:07:01Z 2009-05-18T15:07:01Z <p>So far as I know, there's no existing implementation of this sort of thing. It wouldn't be hard to create one though.</p> http://stackoverflow.com/questions/871267/how-do-you-transfer-ownership-of-an-element-of-boostptrvector/871510#871510 6 Answer by Head Geek for How do you transfer ownership of an element of boost::ptr_vector? Head Geek 2009-05-16T02:10:29Z 2009-05-16T02:10:29Z <p><code>ptr_vector&lt;A&gt;::release</code> returns a <code>ptr_vector&lt;A&gt;::auto_type</code>, which is a kind of light-weight smart pointer in that when an <code>auto_type</code> item goes out of scope, the thing it points to is automatically deleted. To recover a raw pointer to the thing, and keep it from being deleted by the <code>auto_ptr</code> that's holding it, you need to call <code>release</code> on that too:</p> <pre><code>int main() { ptr_vector&lt;A&gt; v; v.push_back(new A); A *temp=v.release(v.begin()).release(); delete temp; return 0; } </code></pre> <p>The first <code>release</code> tells the <code>ptr_vector</code> to give it up; the second tells the <code>auto_ptr</code> to give it up too.</p> http://stackoverflow.com/questions/841434/how-do-you-manually-insert-options-into-boost-programoptions/848141#848141 2 Answer by Head Geek for How do you manually insert options into boost.Program_options? Head Geek 2009-05-11T13:41:08Z 2009-05-11T13:41:08Z <p>Have you looked at the <code>extra_parser</code> or <code>allow_unregistered</code> functions of <code>Boost::Program_Options</code>? Depending on exactly how your program operates, one or both of them should be able to support what you want.</p> http://stackoverflow.com/questions/847721/how-to-identify-if-a-library-is-debug-or-release-build/848009#848009 2 Answer by Head Geek for How to identify if a library is DEBUG or RELEASE build? Head Geek 2009-05-11T13:02:20Z 2009-05-11T13:02:20Z <p>Yes. You can check the <code>Characteristics</code> field of the <code>IMAGE_FILE_HEADER</code> structure of the file. If the library is a release build, then bit 0x0200 (<code>DEBUG_STRIPPED</code>) will be set; on a debug build, it will be clear.</p> <p>You can find technical information on the PE Format used by Windows EXEs and DLLs, to see how to retrieve that structure, in various places on the 'net (such as <a href="http://www.csn.ul.ie/~caolan/publink/winresdump/winresdump/doc/pefile.html" rel="nofollow">here</a>).</p> http://stackoverflow.com/questions/836086/programmatically-determining-individual-screen-widths-heights-in-linux-w-xineram/836376#836376 0 Answer by Head Geek for Programmatically determining individual screen widths/heights in Linux (w/Xinerama, TwinView, and/or BigDesktop) Head Geek 2009-05-07T18:51:27Z 2009-05-08T23:12:29Z <p><strike>It looks like there's a <code>libXinerama</code> API that can retrieve that information. I haven't found any detailed information on it yet though.</strike></p> <p>General X.org programming information can be found <a href="http://xorg.freedesktop.org/releases/X11R7.0/doc/PDF/xlib.pdf" rel="nofollow">here</a> (PDF file). Information on the functions provided by <code>libXinerama</code> can be found <a href="http://manpages.ubuntu.com/manpages/jaunty/man3/Xinerama.3.html" rel="nofollow">here</a> (online copy of a manpage, not a lot of information in it).</p> <p>Here's a small C++ program that I whipped up from those references to retrieve the dimensions and offsets of each of the monitors hooked into Xinerama. It also works for nVidia TwinView; I don't presently have an ATI card to test it on their BigDesktop system, but I suspect it would work on it as well.</p> <pre><code>#include &lt;cstdlib&gt; #include &lt;iostream&gt; #include &lt;X11/extensions/Xinerama.h&gt; using std::cout; using std::endl; int main(int argc, char *argv[]) { bool success=false; Display *d=XOpenDisplay(NULL); if (d) { int dummy1, dummy2; if (XineramaQueryExtension(d, &amp;dummy1, &amp;dummy2)) { if (XineramaIsActive(d)) { int heads=0; XineramaScreenInfo *p=XineramaQueryScreens(d, &amp;heads); if (heads&gt;0) { for (int x=0; x&lt;heads; ++x) cout &lt;&lt; "Head " &lt;&lt; x+1 &lt;&lt; " of " &lt;&lt; heads &lt;&lt; ": " &lt;&lt; p[x].width &lt;&lt; "x" &lt;&lt; p[x].height &lt;&lt; " at " &lt;&lt; p[x].x_org &lt;&lt; "," &lt;&lt; p[x].y_org &lt;&lt; endl; success=true; } else cout &lt;&lt; "XineramaQueryScreens says there aren't any" &lt;&lt; endl; XFree(p); } else cout &lt;&lt; "Xinerama not active" &lt;&lt; endl; } else cout &lt;&lt; "No Xinerama extension" &lt;&lt; endl; XCloseDisplay(d); } else cout &lt;&lt; "Can't open display" &lt;&lt; endl; return (success ? EXIT_SUCCESS : EXIT_FAILURE); } </code></pre> http://stackoverflow.com/questions/761655/what-is-the-naming-convention-when-typdef-complex-stl-maps/764563#764563 2 Answer by Head Geek for What is the naming convention when typdef complex STL maps? Head Geek 2009-04-19T00:33:47Z 2009-04-19T00:33:47Z <p>The second part of the question is the most interesting one to me. I prefer to put <code>typedef</code>s within the classes that use them, when there's a logical place for them, even if they're used in other classes. But that causes some problems with forward declarations (which we use heavily for compile-speed).</p> <p>For example, in one recent project we had a class called <code>Io</code>, with an embedded typedef called <code>Point</code>, which made for very readable code -- an <code>Io::Point</code> is very clear and readable. But whenever we wanted to use the type, we had to include the declaration of the <code>Io</code> class, even if all we needed was the declaration of <code>Io::Point</code>, since there's no way (that I know of) to forward-declare a type that's within a forward-declared class.</p> <p>In that case, we ended up doing it both ways. We created a global <code>IoPoint</code> type, and then <code>typedef</code>d <code>Io::Point</code> to it (so that our already-written code didn't have to be modified). Not the prettiest answer, but it got the job done.</p> <p>As for the other parts:</p> <p>We don't use any special convention for the names. For maps, we often use <em>DescriptiveSomething</em><strong>Map</strong> (since it's unlikely that we'll ever change from a map to some other container type), but if <em>DescriptiveSomething</em> is descriptive enough and doesn't conflict with an existing name, we'll often use it instead.</p> <p>We generally don't bother creating typedefs for the iterators, since it's easy (and very readable) to simply use <code>Type::iterator</code> or <code>Type::const_iterator</code>. That said, we <em>do</em> sometimes typedef them if the type name is so long that <code>Type::const_iterator</code> makes the code look too "chunky." (Don't know of any better way to say it, but you probably know what I mean.)</p> <p>We create different typedefs for each concept, even if two of them define exactly the same type. They can change independent of one another, so having different type names for them simplifies any later refactoring. It also makes for more readable code, in many cases.</p> http://stackoverflow.com/questions/749865/c-mutable-appropriate-in-this-case/749897#749897 8 Answer by Head Geek for C++ mutable appropriate in this case? Head Geek 2009-04-15T00:41:26Z 2009-04-15T00:41:26Z <p>It's hard to say, since you don't give any context on what <code>y</code> refers to or how it's used.</p> <p>In general, <code>mutable</code> is only appropriate when changing the mutable variable doesn't change the actual "value" of the object. For example, when I was writing a wrapper for C-style strings, I needed to make the internal <code>mLength</code> variable mutable so that I could cache the length, even if the thing it was requested on was a <code>const</code> object. It didn't <em>change</em> the length or the string, and wasn't visible outside of the class itself, so making it <code>mutable</code> was okay.</p> http://stackoverflow.com/questions/231128/c-error-handling-good-sources-of-example-code 6 C++ Error Handling -- Good Sources of Example Code? Head Geek 2008-10-23T19:32:32Z 2009-04-11T14:50:39Z <p>Just about every piece of example code everywhere omits error handling (because it "confuses the issue" that the example code is addressing). My programming knowledge comes primarily from books and web sites, and you seldom see any error handling in use at all there, let alone good stuff.</p> <p>Where are some places to see good examples of C++ error handling code? Specific books, specific open-source projects (preferably with the files and functions to look at), and specific web pages or sites will all be gratefully accepted.</p> http://stackoverflow.com/questions/72616/embed-data-in-a-c-program 7 Embed data in a C++ program Head Geek 2008-09-16T14:03:58Z 2009-04-08T19:27:25Z <p>I've got a C++ program that uses SQLite. I want to store the SQL queries in a separate file -- a plain-text file, <em>not</em> a source code file -- but embed that file in the executable file like a resource.</p> <p>(This has to run on Linux, so I can't store it as an actual resource as far as I know, though that would be perfect if it were for Windows.)</p> <p>Is there any simple way to do it, or will it effectively require me to write my own resource system for Linux? (Easily possible, but it would take a lot longer.)</p> http://stackoverflow.com/questions/1726868/proxy-authentication-http-html-details/1727331#1727331 Comment by Head Geek on Proxy Authentication -- HTTP/HTML Details? Head Geek 2009-11-13T18:33:08Z 2009-11-13T18:33:08Z Thanks, that helps. http://stackoverflow.com/questions/1616488/retrieve-sd-card-serial-number-on-windows-xp-vista-7/1616511#1616511 Comment by Head Geek on Retrieve SD Card serial number on Windows XP/Vista/7? Head Geek 2009-10-24T23:17:11Z 2009-10-24T23:17:11Z Thanks, but it looks like there's no way to do it reliably. I'm editing the question to explain what I've found. http://stackoverflow.com/questions/172798/lisp-in-the-real-world/172813#172813 Comment by Head Geek on Lisp in the real world Head Geek 2009-10-10T05:42:57Z 2009-10-10T05:42:57Z Interesting... that's the only one I've seen that doesn't demand a run-time fee. They may be the salvation of Lisp for commercial software. http://stackoverflow.com/questions/1302057/cutdown-uuid-further-to-make-short-string/1302160#1302160 Comment by Head Geek on cutdown uuid further to make short string Head Geek 2009-08-19T23:45:47Z 2009-08-19T23:45:47Z Depends on how much uniqueness he needs. That's why I suggested both CRC and an alternative. http://stackoverflow.com/questions/1133581/is-23-148-855-308-184-500-a-magic-number-or-sheer-chance/1258002#1258002 Comment by Head Geek on Is 23,148,855,308,184,500 a magic number, or sheer chance? Head Geek 2009-08-13T04:39:17Z 2009-08-13T04:39:17Z 2 + 3 + 1 + 4 + 8 + 8 + 5 + 5 + 3 + 0 + 8 + 1 + 8 + 4 <b>+ 5</b> + 0 + 0 = 65. 6 + 5 = 11. It's all in the numerology. ;-) http://stackoverflow.com/questions/1251625/non-destructive-parsing-and-modifying-of-html-elements-in-c/1251684#1251684 Comment by Head Geek on Non-destructive parsing and modifying of HTML elements in C++ Head Geek 2009-08-09T18:04:25Z 2009-08-09T18:04:25Z I'd recommend it. They're extremely useful, and the learning curve really isn't that steep. http://stackoverflow.com/questions/1173539/what-scripting-language-should-i-learn-for-file-text-manipulation-tasks/1173560#1173560 Comment by Head Geek on What scripting language should I learn for file/text manipulation tasks? Head Geek 2009-07-23T18:36:18Z 2009-07-23T18:36:18Z With twenty-seven years of programming experience, I still find that I have to triple my initial estimate to get near the right answer. http://stackoverflow.com/questions/836086/programmatically-determining-individual-screen-widths-heights-in-linux-w-xineram/1138697#1138697 Comment by Head Geek on Programmatically determining individual screen widths/heights in Linux (w/Xinerama, TwinView, and/or BigDesktop) Head Geek 2009-07-16T16:38:24Z 2009-07-16T16:38:24Z Thanks, I'll give that a try the next time I have a chance. http://stackoverflow.com/questions/228620/garbage-collection-in-c-why/1121576#1121576 Comment by Head Geek on Garbage Collection in C++ -- why? Head Geek 2009-07-13T22:53:46Z 2009-07-13T22:53:46Z That's a valid point, though not one I'd normally be worried about. When I do multithreaded programming, the threads rarely share their data structures. http://stackoverflow.com/questions/1115356/efficiency-of-c-built-ins/1115374#1115374 Comment by Head Geek on Efficiency of c++ built ins. Head Geek 2009-07-12T05:47:13Z 2009-07-12T05:47:13Z @Gerald: I wondered if that could be the case, after looking at Sahasranaman's link. Thanks for clearing it up. http://stackoverflow.com/questions/1115356/efficiency-of-c-built-ins/1115374#1115374 Comment by Head Geek on Efficiency of c++ built ins. Head Geek 2009-07-12T05:39:17Z 2009-07-12T05:39:17Z I don't have a copy of the standard, and I don't understand that description, but you can try it yourself and see. I just did, and a call to <code>length()</code> returns 3 after every modification you made there. This is with G++ 4.3.3, but it also happens with Microsoft Visual C++ 6.0 and higher (never played with lower ones), and every other implementation of the STL's string library I've ever seen. http://stackoverflow.com/questions/1115356/efficiency-of-c-built-ins/1115374#1115374 Comment by Head Geek on Efficiency of c++ built ins. Head Geek 2009-07-12T05:30:56Z 2009-07-12T05:30:56Z Sorry, but adding a null character to the string does <i>not</i> change its length. The length stays the same, and the string includes an embedded null character. http://stackoverflow.com/questions/1115356/efficiency-of-c-built-ins/1115374#1115374 Comment by Head Geek on Efficiency of c++ built ins. Head Geek 2009-07-12T05:27:26Z 2009-07-12T05:27:26Z Um... <code>foo[1]='\0'</code> doesn't change the length. The length is still three. http://stackoverflow.com/questions/228036/c-template-instantiation-of-function-template-parameters/228370#228370 Comment by Head Geek on C++ template instantiation of function template parameters Head Geek 2009-07-08T00:03:17Z 2009-07-08T00:03:17Z If you plan to use them in more than one .cpp file, you <i>must</i> define them in a header file. I'm sure there are some labored exceptions to that rule, but it's a rule for a good reason. http://stackoverflow.com/questions/1087019/can-i-be-warned-when-i-used-a-generator-function-by-accident Comment by Head Geek on Can I be warned when I used a generator function by accident Head Geek 2009-07-06T16:29:29Z 2009-07-06T16:29:29Z @S.Lott: Copy/paste, as his comment mentions. I've always found copy/pastes of code to cause more headaches than they solve, but I know a lot of people find them useful.