User Shmoopty - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T13:16:07Zhttp://stackoverflow.com/feeds/user/16287http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1850114/why-is-there-so-much-legal-paranoia-surrounding-boost/1850146#18501463Answer by Shmoopty for Why is there so much legal paranoia surrounding Boost?Shmoopty2009-12-04T22:44:23Z2009-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#18454915Answer by Shmoopty for What is uintptr_t data typeShmoopty2009-12-04T07:55:29Z2009-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#18448932Answer by Shmoopty for How to create the notification icon in the right side of the statusbar on blackberry?Shmoopty2009-12-04T04:38:30Z2009-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#18444792Answer by Shmoopty for Building game logic with eventsShmoopty2009-12-04T02:18:05Z2009-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#18243790Answer by Shmoopty for C/C++ library for .wav file encodingShmoopty2009-12-01T06:34:18Z2009-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#18243370Answer by Shmoopty for Boost: what could be the reasons for a crash in boost::slot<>::~slot ?Shmoopty2009-12-01T06:23:11Z2009-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#18141800Answer 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++)Shmoopty2009-11-28T23:55:01Z2009-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#11456352Answer by Shmoopty for difference between global operator and member operatorShmoopty2009-07-17T20:53:24Z2009-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& left, X& right )
{
return left.value == right.value;
};
};
</code></pre>
http://stackoverflow.com/questions/1060039/gtk-detecting-window-resize-from-the-user1GTK detecting window resize from the userShmoopty2009-06-29T19:27:13Z2009-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#12905730Answer by Shmoopty for about compilation error in Visual C++Shmoopty2009-08-17T21:31:12Z2009-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-harmful3smart pointers + "this" considered harmful?Shmoopty2008-12-19T20:45:25Z2009-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-optimized0Detect if C++ binary is optimizedShmoopty2009-07-13T17:54:37Z2009-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-operator4Why does boost::variant not provide operator !=Shmoopty2009-06-25T15:01:41Z2009-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#9678664Answer by Shmoopty for sorting differencesShmoopty2009-06-09T02:13:06Z2009-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#9517591Answer by Shmoopty for Why sizeof() differs on 64bit cpu ?Shmoopty2009-06-04T16:48:44Z2009-06-04T16:48:44Z<p>Because of the padding between the elements.</p>
http://stackoverflow.com/questions/893509/deprecated-notation-for-suns-c-compiler2"Deprecated" notation for Sun's C++ compiler?Shmoopty2009-05-21T15:18:22Z2009-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#93317610Answer by Shmoopty for Using template parameter within a second template (STL container)Shmoopty2009-06-01T00:16:08Z2009-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< std::pair<std::string, uint32_t>, ITEM >::iterator conIter1_;
</code></pre>
<p>to begin with <code>typename</code>, to show that it's a type:</p>
<pre><code>typename std::multimap< std::pair<std::string, uint32_t>, ITEM >::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-syntax1Do template specializations require template<> syntax?Shmoopty2009-06-01T22:22:36Z2009-06-02T06:17:26Z
<p>I have a visitor class resembling this:</p>
<pre><code>struct Visitor
{
template <typename T>
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<></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#9378530Answer by Shmoopty for XNA or OpenGL sphere texture mappingShmoopty2009-06-02T04:02:33Z2009-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#9375311Answer by Shmoopty for "Deprecated" notation for Sun's C++ compiler?Shmoopty2009-06-02T01:07:34Z2009-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#9336933Answer by Shmoopty for Recursive type castingShmoopty2009-06-01T05:54:40Z2009-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<Vec4*>(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<Vec4*>(*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& operator[] ( size_t index ) const
{
return static_cast<Vec4*>(*this)[index];
}
} mat4;
</code></pre>
http://stackoverflow.com/questions/933666/what-are-the-best-data-structure-for-mapping-strings-to-values/933670#9336700Answer by Shmoopty for What are the best data structure for mapping strings to values?Shmoopty2009-06-01T05:36:20Z2009-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#9336371Answer by Shmoopty for Cloud Computing: What does it take to setup a CloudShmoopty2009-06-01T05:16:26Z2009-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#9331513Answer by Shmoopty for boost::regex segfaults when using captureShmoopty2009-05-31T23:55:46Z2009-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-1Answer by Shmoopty for Global settings passed to instance or referenced directly.Shmoopty2009-06-01T03:02:00Z2009-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#9333621Answer by Shmoopty for convert .dll.a to dllShmoopty2009-06-01T02:25:21Z2009-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#9331453Answer by Shmoopty for What's a good lightweight programming language that compiles to native windows code?Shmoopty2009-05-31T23:50:33Z2009-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#9330157Answer by Shmoopty for Using Pointer Returned from C Library in C++Shmoopty2009-05-31T22:20:43Z2009-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#9330002Answer by Shmoopty for How to partition a problem into smaller understandable portions?Shmoopty2009-05-31T22:15:51Z2009-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#9290085Answer by Shmoopty for Nested functions are not allowed but why nested function prototypes are allowed? [C++]Shmoopty2009-05-30T04:35:50Z2009-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-loopComment by Shmoopty on Technical non-terminating condition in a loopShmoopty2009-12-05T19:05:07Z2009-12-05T19:05:07ZYou are effectively asking if "it matters" 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#1850146Comment by Shmoopty on Why is there so much legal paranoia surrounding Boost?Shmoopty2009-12-05T01:52:24Z2009-12-05T01:52:24ZThe 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#1850146Comment by Shmoopty on Why is there so much legal paranoia surrounding Boost?Shmoopty2009-12-04T22:55:47Z2009-12-04T22:55:47ZNow you're thinking like a lawyer. :)http://stackoverflow.com/questions/1848312/how-can-i-store-different-objects-in-a-single-listComment by Shmoopty on How can I store different objects in a single listShmoopty2009-12-04T17:13:54Z2009-12-04T17:13:54ZThis 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#1845491Comment by Shmoopty on What is uintptr_t data typeShmoopty2009-12-04T17:02:27Z2009-12-04T17:02:27Z@MSalters: Thank you. Edited.http://stackoverflow.com/questions/1845482/what-is-uintptrt-data-type/1845491#1845491Comment by Shmoopty on What is uintptr_t data typeShmoopty2009-12-04T17:00:30Z2009-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-boostslotslotComment by Shmoopty on Boost: what could be the reasons for a crash in boost::slot<>::~slot ?Shmoopty2009-12-01T16:14:51Z2009-12-01T16:14:51ZIs 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-imageComment by Shmoopty on How to recognize rectangles in this image?Shmoopty2009-11-30T02:22:15Z2009-11-30T02:22:15ZYour 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#1659563Comment by Shmoopty on 32-bit to 16-bit Floating Point ConversionShmoopty2009-11-02T08:31:16Z2009-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-cComment by Shmoopty on Can you give an example of stack overflow in C++?Shmoopty2009-11-01T16:58:10Z2009-11-01T16:58:10ZWhy isn't a trivial case an acceptable answer?http://stackoverflow.com/questions/1655960/what-are-the-most-surprising-elements-of-the-c-standard/1655975#1655975Comment by Shmoopty on What are the most surprising elements of the C++ standard?Shmoopty2009-11-01T16:51:11Z2009-11-01T16:51:11ZActually, it is illegal for storage specifiers like "extern" 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 "extern" and "unsigned".http://stackoverflow.com/questions/1655904/c-convert-pointer-string-to-integer/1656023#1656023Comment by Shmoopty on c++ - convert pointer string to integerShmoopty2009-11-01T00:30:58Z2009-11-01T00:30:58Z"Better to use strtol" ... why?http://stackoverflow.com/questions/1653605/is-including-c-source-files-an-approved-method/1653611#1653611Comment by Shmoopty on Is including C++ source files an approved method ?Shmoopty2009-10-31T22:52:42Z2009-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-syntaxComment by Shmoopty on Code of all C++ syntaxShmoopty2009-10-20T03:02:40Z2009-10-20T03:02:40ZWhile phrased poorly, I suspect the author wanted something along the lines of "all keywords being used" or "all concepts from a typical introductory textbook".http://stackoverflow.com/questions/1552354/problem-overloading-the-operator-in-c/1552365#1552365Comment by Shmoopty on Problem overloading the < operator in C++Shmoopty2009-10-12T05:12:56Z2009-10-12T05:12:56ZThis 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.