User Kevin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:08:32Z http://stackoverflow.com/feeds/user/6386 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/161177/does-c-support-finally-blocks-and-whats-this-raii-i-keep-hearing-about 7 Does C++ support 'finally' blocks? (And what's this 'RAII' I keep hearing about?) Kevin 2008-10-02T07:14:00Z 2009-11-26T18:52:52Z <p>Does C++ support '<a href="http://java.sun.com/docs/books/tutorial/essential/exceptions/finally.html" rel="nofollow"><strong>finally</strong></a>' blocks?</p> <p>What is the <a href="http://sourceforge.net/docman/display_doc.php?docid=8673&amp;group_id=9028" rel="nofollow"><strong>RAII idiom</strong></a>?</p> <p>What is the difference between C++'s RAII idiom and <a href="http://www.c-sharpcorner.com/uploadfile/dipalchoksi/usingstatement11092005065819am/usingstatement.aspx" rel="nofollow"><strong>C#'s 'using' statement</strong></a>?</p> http://stackoverflow.com/questions/105049/what-are-the-best-design-patterns-books-you-have-read/105065#105065 44 Answer by Kevin for What are the best design patterns books you have read? Kevin 2008-09-19T20:04:30Z 2009-10-05T19:34:13Z <p>The classic <i>Gang of Four</i> book:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">Design Patterns: Elements of Reusable Object-Oriented Software</a></p> <p>It's the defining patterns book -- a classic.</p> http://stackoverflow.com/questions/96196/when-are-c-macros-beneficial/96316#96316 7 Answer by Kevin for When are C++ macros beneficial? Kevin 2008-09-18T20:02:33Z 2009-08-13T20:11:52Z <p>Header file guards necessitate macros.</p> <p>Are there any other areas that <strong>necessitate</strong> macros? Not many (if any).</p> <p>Are there any other situations that benefit from macros? YES!!!</p> <p>One place I use macros is with very repetitive code. For example, when wrapping C++ code to be used with other interfaces (.NET, COM, Python, etc...), I need to catch different types of exceptions. Here's how I do that:</p> <pre><code>#define HANDLE_EXCEPTIONS \ catch (::mylib::exception&amp; e) { \ throw gcnew MyDotNetLib::Exception(e); \ } \ catch (::std::exception&amp; e) { \ throw gcnew MyDotNetLib::Exception(e, __LINE__, __FILE__); \ } \ catch (...) { \ throw gcnew MyDotNetLib::UnknownException(__LINE__, __FILE__); \ } </code></pre> <p>I have to put these catches in every wrapper funtion. Rather than type out the full catch blocks each time, I just type:</p> <pre><code>void Foo() { try { ::mylib::Foo() } HANDLE_EXCEPTIONS } </code></pre> <p>This also makes maintenance easier. If I every have to add a new exception type, there's only one place I need to add it.</p> <p>There are other useful examples too: many of which include the <code>__FILE__</code> and <code>__LINE__</code> preprocessor macros.</p> <p>Anyway, macros are very useful when used correctly. Macros are not evil -- their <strong>misuse</strong> is evil.</p> http://stackoverflow.com/questions/962152/good-application-not-code-documentation-tools-outputting-html-help-files 0 Good application (not code) documentation tools outputting HTML Help files? Kevin 2009-06-07T15:54:00Z 2009-08-12T12:43:13Z <p>I need to document an application -- not the underlying source code. (I use Doxygen for the internal source code documentation.) </p> <p>What are good documentation tools for producing HTML Help files? I know about the HTML Help Workshop, but I'm not very good at editing HTML files. I was hoping for something more integrated with a WYSIWYG editor.</p> <p>I'm not restricting myself to free tools, but free is always nice. ;)</p> <p>Thanks for your help!</p> <ul> <li>Kevin</li> </ul> http://stackoverflow.com/questions/187937/how-can-i-remote-desktop-from-windows-xp-into-windows-vista 3 How can I remote desktop from Windows XP into Windows Vista? [closed] Kevin 2008-10-09T15:57:17Z 2009-07-16T21:12:31Z <p>How can I remote desktop from Windows XP into Windows Vista? Is there an update to XP's mstsc.exe app that will allow it to work with Vista's version of the RDP protocol?</p> <p>I know there's VNC, but I'd rather avoid starting another service in Vista -- it consumes enough resources as it is.</p> <p>Thanks for the help!</p> http://stackoverflow.com/questions/954731/can-smart-pointers-selectively-hide-or-re-direct-function-calls-to-the-objects-th 7 Can smart pointers selectively hide or re-direct function calls to the objects they are wrapping? Kevin 2009-06-05T07:53:50Z 2009-06-05T23:06:47Z <p>I'm working on a project where certain objects are referenced counted -- it's a very similar setup to COM. Anyway, our project does have smart pointers that alleviate the need to explicitly call Add() and Release() for these objects. The problem is that sometimes, developers are still calling Release() with the smart pointer.</p> <p>What I'm looking for is a way to have calling Release() from the smart pointer create a compile-time or run-time error. Compile-time doesn't seem possible to me. I thought I had a run-time solution (see code below), but it doesn't quite compile either. Apparently, implicit conversion isn't allowed after using operator->().</p> <p>Anyway, can anyone think of a way to accomplish what I'm trying to accomplish?</p> <p>Many thanks for your help!</p> <p>Kevin</p> <pre><code>#include &lt;iostream&gt; #include &lt;cassert&gt; using namespace std; class A { public: void Add() { cout &lt;&lt; "A::Add" &lt;&lt; endl; } void Release() { cout &lt;&lt; "A::Release" &lt;&lt; endl; } void Foo() { cout &lt;&lt; "A::Foo" &lt;&lt; endl; } }; template &lt;class T&gt; class MySmartPtrHelper { T* m_t; public: MySmartPtrHelper(T* _t) : m_t(_t) { m_t-&gt;Add(); } ~MySmartPtrHelper() { m_t-&gt;Release(); } operator T&amp;() { return *m_t; } void Add() { cout &lt;&lt; "MySmartPtrHelper::Add()" &lt;&lt; endl; assert(false); } void Release() { cout &lt;&lt; "MySmartPtrHelper::Release()" &lt;&lt; endl; assert(false); } }; template &lt;class T&gt; class MySmartPtr { MySmartPtrHelper&lt;T&gt; m_helper; public: MySmartPtr(T* _pT) : m_helper(_pT) { } MySmartPtrHelper&lt;T&gt;* operator-&gt;() { return &amp;m_helper; } }; int main() { A a; MySmartPtr&lt;A&gt; pA(&amp;a); pA-&gt;Foo(); // this currently fails to compile. The compiler // complains that MySmartPtrHelper::Foo() doesn't exist. //pA-&gt;Release(); // this will correctly assert if uncommented. return 0; } </code></pre> http://stackoverflow.com/questions/373917/are-there-any-open-source-real-time-operating-systems 7 Are There any Open Source Real Time Operating Systems? Kevin 2008-12-17T07:51:15Z 2009-06-04T09:06:00Z <p>Are there any open source real time operating systems out there? I've heard of real-time Linux, but most implementations seem to really be a proprietary RTOS (that you have to pay for) that run Linux as a process -- much the same way Ardence's RTX real-time system works for Windows.</p> <p>EDIT: I should clarify that I'm looking for RTOS to work with multi-core x86-family CPUs. </p> http://stackoverflow.com/questions/261152/looking-for-a-script-to-colorize-c-code 3 Looking for a script to colorize C++ code. Kevin 2008-11-04T07:26:58Z 2009-06-01T19:40:04Z <p>Does anyone know of a script to colorize C++ code the same as the default MSVC IDE does?</p> http://stackoverflow.com/questions/172863/anyone-have-experience-with-llvm 12 Anyone have experience with LLVM? Kevin 2008-10-05T23:48:08Z 2009-05-07T06:44:47Z <p>Does anyone have experience with <a href="http://llvm.org/" rel="nofollow"><strong>LLVM</strong></a>, <a href="http://llvm.org/docs/CommandGuide/html/llvmgcc.html" rel="nofollow"><strong>llvm-gcc</strong></a>, or <a href="http://clang.llvm.org/" rel="nofollow"><strong>Clang</strong></a>?</p> <p>The whole idea behind llvm seems very intriguing to me and I'm interested in seeing how it performs. I just don't want to dump a whole lot of time into trying the tools out if the tools are not ready for production.</p> <p>If you have experience with the tools, what do you think of them? What major limitations have you encountered? What are the greatest benefits?</p> <p>Many thanks!</p> http://stackoverflow.com/questions/119123/why-isnt-sizeof-for-a-struct-equal-to-the-sum-of-sizeof-of-each-member 40 Why isn't sizeof for a struct equal to the sum of sizeof of each member? Kevin 2008-09-23T04:24:47Z 2009-04-21T08:41:12Z <p>Why does the 'sizeof' operator return a size larger for a structure than the total sizes of the structure's members?</p> http://stackoverflow.com/questions/712110/a-copyright-license-comment-for-common-utility-apps-while-do-contract-work 2 A copyright / license comment for common utility apps while do contract work Kevin 2009-04-03T00:13:21Z 2009-04-03T00:55:55Z <p>I'm doing some contract work who need the source code for the application I'm writing. For the new files I'm writing for the customer, I'm giving them the copyright. However, there are some utility files (for OS abstractions like threading) I'm using that I've developed on my own (not on the customer's dime). I want to keep the right to use these files for my own future projects or future contracting jobs.</p> <p>My question is, what type of license and copyright statement do I provide at the top of the source code file? I am considering something similar to the Boost Software License:</p> <blockquote> <p>Copright (c) 2009 [my legal name]</p> <p>Permission is hereby granted to [customer legal name], free of charge, to use, reproduce, modify, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following:</p> <p>The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor.</p> <p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p> </blockquote> <p>Is this license and copyright notice sufficient? Is there anyone in a similar situation that can post their license?</p> <p><strong>EDIT</strong></p> <p>The files that I'm concerned about right now are pretty simple -- just thin wrappers around OS-specific stuff (such as threading and mutexes). This isn't a library that I'd sell as a stand alone product, and is not something I'm concerned about the customer using or distributing in the future.</p> <p>If I were to produce a library that I would intend to sell, I'd use a different license (for which I would most likely contact a lawyer).</p> <p>It's just convenient to use these files on projects and I would hate to have the customer claim I could not use the software on future projects without paying them a royalty fee.</p> <p>Thanks so much for the help!</p> <ul> <li>Kevin</li> </ul> http://stackoverflow.com/questions/105659/how-can-one-grab-a-stack-trace-in-c 9 How can one grab a stack trace in C? Kevin 2008-09-19T21:11:54Z 2009-02-27T16:58:25Z <p>I know there's no standard C function to do this. I was wondering what are the techniques to to this on Windows and *nix? (Windows XP is my most important OS to do this on right now.)</p> <p>Thanks for the help!</p> http://stackoverflow.com/questions/394757/is-there-an-ide-for-d-with-integrated-debugger 6 Is there an IDE for D with integrated debugger? Kevin 2008-12-27T06:53:08Z 2009-02-18T01:18:05Z <p>Is there an IDE for D with integrated debugger?</p> http://stackoverflow.com/questions/123758/how-do-i-remove-code-duplication-between-similar-const-and-non-const-member-funct 11 How do I remove code duplication between similar const and non-const member functions? Kevin 2008-09-23T20:47:11Z 2009-01-13T16:33:38Z <p>Let's say I have the following class X where I want to return access to an internal member:</p> <pre><code>class Z { // details }; class X { std::vector&lt;Z&gt; vecZ; public: Z&amp; Z(size_t index) { // ... // massive amounts of code for // validating index Z&amp; ret = vecZ[index]; // even more code for determining that // the Z instance at index is *just* // the right sort of Z (a process which // involves calculating leap years in which // religious holidays fall on Tuesdays for // the next thousand years or so) // ... return ret; } const Z&amp; Z(size_t index) const { // identical to non-const X::Z(), except // printed in a lighter shade of gray since // we're running low on toner by this point // ... } }; </code></pre> <p>The two member functions 'X::Z()' and 'X::Z() const' have identical code inside the braces. This is duplicate code <strong>and can cause maintenance problems for long functions with complex logic</strong>. </p> <p>Is there a way to avoid this code duplication?</p> http://stackoverflow.com/questions/352113/what-is-the-future-of-c-language-developers/352144#352144 13 Answer by Kevin for What is the Future of C++ Language & Developers ? Kevin 2008-12-09T08:45:37Z 2008-12-09T08:45:37Z <p>C++ is still being actively updated. Check out the <strong><a href="http://en.wikipedia.org/wiki/C%2B%2B0x" rel="nofollow">Wikipedia page for the next standard of C++</a></strong>.</p> <blockquote> <p>Whether it will play the same role as it has been since from its inception. Does it play big role in parallel programming.</p> </blockquote> <p>Well, it does play a great role in parallel programming. Often the reason to parallel program is to run code more quickly. Well, that's often why people use C++. So C++ fits in well here. IBM produces a library (which name I forgot right now) specifically to make this easy. Also, there is a highly regarded open source library called <strong><a href="http://openmp.org/wp/" rel="nofollow">OpenMP</a></strong> that helps make parallel programming in C++ easier.</p> <p>Will C++ play the same role it has since its inception? Not entirely. Many other languages have been developed that are better designed for certain situations. But C++ will still be a great multi-paradigm language -- greater in fact with the new additions. Some things will hopefully be even easier -- like using the keyword 'auto' to let the compiler figure out the data type of a variable.</p> <p>I hope this helps a little bit.</p> http://stackoverflow.com/questions/352066/finding-the-type-of-an-unknown-object-in-c/352088#352088 6 Answer by Kevin for Finding the type of an unknown object in C++ Kevin 2008-12-09T08:15:48Z 2008-12-09T08:25:33Z <p>RTTI may not help you. RTTI only works if the classes have virtual methods, and not all allocations are of objects with virtual methods.</p> <p>What you really need to do is have some way to attach a stack trace to your allocations. Then you can get information about where the memory was allocated. You'd look for a class constructor if it was objects that leaked memory.</p> <p>Anyway, is there something like this out there? Yes. A free library for Windows is <a href="http://www.codeproject.com/KB/applications/visualleakdetector.aspx" rel="nofollow">Visual Leak Detector</a>. There are more fully featured commercial products (like Bounds Checker, and IBM's Rational Purify), but VLD works great. It's helped me countless times spot memory leaks.</p> http://stackoverflow.com/questions/317806/what-is-the-longest-time-you-spent-debugging-a-problem/317914#317914 0 Answer by Kevin for What is the longest time you spent debugging a problem Kevin 2008-11-25T16:15:56Z 2008-11-25T16:15:56Z <p>I worked a couple months on an iterative algorithm designed by someone else that attempted to solve a problem ideally solved by calculus of variations, but due to time constraints had to be solved iteratively. The problem was that the algorithm worked in 99.9% of cases, but there were a few corner cases that caused significant problems for our customers. This was definitely not trivial.</p> <p>Another problem I worked on took about a month that was a device driver issue. It was not trivial because nobody I could find had the same device driver constraints we did, so I couldn't find any previous work related to what I was doing -- even when scouring the web. The problem probably could have been solved in about half the time if I was more familiar with device drivers though. This was the first big device driver issue I had worked on and there was a lot of time spent learning about limitations about programming drivers.</p> http://stackoverflow.com/questions/179787/high-speed-graphing-control-for-net-or-mfc 1 High speed graphing control for .NET (or MFC)? Kevin 2008-10-07T18:38:14Z 2008-10-24T20:12:52Z <p>I need to write a digital oscilloscope type application. There are many great static graphing controls out there, but I need something that can graph 16 traces processing 4000 samples per second.</p> <p>Is anyone aware of a high speed graphing control for .NET? I'll even take MFC since that can be wrapped into a .NET control.</p> <p>Thanks for the help!</p> http://stackoverflow.com/questions/198402/missing-desired-features-in-visual-c/198574#198574 2 Answer by Kevin for Missing/desired features in Visual C++ Kevin 2008-10-13T18:39:34Z 2008-10-13T18:39:34Z <p>If multiple expressions (separated by sequence points) exist on a single line, then allow stepping through the individual statements one at a time. Example: in a for loop, step through the initialization &amp; comparison as two separate statements (on first pass) and the comparison and increment as two separate statements (on subsequent passes) .</p> <p>Stepping through macros.</p> http://stackoverflow.com/questions/192561/is-there-a-visual-studio-plugin-for-sorting-build-output-scrambled-from-multi-th 1 Is there a Visual Studio plugin for sorting build output (scrambled from multi-threaded builds)? Kevin 2008-10-10T18:30:20Z 2008-10-10T18:33:53Z <p>My work just gave me a quad core computer, and WOW build times are fast! (What used to take 20+ minutes now takes 7 minutes).</p> <p>Anyway, Visual Studio builds project in parallel (great for build times), but scrambles the output:</p> <pre><code>1&gt;Performing Makefile project actions 3&gt;arg.c 2&gt;msg.c 3&gt;log.c 4&gt;test.c (and so on....) </code></pre> <p>Is there a plugin that sorts the output when the build is complete?</p> http://stackoverflow.com/questions/187713/converting-floating-point-to-fixed-point/187808#187808 12 Answer by Kevin for Converting floating point to fixed point Kevin 2008-10-09T15:27:11Z 2008-10-09T16:08:02Z <p>Here you go:</p> <pre><code>// A signed fixed-point 16:16 class class FixedPoint_16_16 { short intPart; unsigned short fracPart; public: FixedPoint_16_16(double d) { *this = d; // calls operator= } FixedPoint_16_16&amp; operator=(double d) { intPart = static_cast&lt;short&gt;(d); fracPart = static_cast&lt;unsigned short&gt; (numeric_limits&lt;unsigned short&gt; + 1.0)*d); return *this; } // Other operators can be defined here }; </code></pre> <p><strong>EDIT:</strong> Here's a more general class based on anothercommon way to deal with fixed-point numbers (and which KPexEA pointed out):</p> <pre><code>template &lt;class BaseType, size_t FracDigits&gt; class fixed_point { const static BaseType factor = 1 &lt;&lt; FracDigits; DataType data; public: fixed_point(double d) { *this = d; // calls operator= } fixed_point&amp; operator=(double d) { data = static_cast&lt;short&gt;(d*factor); return *this; } BaseType raw_data() const { return data; } // Other operators can be defined here }; fixed_point&lt;int, 8&gt; fp1; // Will be signed 24:8 (if int is 32-bits) fixed_point&lt;unsigned int, 16&gt; fp1; // Will be unsigned 16:16 (if int is 32-bits) </code></pre> http://stackoverflow.com/questions/178734/what-do-you-consider-to-be-the-most-promising-open-source-project-in-the-long-ter/178801#178801 4 Answer by Kevin for What do you consider to be the most promising Open Source project in the long term? Kevin 2008-10-07T14:45:55Z 2008-10-07T14:45:55Z <p>GCC. (The whole collection -- not just the C compiler)</p> <p>Everyone needs something to build their apps with on Linux (and many other OSes).</p> http://stackoverflow.com/questions/178734/what-do-you-consider-to-be-the-most-promising-open-source-project-in-the-long-ter/178748#178748 11 Answer by Kevin for What do you consider to be the most promising Open Source project in the long term? Kevin 2008-10-07T14:36:34Z 2008-10-07T14:36:34Z <p>Linux.</p> <p>Even if it never takes over the desktop environment, it still will dominate in many server and multi-processor computing tasks.</p> http://stackoverflow.com/questions/178572/what-is-the-best-format-for-a-customer-number-order-number/178706#178706 5 Answer by Kevin for What is the best format for a customer number, order number? Kevin 2008-10-07T14:29:26Z 2008-10-07T14:29:26Z <p>I would have my order numbers follow this format:</p> <pre><code>ddmmyyyy-####-#### </code></pre> <p>Where ####-#### resets to zero at the beginning of every day. This makes it very easy to correlate orders with the date it was placed.</p> <p>For customer IDs, I would mix capital letters and numbers, but as Michael said avoid commonly mistaken letters (0,o,L,1,5,s). This will give you 30 characters to deal with. If you use 20 characters, that will give you almost a 64 bit range of customer IDs -- pretty good for security. Make sure you use a secure random number generator when generating ID. As for how you display the format, it should be the following:</p> <pre><code>####-####-####-####-#### </code></pre> <p>As Michael said again, make sure your system can deal with dashes, spaces, no spaces, or no dashes. (It should just strip all those characters from the input before validation.)</p> <p>I hope that helps!</p> http://stackoverflow.com/questions/177437/const-static/177443#177443 4 Answer by Kevin for const static Kevin 2008-10-07T07:02:14Z 2008-10-07T07:07:31Z <p>It's missing an 'int'. It should be:</p> <pre><code>const static int foo = 42; </code></pre> <p>In C and C++, it declares an integer constant with local file scope of value 42. </p> <p>Why 42? If you don't already know (and it's hard to believe you don't), it's a refernce to the <a href="http://en.wikipedia.org/wiki/Answer_to_Life,_the_Universe,_and_Everything" rel="nofollow"><strong>Answer to Life, the Universe, and Everything</strong></a>.</p> http://stackoverflow.com/questions/174356/ways-to-assert-expressions-at-build-time-in-c/174441#174441 11 Answer by Kevin for Ways to ASSERT expressions at build time in C Kevin 2008-10-06T14:15:32Z 2008-10-07T06:47:20Z <p><strong>NEW ANSWER </strong>:</p> <p>In my original answer (below), I had to have two different macros to support assertions in a function scope and at the global scope. I wondered if it was possible to come up with a single solution that would work in both scopes.</p> <p>I was able to find a solution that worked for Visual Studio and Comeau compilers using extern character arrays. But I was able to find a more complex solution that works for GCC. But GCC's solution doesn't work for Visual Studio. :( But adding a '#ifdef __ GNUC __', it's easy to choose the right set of macros for a given compiler.</p> <p><strong>Solution:</strong></p> <pre><code>#ifdef __GNUC__ #define STATIC_ASSERT_HELPER(expr, msg) \ (!!sizeof \ (struct { unsigned int STATIC_ASSERTION__##msg: (expr) ? 1 : -1; })) #define STATIC_ASSERT(expr, msg) \ extern int (*assert_function__(void)) [STATIC_ASSERT_HELPER(expr, msg)] #else #define STATIC_ASSERT(expr, msg) \ extern char STATIC_ASSERTION__##msg[1]; \ extern char STATIC_ASSERTION__##msg[(expr)?1:2] #endif /* #ifdef __GNUC__ */ </code></pre> <p>Here are the error messages reported for "*STATIC_ASSERT(1==1, test_message);*" at line 22 of test.c:</p> <p><strong>GCC:</strong></p> <pre><code>line 22: error: negative width in bit-field `STATIC_ASSERTION__test_message' </code></pre> <p><strong>Visual Studio:</strong></p> <pre><code>test.c(22) : error C2369: 'STATIC_ASSERTION__test_message' : redefinition; different subscripts test.c(22) : see declaration of 'STATIC_ASSERTION__test_message' </code></pre> <p><strong>Comeau:</strong></p> <pre><code>line 22: error: declaration is incompatible with "char STATIC_ASSERTION__test_message[1]" (declared at line 22) </code></pre> <p><p>&nbsp;<br>&nbsp;<br></p> <p><strong>ORIGINAL ANSWER </strong>:</p> <p>I do something very similar to what Checkers does. But I include a message that'll show up in many compilers:</p> <pre><code>#define STATIC_ASSERT(expr, msg) \ { \ char STATIC_ASSERTION__##msg[(expr)?1:-1]; \ (void)STATIC_ASSERTION__##msg[0]; \ } </code></pre> <p>And for doing something at the global scope (outside a function) use this:</p> <pre><code>#define GLOBAL_STATIC_ASSERT(expr, msg) \ extern char STATIC_ASSERTION__##msg[1]; \ extern char STATIC_ASSERTION__##msg[(expr)?1:2] </code></pre> http://stackoverflow.com/questions/175651/worst-meeting-you-had-to-participate-in/175667#175667 0 Answer by Kevin for Worst meeting you had to participate in? Kevin 2008-10-06T18:49:43Z 2008-10-06T18:49:43Z <p>A customer's engineer in a meeting got angry at me and yelled "I've been in this industry for over 20 years, and I've never seen it done this way". His manager who was also in the meeting took him out of the room and when they came back he was quiet for the rest of the meeting.</p> http://stackoverflow.com/questions/172793/good-dynamic-programing-language-for-net-recommendation/172817#172817 6 Answer by Kevin for Good dynamic programing language for .net recommendation Kevin 2008-10-05T23:13:30Z 2008-10-06T15:32:19Z <p>I'd still use <a href="http://boo.codehaus.org/" rel="nofollow"><strong>Boo</strong></a>. I'm not sure why you believe Boo has been halted. Development sometimes seems slow, but there are multiple people currently working on bug fixes as demonstrated by <a href="http://jira.codehaus.org/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?&amp;pid=10671&amp;resolution=1&amp;status=5&amp;status=6&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;tempMax=1000" rel="nofollow"><strong>this list of recently fixed issues (bugs)</strong></a>.</p> <p>For those unfamiliar with Boo, it's very similar to Python, but includes things that Python does not (like <a href="http://boo.codehaus.org/String+Interpolation" rel="nofollow"><strong>string interpolation</strong></a> and <a href="http://boo.codehaus.org/Syntactic+Macros" rel="nofollow"><strong>syntatic macros</strong></a>). You can compile Boo programs or use Boo through the "Boo Interactive Shell" <em>booish</em>.</p> <p>By the way, I didn't like IronPython either when I looked at it a couple years ago. To me it looked like a straight port of Python to the CLI, but as far as I could tell it did not include new features typical .NET development requires.</p> <p><strong>EDIT</strong>: IronPython does seem to have progressed since I first looked at it (thanks for Curt pointing this out). However I have not bothered to look at IronPython again since I found Boo.</p> http://stackoverflow.com/questions/173374/how-do-you-deal-with-large-dependencies-in-boost 4 How do you deal with large dependencies in Boost? Kevin 2008-10-06T06:42:48Z 2008-10-06T07:06:58Z <p>Boost is a very large library with many inter-dependencies -- which also takes a long time to compile (which for me slows down our <a href="http://cruisecontrol.sourceforge.net/" rel="nofollow"><strong>CruiseControl</strong></a> response time).</p> <p>The only parts of boost I use are boost::regex and boost::format.</p> <p>Is there an easy way to extract only the parts of boost necessary for a particular boost sub-library to make compilations faster?</p> <p>EDIT: To answer the question about why we're re-building boost...</p> <ol> <li>Parsing the boost header files still takes a long time. I suspect if we could extract only what we need, parsing would happen faster too.</li> <li>Our CruiseControl setup builds everything from scratch. This also makes it easier if we update the version of boost we're using. But I will investigate to see if we can change our build process to see if our build machine can build boost when changes occur and commit those changes to SVN. (My company has a policy that everything that goes out the door must be built on the "build machine".)</li> </ol> http://stackoverflow.com/questions/171917/state-of-memset-functionality-in-c-with-modern-compilers/172843#172843 2 Answer by Kevin for State of "memset" functionality in C++ with modern compilers Kevin 2008-10-05T23:33:04Z 2008-10-05T23:33:04Z <p>If you have to allocate your memory as well as initialize it, I would:</p> <ul> <li>Use calloc instead of malloc</li> <li>Change as much of my default values to be zero as possible (ex: let my default enumeration value be zero; or if a boolean variable's default value is 'true', store it's inverse value in the structure)</li> </ul> <p>The reason for this is that calloc zero-initializes memory for you. While this will involve the overhead for zeroing memory, most compilers are likely to have this routine highly-optimized -- more optimized that malloc/new with a call to memcpy.</p> http://stackoverflow.com/questions/964806/what-is-a-stringint-and-where-does-it-make-sense-to-use-it/964852#964852 Comment by Kevin on What is a String<int> and where does it make sense to use it ? Kevin 2009-06-08T17:28:38Z 2009-06-08T17:28:38Z Actually, it can make sense -- if you want to create a Unicode-32 string. wchar_t is usually only 16-bits and as such creates a pseudo-Unicode-16 string (I say 'pseudo' because std::basic_string&lt;wchar_t&gt; does not support the idea of Unicode-16 multi-word characters). http://stackoverflow.com/questions/962152/good-application-not-code-documentation-tools-outputting-html-help-files/962562#962562 Comment by Kevin on Good application (not code) documentation tools outputting HTML Help files? Kevin 2009-06-08T05:42:10Z 2009-06-08T05:42:10Z Ahh... I just found an open source WYSIWYG editor that exports to DocBook. It's called Lyx (<a href="http://en.wikipedia.org/wiki/LyX" rel="nofollow">en.wikipedia.org/wiki/LyX</a>). I'm going to give this a try. http://stackoverflow.com/questions/962152/good-application-not-code-documentation-tools-outputting-html-help-files/962562#962562 Comment by Kevin on Good application (not code) documentation tools outputting HTML Help files? Kevin 2009-06-08T05:30:40Z 2009-06-08T05:30:40Z Wow. DocBook is a standard and very flexible format -- able to be transformed into all sorts of other documents. That's good. The other nice thing is that there are multiple editors out there -- that's also good; in case one editor stagnates (or it's vendor goes out of buisness), you can always pick another. As far as WYSIWYG editors for DocBook go though, I've only found closed-source editors. Serna XML Editor offers a decent free version for non-corporate use. The professional version is still a little pricey ($559/seat on sale). Does anyone know of a free WYSIWYG DocBook editor? http://stackoverflow.com/questions/962152/good-application-not-code-documentation-tools-outputting-html-help-files/962159#962159 Comment by Kevin on Good application (not code) documentation tools outputting HTML Help files? Kevin 2009-06-08T05:23:13Z 2009-06-08T05:23:13Z Help &amp; Manual looks very promising. I've got 2 weeks to evaluate it, so I'll take a look. Thanks. http://stackoverflow.com/questions/962132/calling-virtual-functions-inside-constructors/962148#962148 Comment by Kevin on Calling virtual functions inside constructors Kevin 2009-06-07T16:03:08Z 2009-06-07T16:03:08Z I wish I could upvote this 100 times. Doing such things usually indicates flawed design. http://stackoverflow.com/questions/954731/can-smart-pointers-selectively-hide-or-re-direct-function-calls-to-the-objects-th/954788#954788 Comment by Kevin on Can smart pointers selectively hide or re-direct function calls to the objects they are wrapping? Kevin 2009-06-05T08:39:23Z 2009-06-05T08:39:23Z No, I introduced the helper class in order to redirect or redefine the Add() and Release() calls. Returning T* will simply allow the calling of the original Add() and Release() calls. http://stackoverflow.com/questions/954731/can-smart-pointers-selectively-hide-or-re-direct-function-calls-to-the-objects-th/954783#954783 Comment by Kevin on Can smart pointers selectively hide or re-direct function calls to the objects they are wrapping? Kevin 2009-06-05T08:37:24Z 2009-06-05T08:37:24Z No, this doesn't work as I had hoped. If pA-&gt;Release() is uncommented, there is no assertion. The idea was to &quot;redirect&quot; the call to Release(). http://stackoverflow.com/questions/954731/can-smart-pointers-selectively-hide-or-re-direct-function-calls-to-the-objects-th/954778#954778 Comment by Kevin on Can smart pointers selectively hide or re-direct function calls to the objects they are wrapping? Kevin 2009-06-05T08:14:04Z 2009-06-05T08:14:04Z This is my long-term goal. Right now though, we have a lot of legacy code from before the smart pointers were introduced. Unfortunately, we're facing a looming deadline, and I can't implement this solution until some time in the future -- hopefully not some indefinite future. http://stackoverflow.com/questions/712110/a-copyright-license-comment-for-common-utility-apps-while-do-contract-work/712122#712122 Comment by Kevin on A copyright / license comment for common utility apps while do contract work Kevin 2009-04-03T00:26:59Z 2009-04-03T00:26:59Z ... to have the customer claim I could not use the software on future projects without paying them a royalty fee. http://stackoverflow.com/questions/712110/a-copyright-license-comment-for-common-utility-apps-while-do-contract-work/712122#712122 Comment by Kevin on A copyright / license comment for common utility apps while do contract work Kevin 2009-04-03T00:26:18Z 2009-04-03T00:26:18Z Yeah, the files that I'm concerned about right now are pretty simple -- just thin wrappers around OS-specific stuff (such as threading and mutexes). This isn't a library that I'd sell as a stand alone product. It's just convenient to use on projects and I would hate to have the customer ... http://stackoverflow.com/questions/394370/is-it-worth-learning-amd-specific-apis/394373#394373 Comment by Kevin on Is it worth learning AMD-specific APIs? Kevin 2008-12-27T10:20:27Z 2008-12-27T10:20:27Z Getting your B.S. in C.S. in order to get a job programming computers is an &quot;intent and purpose&quot;. Getting your Ph.D. in C.S. to do the same is an &quot;intensive purpose&quot;. ;-) http://stackoverflow.com/questions/394757/is-there-an-ide-for-d-with-integrated-debugger/394759#394759 Comment by Kevin on Is there an IDE for D with integrated debugger? Kevin 2008-12-27T08:05:38Z 2008-12-27T08:05:38Z Poseidon doesn't look like it's being actively developed anymore. In fact, it doesn't seem to have made a new release since I tried it nearly a year ago. At that time, I couldn't get it correctly set up. Perhaps that's because it's still in alpha or pre-alpha (ver .221). http://stackoverflow.com/questions/146850/c-versus-d/250604#250604 Comment by Kevin on C++ versus D Kevin 2008-12-27T06:46:41Z 2008-12-27T06:46:41Z C is not on the decline for systems level programming. Linux, Windows, and OS X are all developed in C. Likewise, many micro-controllers and OSes for micro-controllers are programmed using C. http://stackoverflow.com/questions/362113/how-low-do-you-go-before-something-gets-thread-safe-by-itself/362118#362118 Comment by Kevin on How low do you go before something gets thread-safe by itself? Kevin 2008-12-12T20:21:55Z 2008-12-12T20:21:55Z &gt; &quot;between any two assembly language instructions&quot; Some assembly instructions (like add) must read, modify, then write back to that memory. For multi-core CPUS, even a single assembly instruction can be unsafe. If you can't use mutexes, then you need to use 'cmpxchg' or similar compiler intrinsic. http://stackoverflow.com/questions/361730/vs2008-binary-3x-times-slower-than-vs2005 Comment by Kevin on VS2008 binary 3x times slower than VS2005? Kevin 2008-12-12T03:15:36Z 2008-12-12T03:15:36Z Did you accidentally compile with different options? For example, did you compile for 64-bit Windows rather than 32-bit Windows?