User Shmoopty - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T13:16:07Z http://stackoverflow.com/feeds/user/16287 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1850114/why-is-there-so-much-legal-paranoia-surrounding-boost/1850146#1850146 3 Answer by Shmoopty for Why is there so much legal paranoia surrounding Boost? Shmoopty 2009-12-04T22:44:23Z 2009-12-04T22:44:23Z <p>I have worked for such a company.</p> <p>The hard line was that boost is used without a formal business agreement, therefore if boost does something wrong there is no liability.</p> <p>If, for example, I were able to prove that boost stole intellectual property from me, I could sue any company using boost libraries.</p> http://stackoverflow.com/questions/1845482/what-is-uintptrt-data-type/1845491#1845491 5 Answer by Shmoopty for What is uintptr_t data type Shmoopty 2009-12-04T07:55:29Z 2009-12-04T17:03:14Z <p>It is an unsigned int that is guaranteed to be the same size as a pointer. Its definition is not required by the standard.</p> <p>A common reason to want an integer type that matches a pointer's size is to perform integer-specific operations on a pointer.</p> http://stackoverflow.com/questions/1844828/how-to-create-the-notification-icon-in-the-right-side-of-the-statusbar-on-blackbe/1844893#1844893 2 Answer by Shmoopty for How to create the notification icon in the right side of the statusbar on blackberry? Shmoopty 2009-12-04T04:38:30Z 2009-12-04T04:38:30Z <p>I believe that is dependent on the the theme that the blackberry is using.</p> http://stackoverflow.com/questions/1844213/building-game-logic-with-events/1844479#1844479 2 Answer by Shmoopty for Building game logic with events Shmoopty 2009-12-04T02:18:05Z 2009-12-04T02:18:05Z <p>It sounds like you want to use a signal library, such as <a href="http://www.boost.org/doc/libs/1%5F41%5F0/doc/html/signals.html" rel="nofollow">boost::signals</a> or <a href="http://libsigc.sourceforge.net/" rel="nofollow">sigc</a>.</p> <p>Either of those libraries will allow any of your objects to know when an event such as a click happens.</p> <p>They can also automate the cleanup when either the signaling object or a listening object is destroyed.</p> <p>Good luck!</p> http://stackoverflow.com/questions/1819791/c-c-library-for-wav-file-encoding/1824379#1824379 0 Answer by Shmoopty for C/C++ library for .wav file encoding Shmoopty 2009-12-01T06:34:18Z 2009-12-01T06:34:18Z <p>A wav file is rather simple. It has a 44 byte header, followed by the sound data, in integer format.</p> <p>The header is described in detail <a href="https://ccrma.stanford.edu/courses/422/projects/WaveFormat/" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1823605/boost-what-could-be-the-reasons-for-a-crash-in-boostslotslot/1824337#1824337 0 Answer by Shmoopty for Boost: what could be the reasons for a crash in boost::slot<>::~slot ? Shmoopty 2009-12-01T06:23:11Z 2009-12-01T06:23:11Z <p>It sounds like your <code>GConsole</code> class is not derived from <code>boost::trackable</code>.</p> <p>When a signal is bound to a member function, it expects the member's object to exist, always.</p> <p>You can either explicitly disconnect signals when member function's owner is destroyed, or you can derive the object from <code>boost::trackable</code>, which will do the maintenance automatically when the object is destroyed.</p> http://stackoverflow.com/questions/1813860/is-there-any-significant-difference-between-nesting-a-while-loop-in-a-while-loop/1814180#1814180 0 Answer by Shmoopty for Is there any significant difference between nesting a while loop in a while loop and nesting an if-else loop in a while loop? (C++) Shmoopty 2009-11-28T23:55:01Z 2009-11-28T23:55:01Z <p>The logic of those two is <strong>absolutely different</strong>.</p> <p>If <code>some_loop_cont_val</code> is true and *action pre_x* makes <code>some_loop_cont_val</code> false, <strong>only your first example will <em>do action x</em></strong></p> http://stackoverflow.com/questions/1145022/difference-between-global-operator-and-member-operator/1145635#1145635 2 Answer by Shmoopty for difference between global operator and member operator Shmoopty 2009-07-17T20:53:24Z 2009-11-18T21:14:53Z <p>Your smartest option is to make it a <strong>friend function</strong>.</p> <p>As JaredPar mentions, the global implementation cannot access protected and private class members, but there's a problem with the member function too.</p> <p>C++ will allow implicit conversions of function parameters, but not an implicit conversion of <strong><code>this</code></strong>.</p> <p>If types exist that can be converted to your X class:</p> <pre><code>class Y { public: operator X(); // Y objects may be converted to X }; X x1, x2; Y y1, y2; </code></pre> <p>Only some of the following expressions will compile with a member function.</p> <pre><code>x1 == x2; // Compiles with both implementations x1 == y1; // Compiles with both implementations y1 == x1; // ERROR! Member function can't convert this to type X y1 == y2; // ERROR! Member function can't convert this to type X </code></pre> <p>The solution, to get the best of both worlds, is to implement this as a friend:</p> <pre><code>class X { int value; public: friend bool operator==( X&amp; left, X&amp; right ) { return left.value == right.value; }; }; </code></pre> http://stackoverflow.com/questions/1060039/gtk-detecting-window-resize-from-the-user 1 GTK detecting window resize from the user Shmoopty 2009-06-29T19:27:13Z 2009-08-25T22:20:28Z <p>In GTK (or pygtk or gtkmm...)</p> <p>How can I detect that an application window has been <strong>manually</strong> resized by the user, as is typically done by dragging the window's edge?</p> <p>I need to find a way to differentiate manual resizes from resizes that originate from gtk, such as changes in window content.</p> http://stackoverflow.com/questions/1288847/about-compilation-error-in-visual-c/1290573#1290573 0 Answer by Shmoopty for about compilation error in Visual C++ Shmoopty 2009-08-17T21:31:12Z 2009-08-17T21:31:12Z <p>It sounds like you have an <code>#include</code> directive inside of a <code>namespace</code> somewhere.</p> http://stackoverflow.com/questions/382166/smart-pointers-this-considered-harmful 3 smart pointers + "this" considered harmful? Shmoopty 2008-12-19T20:45:25Z 2009-07-17T20:11:54Z <p>In a C++ project that uses smart pointers, such as <code>boost::shared_ptr</code>, what is a good design philosophy regarding use of "<strong><code>this</code></strong>"?</p> <p>Consider that:</p> <ul> <li><p>It's dangerous to store the raw pointer contained in any smart pointer for later use. You've given up control of object deletion and trust the smart pointer to do it at the right time.</p></li> <li><p>Non-static class members intrinsically use a <strong><code>this</code></strong> pointer. It's a raw pointer and that can't be changed.</p></li> </ul> <p>If I ever store <code>this</code> in another variable or pass it to another function which could potentially store it for later or bind it in a callback, I'm creating bugs that are introduced when anyone decides to make a shared pointer to my class.</p> <p><strong>Given that, when is it ever appropriate for me to explicitly use a <code>this</code> pointer?</strong> Are there design paradigms that can prevent bugs related to this?</p> http://stackoverflow.com/questions/1121032/detect-if-c-binary-is-optimized 0 Detect if C++ binary is optimized Shmoopty 2009-07-13T17:54:37Z 2009-07-14T20:07:22Z <p>Is there a flag or other reliable method to detect if a compiled C++ binary was compiled with optimizations?</p> <p>I'm okay with compiler-specific solutions.</p> <p><hr /></p> <p><strong>Edit:</strong> This is for a build deployment system, which could accidentally deploy binaries that were not built properly. A water-tight solution is unlikely, but it will save some pain (and money) if this can be detected some of the time.</p> <p>The compiler will often be gcc, sometimes sun, and if there's a MSVC solution, I don't want to rule that out for the benefit of the community.</p> http://stackoverflow.com/questions/1044448/why-does-boostvariant-not-provide-operator 4 Why does boost::variant not provide operator != Shmoopty 2009-06-25T15:01:41Z 2009-07-09T20:27:07Z <p>Given two identical <code>boost::variant</code> types <strong><code>a</code></strong> and <strong><code>b</code></strong>, the expression <strong><code>( a == b )</code></strong> is permitted.</p> <p>However <strong><code>( a != b )</code></strong> seems to be undefined. Why is this?</p> http://stackoverflow.com/questions/967859/sorting-differences/967866#967866 4 Answer by Shmoopty for sorting differences Shmoopty 2009-06-09T02:13:06Z 2009-06-09T02:13:06Z <p>Wikipedia gives good <a href="http://en.wikipedia.org/wiki/Sorting%5Falgorithm#Summaries%5Fof%5Fpopular%5Fsorting%5Falgorithms" rel="nofollow">brief descriptions</a> of the popular sorting algorithms, as well as <a href="http://en.wikipedia.org/wiki/Sorting%5Falgorithm#Comparison%5Fof%5Falgorithms" rel="nofollow">comparisons of their speeds</a>.</p> http://stackoverflow.com/questions/951746/why-sizeof-differs-on-64bit-cpu/951759#951759 1 Answer by Shmoopty for Why sizeof() differs on 64bit cpu ? Shmoopty 2009-06-04T16:48:44Z 2009-06-04T16:48:44Z <p>Because of the padding between the elements.</p> http://stackoverflow.com/questions/893509/deprecated-notation-for-suns-c-compiler 2 "Deprecated" notation for Sun's C++ compiler? Shmoopty 2009-05-21T15:18:22Z 2009-06-03T05:43:06Z <p>Does the Sun compiler have a notation to mark functions as deprecated, like GCC's <code>__attribute__ ((deprecated))</code> or MSVC's <code>__declspec(deprecated)</code>?</p> http://stackoverflow.com/questions/933172/using-template-parameter-within-a-second-template-stl-container/933176#933176 10 Answer by Shmoopty for Using template parameter within a second template (STL container) Shmoopty 2009-06-01T00:16:08Z 2009-06-03T05:29:03Z <p>This is a common stumbling block in C++. Because <code>ITEM</code> is unknown when that class is parsed, the compiler can't deduce that your iterator really is a type.</p> <p>Change this line:</p> <pre><code>std::multimap&lt; std::pair&lt;std::string, uint32_t&gt;, ITEM &gt;::iterator conIter1_; </code></pre> <p>to begin with <code>typename</code>, to show that it's a type:</p> <pre><code>typename std::multimap&lt; std::pair&lt;std::string, uint32_t&gt;, ITEM &gt;::iterator conIter1_; </code></pre> <p>You are creating a type that needs a template parameter which itself is already a template parameter. That is when you need to use <strong><code>typename</code></strong>.</p> http://stackoverflow.com/questions/937107/do-template-specializations-require-template-syntax 1 Do template specializations require template<> syntax? Shmoopty 2009-06-01T22:22:36Z 2009-06-02T06:17:26Z <p>I have a visitor class resembling this:</p> <pre><code>struct Visitor { template &lt;typename T&gt; void operator()(T t) { ... } void operator()(bool b) { ... } }; </code></pre> <p>Clearly, <strong><code>operator()(bool b)</code></strong> is intended to be a specialization of the preceding template function.</p> <p>However, it doesn't have the <strong><code>template&lt;&gt;</code></strong> syntax that I'm used to seeing before it, declaring this as a template specialization. But it does compile.</p> <p>Is this safe? Is this correct?</p> http://stackoverflow.com/questions/937831/xna-or-opengl-sphere-texture-mapping/937853#937853 0 Answer by Shmoopty for XNA or OpenGL sphere texture mapping Shmoopty 2009-06-02T04:02:33Z 2009-06-02T04:02:33Z <p><a href="http://msdn.microsoft.com/en-us/library/microsoft.windowsmobile.directx.direct3d.wrapcoordinates%28VS.80%29.aspx" rel="nofollow">WrapCoordinates.Zero</a> effectively signifies that the texture is wrapped horizontally, not vertically, from the perspective of the texture. </p> http://stackoverflow.com/questions/893509/deprecated-notation-for-suns-c-compiler/937531#937531 1 Answer by Shmoopty for "Deprecated" notation for Sun's C++ compiler? Shmoopty 2009-06-02T01:07:34Z 2009-06-02T01:07:34Z <p>It seems that one solution that would work on <strong>any</strong> compiler that supports <code>#warning</code> would be:</p> <ul> <li>Copy the header in question to a new, promoted header name</li> <li>Remove the deprecated functions from the promoted header file</li> <li>Add to the old header file: <strong><code>#warning "This header is deprecated. Please use {new header name}"</code></strong></li> </ul> http://stackoverflow.com/questions/933680/recursive-type-casting/933693#933693 3 Answer by Shmoopty for Recursive type casting Shmoopty 2009-06-01T05:54:40Z 2009-06-01T15:32:43Z <p>C++ can perform automatic conversions, but by the standard will not perform two consecutive automatic conversions.</p> <p>It was deemed too conducive to unintentional bugs and ambiguities.</p> <p>Three options that may work for you:</p> <p><strong>Explicitly perform the first cast yourself when you want a <code>float*</code> from a matrix.</strong></p> <pre><code>FuncThatWantsFloatPointer( *static_cast&lt;Vec4*&gt;(MyMatrix) ); </code></pre> <p><strong>Implement a direct converstion to <code>float*</code> in your matrix class.</strong></p> <pre><code>typedef struct mat4 { ... operator const float* () const { return *static_cast&lt;Vec4*&gt;(*this); } } mat4; </code></pre> <p><strong>Implement <code>operator[]</code> in your matrix and vector classes, if you like using square bracket notation</strong></p> <pre><code>typedef struct mat4 { ... const vec4&amp; operator[] ( size_t index ) const { return static_cast&lt;Vec4*&gt;(*this)[index]; } } mat4; </code></pre> http://stackoverflow.com/questions/933666/what-are-the-best-data-structure-for-mapping-strings-to-values/933670#933670 0 Answer by Shmoopty for What are the best data structure for mapping strings to values? Shmoopty 2009-06-01T05:36:20Z 2009-06-01T06:17:01Z <p>A red-black tree would be the most natural choice.</p> <p>A hash table will get you speed at the cost of memory.</p> <p>You can also reach a balance between the two by creating a red-black tree of the string's hash value, as it's safe to assume the hash numbers can be compared faster than the actual strings. This would be particularly useful when the strings (and therefore the hashes) can be calculated in advance.</p> http://stackoverflow.com/questions/933624/cloud-computing-what-does-it-take-to-setup-a-cloud/933637#933637 1 Answer by Shmoopty for Cloud Computing: What does it take to setup a Cloud Shmoopty 2009-06-01T05:16:26Z 2009-06-01T05:16:26Z <p>"Cloud" is an often misunderstood term.</p> <p>Any computer doing any work on the internet qualifies as cloud. It's simply a metaphor for computer work done "somewhere else".</p> <p>Perhaps you meant <a href="http://en.wikipedia.org/wiki/Distributed%5Fcomputing" rel="nofollow">distributed computing</a>?</p> http://stackoverflow.com/questions/933143/boostregex-segfaults-when-using-capture/933151#933151 3 Answer by Shmoopty for boost::regex segfaults when using capture Shmoopty 2009-05-31T23:55:46Z 2009-06-01T03:35:37Z <p>boost::regex is one of the few components of boost that doesn't exist solely in header files...there is a library module.</p> <p>It is likely that the library you are using was built with different settings than your application.</p> <p><strong>Edit:</strong> Found an example scenario with <a href="https://svn.boost.org/trac/boost/ticket/2535" rel="nofollow">this known boost bug</a>, where boost must be built with the same <code>-malign-double</code> flag as your application.</p> <p>This is one of several possible scenarios where your boost library will not have binary compatibility with your application.</p> http://stackoverflow.com/questions/933411/global-settings-passed-to-instance-or-referenced-directly/933417#933417 -1 Answer by Shmoopty for Global settings passed to instance or referenced directly. Shmoopty 2009-06-01T03:02:00Z 2009-06-01T03:02:00Z <p>While the <a href="http://en.wikipedia.org/wiki/Singleton%5Fpattern" rel="nofollow">Singleton Pattern</a> is maligned at times, this is a situation where it sounds appropriate.</p> http://stackoverflow.com/questions/933074/convert-dll-a-to-dll/933362#933362 1 Answer by Shmoopty for convert .dll.a to dll Shmoopty 2009-06-01T02:25:21Z 2009-06-01T02:25:21Z <p>You can not.</p> <p>The dot-a files you have were compiled for a Unix system, and can not be directly converted to a Windows format.</p> <p>You will need to find a windows-native build or the source code to build it yourself.</p> http://stackoverflow.com/questions/933129/whats-a-good-lightweight-programming-language-that-compiles-to-native-windows-co/933145#933145 3 Answer by Shmoopty for What's a good lightweight programming language that compiles to native windows code? Shmoopty 2009-05-31T23:50:33Z 2009-05-31T23:58:41Z <p>The Windows API itself is in C.</p> <p>If C is not lightweight enough, you could consider C++/MFC which is good for making simple GUI programs with minimal coding on your part.</p> http://stackoverflow.com/questions/933003/using-pointer-returned-from-c-library-in-c/933015#933015 7 Answer by Shmoopty for Using Pointer Returned from C Library in C++ Shmoopty 2009-05-31T22:20:43Z 2009-05-31T22:20:43Z <p>You are passing a copy of the pointer, which is why the change in the C library isn't seen in your C++ code.</p> <p>Since you're already modifying the library, you should have that C function take a <strong>pointer to a pointer</strong>.</p> <pre><code>LName(....., OutType** Out) *Out=SaveH(...); </code></pre> <p>Now you'll be passing the address of the C++ pointer, so your C code will be modifying the same original pointer. </p> http://stackoverflow.com/questions/932966/how-to-partition-a-problem-into-smaller-understandable-portions/933000#933000 2 Answer by Shmoopty for How to partition a problem into smaller understandable portions? Shmoopty 2009-05-31T22:15:51Z 2009-05-31T22:15:51Z <p>It's useful to approach problem decomposition both top-down and bottom-up.</p> <p>If you're having trouble splitting a big problem into two or more smaller problems, try to think of the smallest possible problems that will need to be solved. Once those are handled, you may start to see ways to combine them into larger problems as you approach your original large problem. </p> http://stackoverflow.com/questions/928992/nested-functions-are-not-allowed-but-why-nested-function-prototypes-are-allowed/929008#929008 5 Answer by Shmoopty for Nested functions are not allowed but why nested function prototypes are allowed? [C++] Shmoopty 2009-05-30T04:35:50Z 2009-05-30T04:45:29Z <p>This is a convention from C -- like many -- which C++ has adopted.</p> <p>The ability to declare a function inside another function in C is a decision that most programmers probably consider regrettable and unnecessary. Particularly with modern OOP design where function definitions are comparatively smaller than they are in C.</p> <p>If you would like to have functions that only exist in the scope of another function, two options are <a href="http://www.boost.org/doc/libs/1%5F39%5F0/doc/html/lambda.html" rel="nofollow">boost::lambda</a> and <a href="http://en.wikipedia.org/wiki/C%2B%2B0x#Lambda%5Ffunctions%5Fand%5Fexpressions" rel="nofollow">C++1x lambda</a>.</p> http://stackoverflow.com/questions/1853085/technical-non-terminating-condition-in-a-loop Comment by Shmoopty on Technical non-terminating condition in a loop Shmoopty 2009-12-05T19:05:07Z 2009-12-05T19:05:07Z You are effectively asking if &quot;it matters&quot; if your particular program fails on rare occasion. I don't think this community would know that better than you do. http://stackoverflow.com/questions/1850114/why-is-there-so-much-legal-paranoia-surrounding-boost/1850146#1850146 Comment by Shmoopty on Why is there so much legal paranoia surrounding Boost? Shmoopty 2009-12-05T01:52:24Z 2009-12-05T01:52:24Z The company sold the software at box retailers. All the compiled code in the box had to be purchased, or written in-house. So no FOSS in the commercial product, regardless of license. http://stackoverflow.com/questions/1850114/why-is-there-so-much-legal-paranoia-surrounding-boost/1850146#1850146 Comment by Shmoopty on Why is there so much legal paranoia surrounding Boost? Shmoopty 2009-12-04T22:55:47Z 2009-12-04T22:55:47Z Now you're thinking like a lawyer. :) http://stackoverflow.com/questions/1848312/how-can-i-store-different-objects-in-a-single-list Comment by Shmoopty on How can I store different objects in a single list Shmoopty 2009-12-04T17:13:54Z 2009-12-04T17:13:54Z This is an architecture problem more than a syntax one. You are creating a list of objects that <i>may or may not have a length</i>. What you haven't discussed in your question is how or why you know when a particular entity is going to have a length. http://stackoverflow.com/questions/1845482/what-is-uintptrt-data-type/1845491#1845491 Comment by Shmoopty on What is uintptr_t data type Shmoopty 2009-12-04T17:02:27Z 2009-12-04T17:02:27Z @MSalters: Thank you. Edited. http://stackoverflow.com/questions/1845482/what-is-uintptrt-data-type/1845491#1845491 Comment by Shmoopty on What is uintptr_t data type Shmoopty 2009-12-04T17:00:30Z 2009-12-04T17:00:30Z @jalf: For difference, yes, but for <i>distance</i>, you would want an unsigned type. http://stackoverflow.com/questions/1823605/boost-what-could-be-the-reasons-for-a-crash-in-boostslotslot Comment by Shmoopty on Boost: what could be the reasons for a crash in boost::slot<>::~slot ? Shmoopty 2009-12-01T16:14:51Z 2009-12-01T16:14:51Z Is GConsole::init() small enough to add to this question? If it's large, how small can you make it and still get this error? http://stackoverflow.com/questions/1817442/how-to-recognize-rectangles-in-this-image Comment by Shmoopty on How to recognize rectangles in this image? Shmoopty 2009-11-30T02:22:15Z 2009-11-30T02:22:15Z Your sample image is helpful in that it brings up an important question. There are many shapes there that approximate rectangles, but are incomplete due to gaps, often at the corners. Are you looking for all perfect rectangles or shapes that mostly approximate rectangles? The later will be more difficult to determine. http://stackoverflow.com/questions/1659440/32-bit-to-16-bit-floating-point-conversion/1659563#1659563 Comment by Shmoopty on 32-bit to 16-bit Floating Point Conversion Shmoopty 2009-11-02T08:31:16Z 2009-11-02T08:31:16Z +1 This will get you <i>much more</i> accuracy than a 16 bit float in almost every case, and with less math and no special cases. A 16-bit IEEE float will only have 10 bits of accuracy and crams half of its possible values in the range (-1, 1) http://stackoverflow.com/questions/1657484/can-you-give-an-example-of-stack-overflow-in-c Comment by Shmoopty on Can you give an example of stack overflow in C++? Shmoopty 2009-11-01T16:58:10Z 2009-11-01T16:58:10Z Why isn't a trivial case an acceptable answer? http://stackoverflow.com/questions/1655960/what-are-the-most-surprising-elements-of-the-c-standard/1655975#1655975 Comment by Shmoopty on What are the most surprising elements of the C++ standard? Shmoopty 2009-11-01T16:51:11Z 2009-11-01T16:51:11Z Actually, it is illegal for storage specifiers like &quot;extern&quot; to appear inside the type specifier. They must appear before or after. Your first example is not valid C++, but it would be if you swapped &quot;extern&quot; and &quot;unsigned&quot;. http://stackoverflow.com/questions/1655904/c-convert-pointer-string-to-integer/1656023#1656023 Comment by Shmoopty on c++ - convert pointer string to integer Shmoopty 2009-11-01T00:30:58Z 2009-11-01T00:30:58Z &quot;Better to use strtol&quot; ... why? http://stackoverflow.com/questions/1653605/is-including-c-source-files-an-approved-method/1653611#1653611 Comment by Shmoopty on Is including C++ source files an approved method ? Shmoopty 2009-10-31T22:52:42Z 2009-10-31T22:52:42Z @alex tingle, Visual C++ can optimize an entire project as a single source file. http://stackoverflow.com/questions/1589932/code-of-all-c-syntax Comment by Shmoopty on Code of all C++ syntax Shmoopty 2009-10-20T03:02:40Z 2009-10-20T03:02:40Z While phrased poorly, I suspect the author wanted something along the lines of &quot;all keywords being used&quot; or &quot;all concepts from a typical introductory textbook&quot;. http://stackoverflow.com/questions/1552354/problem-overloading-the-operator-in-c/1552365#1552365 Comment by Shmoopty on Problem overloading the < operator in C++ Shmoopty 2009-10-12T05:12:56Z 2009-10-12T05:12:56Z This approach is often avoided because if types are convertible to Student, the code will convert the right-side type but not the left-side type. A friend function would behave consistently for both sides.