User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T18:03:08Zhttp://stackoverflow.com/feeds/user/14116http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1740534/qmake-how-do-i-copy-dll-sos-to-the-output-directory/1740642#17406420Answer by keysersoze for qmake: How do I copy .dll/.so's to the output directory?keysersoze2009-11-16T07:33:28Z2009-11-16T07:33:28Z<p>I use INSTALLS, <a href="http://doc.trolltech.com/4.5/qmake-environment-reference.html#installs" rel="nofollow">like so.</a></p>
http://stackoverflow.com/questions/1694095/where-can-i-get-these-header-files/1694100#16941001Answer by keysersoze for Where can I get these header files?keysersoze2009-11-07T19:16:17Z2009-11-07T19:16:17Z<p>Try the <a href="http://www.debian.org/distrib/packages#search%5Fcontents" rel="nofollow">Debian package contents search page</a></p>
<p>(give a man a fish, etc.)</p>
http://stackoverflow.com/questions/1562074/how-do-i-show-the-value-of-a-define-at-compile-time/1562225#15622257Answer by keysersoze for How do I show the value of a #define at compile-time?keysersoze2009-10-13T18:52:50Z2009-10-13T19:37:38Z<p>As far as I know '#error' only will print strings, in fact <a href="http://en.wikipedia.org/wiki/C%5Fpreprocessor#User-defined%5Fcompilation%5Ferrors%5Fand%5Fwarnings" rel="nofollow">you don't even need to use quotes</a>.</p>
<p>Have you tried writing various purposefully incorrect code using "BOOST_VERSION"? Perhaps something like "blah[BOOST_VERSION] = foo;" will tell you something like "string literal 1.2.1 cannot be used as an array address". It won't be a pretty error message, but at least it'll show you the relevant value. You can play around until you find a compile error that does tell you the value.</p>
http://stackoverflow.com/questions/1044517/unpacking-an-executable-from-within-a-library-in-c-c/1445849#14458491Answer by keysersoze for Unpacking an executable from within a library in C/C++keysersoze2009-09-18T17:24:10Z2009-09-18T17:24:10Z<p>Qt has an excellent method of achieving this: <a href="http://doc.trolltech.com/resources.html" rel="nofollow">QResource</a></p>
<p>"The Qt resource system is a platform-independent mechanism for storing binary files in the application's executable."</p>
<p>You don't say if you are currently using Qt, but you do say "C++ for cross platform use on Windows and Linux", so even if you aren't using it, you may want to consider starting.</p>
http://stackoverflow.com/questions/1429440/c-class-or-struct-compatiblity-with-c-struct/1429501#14295015Answer by keysersoze for C++ Class or Struct compatiblity with C structkeysersoze2009-09-15T20:41:22Z2009-09-15T20:41:22Z<p>POD applies to C++. You can have member functions. <a href="http://en.wikipedia.org/wiki/Plain%5Fold%5Fdata%5Fstructures" rel="nofollow">"A POD type in C++ is an aggregate class that contains only POD types as members, has no user-defined destructor, no user-defined copy assignment operator, and no nonstatic members of pointer-to-member type"</a></p>
<p>You should design your POD data structures so they have natural alignment, and then they can be passed between programs created by different compilers on different architectures. Natural alignment is where the memory offset of any member is divisible by the size of that member. IE: a float is located at an address that is divisible by 4, a double is on an address divisible by 8. If you declare a char followed by a float, most architectures will pad 3 bytes, but some could conceivably pad 1 byte. If you declare a float followed by a char, all compilers (I ought to add a source for this claim, sorry) will not pad at all.</p>
http://stackoverflow.com/questions/1331308/in-qt-how-do-i-align-form-elements-in-different-group-boxes/1331326#13313260Answer by keysersoze for In Qt, how do I align form elements in different group boxes?keysersoze2009-08-25T22:13:18Z2009-08-25T22:13:18Z<p>I don't think it'll work with sets of nested horizontal and vertical layouts. Have you considered a <a href="http://doc.trolltech.com/qgridlayout.html" rel="nofollow">QGridLayout</a>?</p>
http://stackoverflow.com/questions/1295773/header-dependencies-in-qmake-using-msvc-express/1295798#12957981Answer by keysersoze for Header dependencies in qmake using MSVC Expresskeysersoze2009-08-18T18:53:23Z2009-08-18T19:09:08Z<p>Are your header files listed in the HEADERS variable in your .pro file? I think listing header files in HEADERS is also required to get classes within them MOC'ed.</p>
<p><strong>[edit]</strong>Nevermind, I tested this out with Qt Creator 1.2.1 from the Qt 4.5.2 SDK on linux, and when I 'touch' a header file, the cpps it depends on are recompiled, whether or not the header is listed in the HEADER list.</p>
<p>In the Makefile qmake generates, my cpp files that include the h file in question have a rule that explicitly lists the h file as a dependancy. Not sure how qmake does that. I'd suggest looking in the makefile qmake generated for you, and seeing what the rule for one of your cpp files looks like.<strong>[/edit]</strong></p>
<p><strong>[edit again, getting off topic now]</strong>Usually in make-based build system that invoke gcc, you generate dependency information for header files included by cpps by asking gcc to do it for you, with the -M flag. cl.exe (the microsoft C++ compiler) won't produce a .d file no matter how nicely you ask it, so it's somewhat common to use it's /showincludes option, and then parse the output with a script to convert it to a .d file so make can include it (a lot of people skip this step, and just don't have proper dependency checking in make-based builds that use cl.exe, because it's kind of a PITA). <em>However</em>, I don't think qmake does anything like that to get dependency information, because qmake is generating a makefile which in turn invokes the compiler, and at that point, the dependency info (at least in the makefile I looked at) is hard-coded.<strong>[/edit]</strong></p>
http://stackoverflow.com/questions/1256914/building-a-library-with-visual-studio-that-can-be-linked-to-a-qt-project/1257111#12571112Answer by keysersoze for Building a library with Visual Studio that can be linked to a Qt project?keysersoze2009-08-10T20:46:01Z2009-08-10T20:46:01Z<p>Qt is available as source code, you can build it with whatever toolchain you like. Visual Studio is an IDE (integrated development environment) that normally invokes the microsoft compiler (cl) and linker (ld), although you can configure a Visual Studio project file to do a makefile build, or IIRC, invoke any other program you like to do the build step (at my previous job, we built our Qt apps with cl and ld, and could debug with Visual Studio just fine, since about 2005).</p>
<p>Also, it appears this "NITRO" project is open source, so you can download the source instead of a pre-built binary, and build it using MinGW if you'd like to build Qt apps with MinGW, or if you are using pre-built Qt libraries that were built with MinGW.</p>
http://stackoverflow.com/questions/1240739/boolean-parameters-do-they-smell/1241722#12417220Answer by keysersoze for boolean parameters -- do they smell?keysersoze2009-08-06T21:50:41Z2009-08-06T21:50:41Z<p>I agree with other posters, it's not the boolean value that's the problem, it's the lack of context for the hard-coded constant.</p>
<p>One thing I did recently in an embedded C++ progam when calling a function in my RTOS that takes a boolean parameter is to say what the param is in a C-style comment:</p>
<blockquote>
<p>QueueMessage(/*from ISR*/false);</p>
</blockquote>
<p>or</p>
<blockquote>
<p>QueueMessage(/*from ISR*/true);</p>
</blockquote>
<p>Each line of code would be called either from an interrupt service routine or not from an interrupt service routine, so no variable was needed, but it left a reader a little confused as to what the param was doing.</p>
<p>Back in the day in Ada we could use named parameters:</p>
<blockquote>
<p>MyFunc(Param1Name => p1, Param2Name => p2);</p>
</blockquote>
<p>and it was very clear what each parameter was. Especially nice was that you could list the params in any order, or leave out any number of default parameters. Too bad more languages don't do that.</p>
http://stackoverflow.com/questions/1241334/approaches-to-a-gui-for-a-large-c-program/1241351#12413510Answer by keysersoze for Approaches to a GUI for a Large C Programkeysersoze2009-08-06T20:49:13Z2009-08-06T20:49:13Z<p>Depending on the nature of the program, you could create an entirely separate GUI application (in any language you prefer), and fork/execute the existing program from it, redirecting it's stdin and stdout to your GUI program. Depending on how the existing program works, this could work well, or be very cumbersome.</p>
<p>You could also extend the existing program with GUI code in something like GTK (which has a C API), or you could use Qt (which is C++, but there's usually no problems calling C functions from C++ if you define them as 'extern "C"').</p>
http://stackoverflow.com/questions/1171609/in-emacs-how-to-strip-cr-m-and-leave-lf-j-characters/1190043#11900433Answer by keysersoze for In emacs, how to strip CR (^M) and leave LF (^J) characters? keysersoze2009-07-27T19:14:49Z2009-07-27T19:14:49Z<p>There's also a command-line tool called <a href="http://en.wikipedia.org/wiki/Unix2dos" rel="nofollow">unix2dos/dos2unix</a> that exists specifically to convert line endings.</p>
http://stackoverflow.com/questions/1160302/monitoring-battery-or-power-supply-of-laptop-from-java/1160684#11606841Answer by keysersoze for Monitoring battery or power supply of laptop from javakeysersoze2009-07-21T17:51:16Z2009-07-21T17:51:16Z<p>On linux, you can use /proc/acpi/battery/</p>
http://stackoverflow.com/questions/1159379/a-good-serial-communications-protocol-stack-for-embedded-devices/1160641#11606410Answer by keysersoze for A good serial communications protocol/stack for embedded devices?keysersoze2009-07-21T17:41:33Z2009-07-21T17:41:33Z<p>Take a look at <a href="http://en.wikipedia.org/wiki/Profibus" rel="nofollow">Profibus</a>.</p>
<p>If you don't want master/slave, I think you ought to do the arbitration with hardware (<a href="http://en.wikipedia.org/wiki/Controller%E2%80%93area%5Fnetwork" rel="nofollow">Canbus</a>, <a href="http://en.wikipedia.org/wiki/Flexray" rel="nofollow">FlexRay</a>).</p>
http://stackoverflow.com/questions/1054672/every-language-was-created-for-a-specific-purpose/1139500#11395000Answer by keysersoze for "Every language was created for a specific purpose"keysersoze2009-07-16T18:41:19Z2009-07-16T18:41:19Z<p><a href="http://en.wikipedia.org/wiki/Ada%5F%28programming%5Flanguage%29" rel="nofollow">Ada</a> - Designed by the Department of Defense for safety-critical embedded/real-time systems.</p>
http://stackoverflow.com/questions/1119387/in-what-languages-can-you-dynamically-rewrite-functions-on-the-fly/1119859#11198591Answer by keysersoze for In what languages can you dynamically rewrite functions on the fly?keysersoze2009-07-13T14:41:56Z2009-07-13T14:41:56Z<p>You could do it in C++, but it wouldn't be easy, safe, or recommended.</p>
<ol>
<li>Generate the text of the source code</li>
<li>invoke the compiler (fork & exec) to build a dynamic library. In gcc, you can pass the source code you want to compile on standard input, it doesn't have to be in a file.</li>
<li>Load the library (LoadLibrary() on windows, dlopen() on linux)</li>
<li>get a function pointer to whatever function you want (GetProcAddress() on windows, dlsym() on linux)</li>
<li>If you want to replace an existing function, if it's a virtual function you could modify the v-table to point to the new function (that part especially is a horrible idea fraught with peril). The location of the v-table or the format of it isn't part of the C++ standard, but all the toolchains I've used have been consistent within themselves, so once you figure out how they do it, it probably won't break.</li>
</ol>
http://stackoverflow.com/questions/1073384/what-strategies-have-you-used-to-improve-build-times-on-large-projects/1075462#10754621Answer by keysersoze for What strategies have you used to improve build times on large projects?keysersoze2009-07-02T16:45:35Z2009-07-02T16:45:35Z<p>In general large C++ projects that I've worked on that had slow build times were pretty messy, with lots of interdependencies scattered through the code (the same include files used in most cpps, fat interfaces instead of slim ones). In those cases, the slow build time was just a symptom of the larger problem, and a minor symptom at that. Refactoring to make clearer interfaces and break code out into libraries improved the architecture, as well as the build time. When you make a library, it forces you to think about what is an interface and what isn't, which will actually (in my experience) end up improving the code base. If there's no technical reason to have to divide the code, some programmers through the course of maintenance will just throw anything into any header file.</p>
http://stackoverflow.com/questions/1015533/simple-c-problem/1015547#10155472Answer by keysersoze for simple C problemkeysersoze2009-06-18T22:34:20Z2009-06-18T22:34:20Z<p>You haven't said what the program is supposed to do, or what your problem is. That makes it hard to offer help.</p>
<p>At a guess, you really ought to initialize start and sum to zero, and perhaps the printf should be outside the loop.</p>
http://stackoverflow.com/questions/412477/2008-trend-best-ultraedit-alternative-free-text-editor-you-recommend/942350#9423500Answer by keysersoze for 2008 Trend: Best Ultraedit Alternative Free Text Editor You Recommendkeysersoze2009-06-02T23:01:12Z2009-06-02T23:01:12Z<p>I like <a href="http://www.scintilla.org/SciTE.html" rel="nofollow">SciTE</a>. It's cross-platform, I've used it on windows, linux, mac. It does syntax highlighting and auto-indent, not sure about auto-completion.</p>
http://stackoverflow.com/questions/940555/pyqt-sending-parameter-to-slot-when-connecting-to-a-signal/940658#9406580Answer by keysersoze for PyQt sending parameter to slot when connecting to a signalkeysersoze2009-06-02T16:52:40Z2009-06-02T16:52:40Z<p>In general, you should have each menu item connected to a different slot, and have each slot handle the functionality only for it's own menu item. For example, if you have menu items like "save", "close", "open", you ought to make a separate slot for each, not try to have a single slot with a case statement in it.</p>
<p>If you don't want to do it that way, you could use the <a href="http://doc.trolltech.com/4.5/signalsandslots.html#advanced-signals-and-slots-usage" rel="nofollow">QObject::sender()</a> function to get a pointer to the sender (ie: the object that emitted the signal). I'd like to hear a bit more about what you're trying to accomplish, though.</p>
http://stackoverflow.com/questions/936799/determining-what-object-files-have-caused-dll-size-increase-c/936899#9368993Answer by keysersoze for Determining what object files have caused .dll size increase [C++]keysersoze2009-06-01T21:31:20Z2009-06-01T21:31:20Z<p>If gcc, <a href="http://en.wikipedia.org/wiki/Objdump" rel="nofollow">objdump</a>. If visual studio, <a href="http://msdn.microsoft.com/en-us/library/c1h23y6c%28VS.71%29.aspx" rel="nofollow">dumpbin</a>.</p>
<p>I'd suggest doing a diff of the output of the tool for the old (small) library, vs. the new (large) library.</p>
http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/900028#90002831Answer by keysersoze for How can you tell if a person is a programmer?keysersoze2009-05-22T21:13:50Z2009-05-22T21:13:50Z<p>Easy question. They aren't. I'd guess this method is 99% accurate, given a random sample of people.</p>
http://stackoverflow.com/questions/899861/a-good-way-to-do-a-fast-divide-in-c/899929#8999290Answer by keysersoze for A good way to do a fast divide in C++?keysersoze2009-05-22T20:47:47Z2009-05-22T20:47:47Z<p>I are looping 10,000 times simply to make the code take long enough to measure the time easily? Or do you have 10000 numbers to divide by the same number? If the former, put the "y_div = 1.0 / y;" <em>inside</em> the loop, because it's part of the operation.</p>
<p>If the latter, yes, floating point multiplication is generally faster than division. Don't change your code from the obvious to the arcane based on guesses, though. Benchmark first to find slow spots, and then optimize those (and take measurements before and after to make sure your idea actually causes an improvement)</p>
http://stackoverflow.com/questions/883835/what-scripting-languages-are-similar-to-ecma/884038#8840380Answer by keysersoze for What scripting languages are similar to ECMA?keysersoze2009-05-19T17:20:38Z2009-05-19T17:20:38Z<p><a href="http://en.wikipedia.org/wiki/QtScript" rel="nofollow">QtScript</a> is ECMAScript. You don't mention what the main part of your application is written in, but I suppose it's not Qt, or you'd already know about QtScript.</p>
http://stackoverflow.com/questions/883644/educational-ide-to-start-programming-in-c/883764#8837642Answer by keysersoze for Educational IDE to start programming in C++?keysersoze2009-05-19T16:22:53Z2009-05-19T16:22:53Z<p>If you are using both windows and linux (as your comment indicates), I'd recommend <a href="http://www.qtsoftware.com/products/developer-tools" rel="nofollow">Qt Creator</a>. Qt is cross platform so your apps will work on linux, windows, and mac. Qt has excellent documentation, too, so it's very newbie friendly. Signals and Slots take a bit of getting used to, but IMO it's worth it.</p>
http://stackoverflow.com/questions/871336/is-there-a-way-to-combine-qt-creator-boost-library/871358#8713583Answer by keysersoze for is there a way to combine Qt-Creator + Boost Library?keysersoze2009-05-16T00:30:50Z2009-05-16T00:30:50Z<p>I'm pretty sure Qt Creator doesn't require the use of Qt in your application. If you don't want to link to any Qt libraries, or run MOC on any header files (which you only need to do for subclasses of QObject), then just do "<a href="http://doc.trolltech.com/4.5/qmake-project-files.html#declaring-qt-libraries" rel="nofollow">QT -= core gui</a>" (to get rid of qt libraries from the link command. Perhaps "QT = " would work, too), and don't specify any <a href="http://doc.trolltech.com/4.5/qmake-project-files.html#variables" rel="nofollow">HEADERS</a>.</p>
<p>Good luck, post back if it works.</p>
http://stackoverflow.com/questions/809415/best-text-editor-with-custom-syntax/809659#8096592Answer by keysersoze for Best text editor with custom syntaxkeysersoze2009-05-01T00:00:23Z2009-05-01T00:00:23Z<p>I like <a href="http://www.scintilla.org/SciTE.html" rel="nofollow">SciTE</a>. It's very customizable (with <a href="http://en.wikipedia.org/wiki/Lua%5F%28programming%5Flanguage%29" rel="nofollow">lua</a>), and works great on windows and linux. It's easy to modify existing language rules, or add new languages. Generally I only do syntax-highlighting and tab behavior, but the sky's the limit if you use lua.</p>
http://stackoverflow.com/questions/807506/threads-vs-processes-in-linux/809212#8092121Answer by keysersoze for Threads vs Processes in Linuxkeysersoze2009-04-30T21:33:37Z2009-04-30T21:33:37Z<p>To complicate matters further, there is such a thing as <a href="http://en.wikipedia.org/wiki/Thread-Specific%5FStorage" rel="nofollow">thread-local storage</a>, and Unix shared memory.</p>
<p>Thread-local storage allows each thread to have a separate instance of global objects. The only time I've used it was when constructing an emulation environment on linux/windows, for application code that ran in an RTOS. In the RTOS each task was a process with it's own address space, in the emulation environment, each task was a thread (with a shared address space). By using TLS for things like singletons, we were able to have a separate instance for each thread, just like under the 'real' RTOS environment.</p>
<p>Shared memory can (obviously) give you the performance benefits of having multiple processes access the same memory, but at the cost/risk of having to synchronize the processes properly. One way to do that is have one process create a data structure in shared memory, and then send a handle to that structure via traditional inter-process communication (like a named pipe).</p>
http://stackoverflow.com/questions/800219/qt-vs-wpf-net/800303#80030314Answer by keysersoze for Qt vs WPF/.NETkeysersoze2009-04-28T23:44:59Z2009-04-28T23:44:59Z<p>There are Qt bindings <a href="http://en.wikipedia.org/wiki/Qt%5F%28toolkit%29#Bindings" rel="nofollow">for Python, C#, Ruby, Java, Ada, Pascal, Perl, PHP, and Haskell</a>, however, they aren't supported by Trolltech (or now Nokia), and I've no idea if they work well at all.</p>
<p>Even so, I'd rather use C++ with Qt, than whatever microsoft is pushing right now. You can run Qt on every popular desktop OS, and with the licensing terms, even if Nokia goes bankrupt or sells Qt off, you've got <em>all</em> the source code. You can maintain it yourself if you need to, and modify it however you like, you just need to make your source code modifications to the Qt libraries available to anyone you give binaries to.</p>
http://stackoverflow.com/questions/753440/should-network-packet-payload-data-be-aligned-on-proper-boundries/753902#7539021Answer by keysersoze for Should network packet payload data be aligned on proper boundries?keysersoze2009-04-15T21:58:03Z2009-04-15T21:58:03Z<p>If you don't have natural alignment in the structures, compilers will usually insert padding so that alignment is proper. If, however, you use pragmas to "pack" the structures (remove the padding), there can be very harmful side affects. On PowerPCs, non-aligned floats generate an exception. If you're working on an embedded system that doesn't handle that exception, you'll get a reset. If there <em>is</em> a routine to handle that interrupt, it can <em>DRASTICALLY</em> slow down your code, because it'll use a software routine to work around the misalignment, which will silently cripple your performance.</p>
http://stackoverflow.com/questions/753440/should-network-packet-payload-data-be-aligned-on-proper-boundries/753541#7535414Answer by keysersoze for Should network packet payload data be aligned on proper boundries?keysersoze2009-04-15T20:24:26Z2009-04-15T20:24:26Z<p>You look into <a href="http://code.google.com/apis/protocolbuffers/docs/overview.html" rel="nofollow">Google protocol buffers</a>, or Boost::serialize like another poster said.</p>
<p>If you want to roll your own, please do it right.</p>
<p>If you use types from stdint.h (ie: <code>uint32_t, int8_t,</code> etc.), and make sure every variable has "native alignment" (meaning it's address is divisible evenly by it's size (<code>int8_t</code>s are anywhere, <code>uint16_t</code>s are on even addresses, <code>uint32_t</code>s are on addresses divisble by 4), you won't have to worry about alignment or packing.</p>
<p>At a previous job we had all structures sent over our databus (ethernet or CANbus or byteflight or serial ports) defined in XML. There was a parser that would validate alignment on the variables within the structures (alerting you if someone wrote bad XML), and then generate header files for various platforms and languages to send and receive the structures. This worked <em>really</em> well for us, we <em>never</em> had to worry about hand-writing code to do message parsing or packing, and it was guaranteed that all platforms wouldn't have stupid little coding errors. Some of our datalink layers were pretty bandwidth constrained, so we implemented things like bitfields, with the parser generating the proper code for each platform. We also had enumerations, which was very nice (you'd be surprised how easy it is for a human to screw up coding bitfields on enumerations by hand).</p>
<p>Unless you need to worry about it running on 8051s and HC11s with C, or over data link layers that are very bandwidth constrained, you are not going to come up with something better than protocol buffers, you'll just spend a lot of time trying to be on par with them.</p>
http://stackoverflow.com/questions/589015/what-is-the-most-difficult-type-of-software-to-write/589186#589186Comment by on What is the most difficult type of software to write?2009-11-09T18:34:40Z2009-11-09T18:34:40ZSorry for continuing a political discussion on a tech website, but there's no way to send a private message to a user, so I guess I'll post one more thing here. Re: "Being invaded is worse", nearly every war in history has been portrayed as defensive, by <i>both</i> sides involved. I'd link to the famous quote by Goering, but Godwin's law in 3 is rather tacky (even though in this case the point of course wouldn't be to compare your country to Nazi Germany, but instead to remark that if such a tactic can work for an extremely evil agenda, imagine how well it can work in a more ambiguous conflict).http://stackoverflow.com/questions/589015/what-is-the-most-difficult-type-of-software-to-write/589186#589186Comment by on What is the most difficult type of software to write?2009-11-08T06:17:39Z2009-11-08T06:17:39ZSorry, off topic, but I'm curious how you consider the moral implications of what you do - do you think it's morally neutral(/irrelevant) to make weapons, or that it's morally positive for anyone to make weapons for their own country, or only morally positive to make weapons for some countries (and if so, how you decide who it's okay to make weapons for)? Also, does it worry you that political leadership can change, and that a weapon you design now could be used in a war you are morally opposed to in 10-15 years?http://stackoverflow.com/questions/1562074/how-do-i-show-the-value-of-a-define-at-compile-time/1562254#1562254Comment by on How do I show the value of a #define at compile-time?2009-10-13T19:00:59Z2009-10-13T19:00:59ZI think the submitter doesn't want to (just) enforce a particular value, they want to see what the current value is.http://stackoverflow.com/questions/1562074/how-do-i-show-the-value-of-a-define-at-compile-time/1562092#1562092Comment by on How do I show the value of a #define at compile-time?2009-10-13T18:57:02Z2009-10-13T18:57:02ZFor the case of a software version defined in a header you're probably safe (and it's a good answer). But as a general solution, a possible downside would be in getting your test app and your real app to have the same value of the #define - depending on their include paths, other #defines that may be used to set the value of that one, the CFLAGS passed to the compiler, etc.http://stackoverflow.com/questions/1562074/how-do-i-show-the-value-of-a-define-at-compile-time/1562115#1562115Comment by on How do I show the value of a #define at compile-time?2009-10-13T18:45:18Z2009-10-13T18:45:18ZIt sounds like you are unfamiliar with what #error does: <a href="http://en.wikipedia.org/wiki/C_preprocessor#User-defined_compilation_errors_and_warnings" rel="nofollow">en.wikipedia.org/wiki/…</a>
It makes the compiler print messages at <i>compile</i> time.http://stackoverflow.com/questions/1521194/double-type-digits-in-cComment by on double type digits in C++2009-10-05T18:02:30Z2009-10-05T18:02:30ZIEEE754 doubles have 52 bits of mantissa: <a href="http://en.wikipedia.org/wiki/Double_precision_floating-point_format" rel="nofollow">en.wikipedia.org/wiki/…</a>
Aside from Intel using 80-bit floating point registers with 64 bits of mantissa (about 19 digits of resolution), I've never heard of any different "internal representation". Can you provide a reference to what you are referring to?http://stackoverflow.com/questions/1500984/whats-that-thing-that-one-should-never-forget-while-coding/1501634#1501634Comment by on Whats that thing that one should never forget while coding?2009-10-01T21:19:19Z2009-10-01T21:19:19ZI think Brian Kernighan said this, anyone know for sure?http://stackoverflow.com/questions/1469058/prevent-outlook-from-mangling-urls-sent-from-my-applicationComment by on Prevent Outlook from mangling URLs sent from my application2009-09-23T23:49:05Z2009-09-23T23:49:05ZWasn't me who down-voted, but I'm guessing it happened because the question isn't programming related. Perhaps you'd have more luck on <a href="http://superuser.com" rel="nofollow">superuser.com</a>?http://stackoverflow.com/questions/1439544/how-should-i-interview-a-candidate-who-is-probably-a-no-hire/1439569#1439569Comment by on How should I interview a candidate who is probably a "no hire"?2009-09-17T22:51:57Z2009-09-17T22:51:57ZI think the <i>ethical</i> reasons are a lot more important than the legal reasons. Are you saying that if the legal reasons didn't exist your behavior would change? You'd let him fly all the way to NYC from wherever in the midwest, waste 1-2 days of time interviewing, plus all the prior time and emotional investment, and blow him off unless the law makes you do otherwise?http://stackoverflow.com/questions/1439544/how-should-i-interview-a-candidate-who-is-probably-a-no-hire/1439572#1439572Comment by on How should I interview a candidate who is probably a "no hire"?2009-09-17T22:48:46Z2009-09-17T22:48:46ZIf you think it's a waste of your time interviewing a person, it's an even bigger waste of theirs. You ought to confront your broken HR policy that results in you interviewing someone you pre-judge as inadequate for the position, and if you're not a big enough person to do that, you owe it to the person being interviewed to give them an objective interview. If you think they have a failing, ask questions that will test your theory. Don't give them a puffball interview and then blow them off, that's an asshole thing to do.http://stackoverflow.com/questions/1429440/c-class-or-struct-compatiblity-with-c-struct/1429501#1429501Comment by on C++ Class or Struct compatiblity with C struct2009-09-16T20:28:55Z2009-09-16T20:28:55ZIf you use a pack pragma on structures that don't already have natural alignment, there are often times harmful side effects. If you have improperly aligned floats on PowerPC for example, a hardware exception will occur. The hardware handler can choose to reset the processor (common in embedded apps), or handle the problem in software (which is SLOOOOW). In either case, using a pack pragma can only hurt you, you definitely want to define the structure to have natural alignment and not use pack so it works the same across platforms.http://stackoverflow.com/questions/1429440/c-class-or-struct-compatiblity-with-c-struct/1429501#1429501Comment by on C++ Class or Struct compatiblity with C struct2009-09-16T20:27:23Z2009-09-16T20:27:23ZI've never seen a compiler that inserted padding for structures that have natural alignment. VC++ 6.0, 2003, 2005, 2008, Metrowerks for PPC, Metrowerks for HC12, gcc for ARM, gcc 2.98-3.x for PowerPC, gcc 3.x-4.x for x86, SDCC for 8051, Crossworks for MSP430. I would greatly appreciate hearing a counter-example, or a good justification for why this is so.http://stackoverflow.com/questions/1429440/c-class-or-struct-compatiblity-with-c-struct/1429500#1429500Comment by on C++ Class or Struct compatiblity with C struct2009-09-16T20:22:39Z2009-09-16T20:22:39ZJust noticed your comment re: sizeof()... Are you aware of stdint.h? <a href="http://en.wikipedia.org/wiki/Stdint.h" rel="nofollow">en.wikipedia.org/wiki/Stdint.h</a> "Both C and C++ developers should know that it is important to update their coding standards even if the compiler is not C99 compliant because a version of stdint.h (for C), and a version of stdint.h and cstdint (for C++) can be downloaded or quickly created."http://stackoverflow.com/questions/1429440/c-class-or-struct-compatiblity-with-c-struct/1429500#1429500Comment by on C++ Class or Struct compatiblity with C struct2009-09-15T22:34:30Z2009-09-15T22:34:30ZIn my experience pack pragmas are a bad idea. If you order the member variables such that they have natural alignment, then pack pragmas aren't necessary. And if you <i>don't</i> order them to have natural alignment and attempt to use pragmas to fix it, you can run into two problems: 1) The pragmas still won't work 2) You will force the compiler to misalign something the processor doesn't want misaligned, like floating point numbers. On PowerPC at least, a misaligned float will generate an interrupt that gets handled by software, that can <i>significantly</i> impact performance.http://stackoverflow.com/questions/1119881/how-do-i-specifiy-an-object-directory-in-a-qt-project-fileComment by on How do I specifiy an object directory in a QT project file?2009-09-08T22:16:49Z2009-09-08T22:16:49ZAre you satisfied with the .o file being in a subdir? What about moc files, resource files, generated makefiles, etc.? So far I am setting OBJECTS_DIR, MOC_DIR, DESTDIR, RCC_DIR, UI_DIR, UI_HEADERS_DIR, and UI_SOURCES_DIR, and everything goes into my 'obj' directory, except the generated makefiles. I thought I'd be home free with QMAKE_MAKEFILE, but that doesn't seem to like a path as part of the name (and it gets ignored by QtCreator, anyway).