User rlbond - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T19:51:24Z http://stackoverflow.com/feeds/user/72631 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1924099/what-is-the-meaning-of-the-variable-name-foo/1924196#1924196 0 Answer by rlbond for What is the meaning of the variable name foo? rlbond 2009-12-17T20:00:30Z 2009-12-17T20:00:30Z <p>A <code>foo</code> is basically the same thing as a <code>widget</code>. But <code>widget</code> now has a computer-y meaning, namely some little app that sits on your desktop/website/whatever.</p> <p>A <code>foo</code> is basically a <code>thingy</code>. A <code>bar</code> is a different <code>thingy</code>. They're like the John Doe and Robert Roe of classes or variables.</p> http://stackoverflow.com/questions/1916576/mandatory-use-of-braces/1917319#1917319 2 Answer by rlbond for Mandatory use of braces rlbond 2009-12-16T20:06:23Z 2009-12-16T20:06:23Z <p>I don't buy into your argument. Personally, I don't know anyone who's ever "accidentally" added a second line under an <code>if</code>. I would understand saying that <em>nested</em> <code>if</code> statements should have braces to avoid a dangling else, but as I see it you're enforcing a style due to a fear that, IMO, is misplaced.</p> http://stackoverflow.com/questions/1898212/convert-a-vectorunsigned-char-to-vectorunsigned-short/1898350#1898350 -1 Answer by rlbond for Convert a vector<unsigned char> to vector<unsigned short> rlbond 2009-12-14T00:24:51Z 2009-12-14T00:24:51Z <p>disclaimer: I don't have a compiler right now:</p> <pre><code>vector&lt;unsigned char&gt; vec = getVector(); vector&lt;unsigned short&gt; sv(reinterpret_cast&lt;unsigned short*&gt;(&amp;vec[0]), reinterpret_cast&lt;unsigned short*&gt;(&amp;vec[vec.size()])); </code></pre> http://stackoverflow.com/questions/1891002/how-to-get-started-with-embeddable-scripting 3 How to get started with embeddable scripting? rlbond 2009-12-11T21:32:25Z 2009-12-11T21:48:04Z <p>I am working on a game in C++. I've been told, though, that I should also use an embeddable scripting language like Lua or Angelscript, but to be honest, I have no idea how or why. What advantages would this bring me, over storing all of my data in some sort of text file? How do I get started? I tried to read some Lua examples, but I don't see how it works, or how exactly I am supposed to use it. </p> http://stackoverflow.com/questions/1878470/add-tuple-to-list-of-tuples-in-python 1 Add tuple to list of tuples in Python rlbond 2009-12-10T03:29:54Z 2009-12-10T06:00:00Z <p>I am new to python and don't know the best way to do this.</p> <p>I have a list of tuples which represent points and another list which represents offsets. I need a set of all the combinations that this forms. Here's some code:</p> <pre><code>offsets = [( 0, 0),( 0,-1),( 0, 1),( 1, 0),(-1, 0)] points = [( 1, 5),( 3, 3),( 8, 7)] </code></pre> <p>So my set of combined points should be</p> <pre><code>[( 1, 5),( 1, 4),( 1, 6),( 2, 5),( 0, 5), ( 3, 3),( 3, 2),( 3, 4),( 4, 3),( 2, 3), ( 8, 7),( 8, 6),( 8, 8),( 9, 7),( 7, 7)] </code></pre> <p>I'm not able to use NumPy or any other libraries.</p> http://stackoverflow.com/questions/1870336/what-is-the-complexity-of-matrix-addition/1870387#1870387 3 Answer by rlbond for What is the complexity of matrix addition? rlbond 2009-12-08T22:37:39Z 2009-12-08T22:37:39Z <p>It's O(M*N) for a 2-dimensional matrix with M rows and N columns.</p> <p>Or you can say it's O(L) where L is the total number of elements.</p> http://stackoverflow.com/questions/1823668/is-there-a-way-to-push-a-matlab-workspace-onto-a-stack 2 Is there a way to push a MATLAB workspace onto a stack? rlbond 2009-12-01T02:40:59Z 2009-12-07T05:34:58Z <p>Does anyone know if it's possible to have a stack of workspaces in MATLAB? It would be very convenient, to say the least.</p> <p>I need this for research. We have several scripts which interact in interesting ways. Functions have local variables, but not scripts...</p> http://stackoverflow.com/questions/1854360/which-graph-implementation-is-best/1854374#1854374 0 Answer by rlbond for Which graph implementation is best? rlbond 2009-12-06T04:34:37Z 2009-12-06T04:34:37Z <p>You're missing a common one, edge-matrix representation. You use a 2d array and <code>array[i][j]</code> is the weight between i and j (or 0 if they're not connected).</p> http://stackoverflow.com/questions/1851299/is-it-possible-to-tell-the-branch-predictor-how-likely-it-is-to-follow-the-branch/1851311#1851311 -1 Answer by rlbond for Is it possible to tell the branch predictor how likely it is to follow the branch? rlbond 2009-12-05T06:12:35Z 2009-12-05T06:12:35Z <p>No, because there's no assembly command to let the branch predictor know. Don't worry about it, the branch predictor is pretty smart.</p> <p>Also, obligatory comment about premature optimization and how it's evil.</p> <p>EDIT: Drakosha mentioned some macros for GCC. However, I believe this is a code optimization and actually has nothing to do with branch prediction.</p> http://stackoverflow.com/questions/1847846/pass-by-value-or-reference-to-a-c-constructor-that-needs-to-store-a-copy/1847917#1847917 0 Answer by rlbond for Pass by value or reference, to a C++ constructor that needs to store a copy? rlbond 2009-12-04T16:02:48Z 2009-12-04T16:02:48Z <p>Honestly, for this case, the best option is making your constructor <code>inline</code>, provided <code>bar</code>'s constructor does not throw. Then just pass by reference.</p> <p>Also, as you suspected, your article does not apply here.</p> http://stackoverflow.com/questions/1827858/how-to-mitigate-class-declaration-being-far-from-its-owner-namespace-declaration/1827879#1827879 0 Answer by rlbond for How to mitigate class declaration being far from its owner namespace declaration in a file? rlbond 2009-12-01T18:12:35Z 2009-12-01T18:12:35Z <p>There shouldn't be a problem. Just make sure there are never <code>using</code> statements in any header, and don't have monolithic source files. If it's a big problem, fully qualify your classes.</p> http://stackoverflow.com/questions/1016218/how-does-a-stackless-language-work 10 How does a stackless language work? rlbond 2009-06-19T03:22:14Z 2009-11-30T18:56:10Z <p>I've heard of stackless languages. However I don't have any idea how such a language would be implemented. Can someone explain?</p> http://stackoverflow.com/questions/691719/c-display-stack-trace-on-exception 4 c++ display stack trace on exception rlbond 2009-03-27T22:42:46Z 2009-11-30T18:04:38Z <p>I want to have a way to report the stack trace to the user if an exception is thrown. What is the best way to do this? Does it take huge amounts of extra code?</p> <p>To answer questions:</p> <p>I'd like it to be portable if possible. I want information to pop up, so the user can copy the stack trace and email it to me if an error comes up.</p> http://stackoverflow.com/questions/1817807/does-the-hashchar-function-in-stl-give-1-1-mapping-between-char-and-sizet/1817811#1817811 4 Answer by rlbond for Does the hash<char*> function in STL give 1-1 mapping between char* and size_t ? rlbond 2009-11-30T04:13:48Z 2009-11-30T04:18:58Z <p>By definition, a hash can't be one-to-one due to the pigeonhole principle. I.E., there are 2^32 possible hash values, but far more possible strings. So there must be two strings with the same hash value.</p> <p>Second of all, you are almost certainly causing overflow by multiplying your hash value by 1000, since a hash should use all 32 bits. You are much better off hashing the int and then mixing the hashes. Boost has a <code>hash_combine</code> function: a + 0x9e3779b9 + (b &lt;&lt; 6) + (b >> 2);</p> http://stackoverflow.com/questions/1817691/how-to-use-unorderedset-in-stl/1817736#1817736 1 Answer by rlbond for How to use unordered_set in STL? rlbond 2009-11-30T03:41:15Z 2009-11-30T03:41:15Z <p>First of all, you want <code>std::unordered_map</code> or <code>unordered_set</code>. The requirements are that your class needs <code>operator=</code> (or you need an EqualityCompare class), and you need a hashing class which has <code>operator()</code> which takes your key type as an argument and returns a <code>size_t</code>.</p> http://stackoverflow.com/questions/1817508/is-there-a-way-to-prevent-construction-during-non-compound-operations/1817589#1817589 1 Answer by rlbond for Is there a way to prevent construction during non-compound operations? rlbond 2009-11-30T02:24:57Z 2009-11-30T02:24:57Z <p>Whoa there. Your code is totally inefficient:</p> <pre><code>Vector a = Vector(x, y, z); Vector b = Vector(a, b, c); </code></pre> <p>That's just inefficient. What you want to write is</p> <pre><code>Vector a(x, y, z); Vector b(a, b, c); </code></pre> http://stackoverflow.com/questions/1817442/how-to-recognize-rectangles-in-this-image/1817586#1817586 4 Answer by rlbond for How to recognize rectangles in this image? rlbond 2009-11-30T02:23:19Z 2009-11-30T02:23:19Z <p>I believe you are looking for the <a href="http://en.wikipedia.org/wiki/Hough%5Ftransform" rel="nofollow">generalized Hough transform</a>.</p> http://stackoverflow.com/questions/1801509/speeding-up-self-similarity-in-an-image/1801597#1801597 3 Answer by rlbond for Speeding up self-similarity in an image rlbond 2009-11-26T04:52:05Z 2009-11-26T04:58:40Z <p>Ok, first, this approach is not stable at all. If you add random noise to your image, it will greatly decrease the similarity between the two images. More importantly, from an image processing standpoint, it's not efficient or particularly good. I suggest another approach; for example, using a wavelet-based approach. If you performed a 2d DWT on your image for a few levels and compared the scaling coefficients, you would probably get better results. Plus, the discrete wavelet transform is O(n).</p> <p>The downside is that wavelets are an advanced mathematical topic. There are some good OpenCourseWare notes on wavelets and filterbanks <a href="http://ocw.mit.edu/OcwWeb/Mathematics/18-327Wavelets--Filter-Banks-and-ApplicationsSpring2003/CourseHome/index.htm" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/652193/serialize-and-send-a-data-structure-using-boost/652325#652325 1 Answer by rlbond for Serialize and send a data structure using Boost? rlbond 2009-03-16T22:08:37Z 2009-11-25T05:27:45Z <p>The boost serialization archives can be constructed with any stream. Thus any oarchive can use any ostream, and any iarchive can use any istream. Thus you can archive to an ostringstream, transmit the string with asio, and reconstruct the data from that.</p> <p>See the reference of binary_oarchive <a href="http://www.boost.org/doc/libs/1%5F38%5F0/boost/archive/binary%5Foarchive.hpp" rel="nofollow">here</a>, for example.</p> http://stackoverflow.com/questions/1793807/declaring-a-variable-in-an-if-else-block-in-c/1793955#1793955 6 Answer by rlbond for Declaring a variable in an if-else block in C++ rlbond 2009-11-25T00:40:26Z 2009-11-25T00:40:26Z <p>Others have suggested pointers. However, the conditional operator may be used as well.</p> <pre><code>Player &amp; player = argv[3] == string("simple") ? get_Simple() : argv[3] == string("counting") ? get_Counting() : get_Competitor(); </code></pre> http://stackoverflow.com/questions/1787293/get-a-reverse-iterator-from-a-forward-iterator-without-knowing-the-value-type/1787318#1787318 4 Answer by rlbond for Get a reverse iterator from a forward iterator without knowing the value type rlbond 2009-11-24T01:57:56Z 2009-11-24T01:57:56Z <p>The STL has <code>std::reverse_iterator&lt;Iterator&gt;</code>:</p> <pre><code>template &lt;class RandomAccessIterator&gt; void mySort(RandomAccessIterator first, RandomAccessIterator last) { typedef std::reverse_iterator&lt;RandomAccessIterator&gt; RIter; RIter riter = reverse_iterator(last); RIter rend = reverse_iterator(begin); for ( ; riter != rend; ++riter) { // Do stuff } } </code></pre> <p>An <a href="http://www.cplusplus.com/reference/std/iterator/reverse%5Fiterator/" rel="nofollow">important note</a>:</p> <blockquote> <p>Notice however that when an iterator is reversed, the reversed version does not point to the same element in the range, but to the one preceding it. This is so, in order to arrange for the past-the-end element of a range: An iterator pointing to a past-the-end element in a range, when reversed, is changed to point to the last element (not past it) of the range (this would be the first element of the range if reversed). And if an iterator to the first element in a range is reversed, the reversed iterator points to the element before the first element (this would be the past-the-end element of the range if reversed).</p> </blockquote> http://stackoverflow.com/questions/1773897/why-is-argc-an-int-rather-than-an-unsigned-int/1773906#1773906 10 Answer by rlbond for Why is argc an 'int' (rather than an 'unsigned int')? rlbond 2009-11-20T23:44:05Z 2009-11-20T23:44:05Z <p>Because C is old, and it was designed that way from the start. It's too late to change it now.</p> http://stackoverflow.com/questions/1746594/middle-of-linked-list/1746640#1746640 2 Answer by rlbond for middle of linked list rlbond 2009-11-17T04:44:10Z 2009-11-17T04:57:44Z <p>Well, it's sort of a hack, since it's functionally equivalent to 2 loops. But still, it is only 1 loop.</p> <pre><code>Node* middle(Node* const begin) { Node* current = begin; bool size_known = false; int size = 0; while (true) { if (!size_known) { if (current) { ++size; current = current-&gt;next; } else { current = begin; size_known = true; } } else { if (size &lt;= 1) return current; current = current-&gt;next; size -= 2; } } } </code></pre> http://stackoverflow.com/questions/1745751/c-header-files-simple-question/1745769#1745769 0 Answer by rlbond for C++ header files simple question rlbond 2009-11-17T00:18:20Z 2009-11-17T00:18:20Z <p>Variables in a .h file are a precarious situation, because when you <code>#include</code> a header file it's just pasted into your source file. So if you have <code>int j;</code> in a header file and include it from other source files, you've basically just defined several different variables called <code>j</code>, which is, of course, an error.</p> http://stackoverflow.com/questions/1744632/why-use-short-circuit-code/1744658#1744658 3 Answer by rlbond for Why use short-circuit code? rlbond 2009-11-16T20:30:39Z 2009-11-16T20:30:39Z <p>Use it to confuse people!</p> http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744108#1744108 5 Answer by rlbond for Why should exceptions be used conservatively? rlbond 2009-11-16T18:52:28Z 2009-11-16T20:26:29Z <p>It's not that exceptions should rarely be used. It's just that they should only be thrown in exceptional circumstances. For example, if a user enters the wrong password, that's not exceptional.</p> <p>The reason is simple: exceptions exit a function abruptly, and propagate up the stack to a <code>catch</code> block. This process is very computationally expensive: C++ builds its exception system to have little overhead on "normal" function calls, so when an exception is raised, it has to do a lot of work to find where to go. Moreover, since every line of code could possibly raise an exception. If we have some function <code>f</code> that raises exceptions often, we now have to take care to use our <code>try</code>/<code>catch</code> blocks around every call of <code>f</code>. That's a pretty bad interface/implementation coupling. </p> http://stackoverflow.com/questions/1710733/how-do-i-create-an-n-d-matrix-of-doubles-in-a-matlab-mex-file 1 How do I create an N-D matrix of doubles in a MATLAB MEX file? rlbond 2009-11-10T19:54:46Z 2009-11-15T22:01:29Z <p>I need to make a 3-D matrix in a MEX file. In the API reference, there is mention of <code>mxCreateCellArray</code> for N-D cell arrays, <code>mxCreateStructArray</code> for structs, etc. But there is no <code>mxCreateDoubleArray</code> mentioned. Is this possible?</p> http://stackoverflow.com/questions/1727569/what-are-the-benefits-to-passing-integral-types-by-const-ref/1727576#1727576 4 Answer by rlbond for What are the benefits to passing integral types by const ref rlbond 2009-11-13T06:49:44Z 2009-11-13T06:49:44Z <p>It's usually not worth it. Even for inline function, the compiler won't be stupid. The only time I would say it's appropriate is if you had a template; it might not be worth the extra effort to specialize for builtins just to take a copy instead of a reference.</p> http://stackoverflow.com/questions/1722908/multiplicative-inverse/1722953#1722953 2 Answer by rlbond for multiplicative inverse?!?!? rlbond 2009-11-12T15:18:43Z 2009-11-12T15:18:43Z <p>That's because 2 doesn't have a multiplicative inverse mod 26: since 13*2=0, there does not exist K such that K * a = 1. Your modulus must be prime. Try looking up the Chinese Remainder Theorem for more information.</p> http://stackoverflow.com/questions/1720453/preparation-for-a-c-interview/1720476#1720476 3 Answer by rlbond for Preparation for a c++ interview rlbond 2009-11-12T07:17:46Z 2009-11-12T07:17:46Z <p>I would recommend familiarity with the STL. Especially algorithms and function objects. Templates are a must. </p> http://stackoverflow.com/questions/1925518/c-how-to-access-a-protected-base-class-method-through-an-instance-of-the-derive Comment by rlbond on C++ how to access a protected base class method through an instance of the derived class rlbond 2009-12-18T00:46:30Z 2009-12-18T00:46:30Z That sucks, since there are some legitimate uses of <code>friend</code>. http://stackoverflow.com/questions/1924844/stdmap-of-member-function-pointers Comment by rlbond on std::map of member function pointers ? rlbond 2009-12-17T21:59:39Z 2009-12-17T21:59:39Z You probably want to use a template for that if possible. http://stackoverflow.com/questions/1898212/convert-a-vectorunsigned-char-to-vectorunsigned-short/1898350#1898350 Comment by rlbond on Convert a vector<unsigned char> to vector<unsigned short> rlbond 2009-12-14T01:07:27Z 2009-12-14T01:07:27Z @Martin York: except he doesn't want to convert the `char`s to `short`s, he wants them reinterpreted as shorts. http://stackoverflow.com/questions/1891254/compiz-on-fujitsu-siemens Comment by rlbond on compiz on fujitsu siemens rlbond 2009-12-11T22:23:02Z 2009-12-11T22:23:02Z This is a site for programming questions, not linux questions. http://stackoverflow.com/questions/1878470/add-tuple-to-list-of-tuples-in-python/1878488#1878488 Comment by rlbond on Add tuple to list of tuples in Python rlbond 2009-12-10T15:42:15Z 2009-12-10T15:42:15Z Pretty cool. I didn't know that you could nest <code>for</code> like that. http://stackoverflow.com/questions/1878470/add-tuple-to-list-of-tuples-in-python Comment by rlbond on Add tuple to list of tuples in Python rlbond 2009-12-10T03:43:13Z 2009-12-10T03:43:13Z You'd probably have more points yourself if you stuck to answering questions. http://stackoverflow.com/questions/577243/is-there-any-reason-to-use-this/1832411#1832411 Comment by rlbond on Is there any reason to use this-> rlbond 2009-12-09T22:29:39Z 2009-12-09T22:29:39Z What do you mean &quot;<code>&#42;this</code> will not hide non-member operator functions with the same name as a member&quot;? Can you provide an example? http://stackoverflow.com/questions/1877264/which-design-pattern-to-use Comment by rlbond on Which design pattern to use? rlbond 2009-12-09T22:23:18Z 2009-12-09T22:23:18Z You're doing it wrong! http://stackoverflow.com/questions/1870336/what-is-the-complexity-of-matrix-addition/1870446#1870446 Comment by rlbond on What is the complexity of matrix addition? rlbond 2009-12-08T23:04:59Z 2009-12-08T23:04:59Z Actually, matrix multiplication is cubic, since it is a sequence of matrix-vector multiplications, which are each quadratic. http://stackoverflow.com/questions/1870336/what-is-the-complexity-of-matrix-addition/1870377#1870377 Comment by rlbond on What is the complexity of matrix addition? rlbond 2009-12-08T23:03:50Z 2009-12-08T23:03:50Z I think that logic is kind of cheating. http://stackoverflow.com/questions/26086/how-do-you-make-wrong-code-look-wrong-what-patterns-do-you-use-to-avoid-semantic/26155#26155 Comment by rlbond on How do you make wrong code look wrong? What patterns do you use to avoid semantic errors? rlbond 2009-12-08T15:40:30Z 2009-12-08T15:40:30Z I find this to be one of the poorest excuses for &quot;correct code&quot;. How many people are really dumb enough to perform this error? It's even easier if you use the other style of braces (braces always on their own line) to tell that you're making a mistake. http://stackoverflow.com/questions/26086/how-do-you-make-wrong-code-look-wrong-what-patterns-do-you-use-to-avoid-semantic Comment by rlbond on How do you make wrong code look wrong? What patterns do you use to avoid semantic errors? rlbond 2009-12-08T15:38:49Z 2009-12-08T15:38:49Z Some compilers give you a warning when you commit the problem above. http://stackoverflow.com/questions/1857928/right-shifting-negative-numbers-in-c/1857946#1857946 Comment by rlbond on Right shifting negative numbers in C rlbond 2009-12-07T05:37:39Z 2009-12-07T05:37:39Z I don't believe that's his problem... http://stackoverflow.com/questions/1853906/how-to-implement-class-composition-in-c Comment by rlbond on How to implement class composition in C++? rlbond 2009-12-06T00:43:45Z 2009-12-06T00:43:45Z &quot;[I] have no desire to learn [the STL].&quot; What? You are missing a huge part of C++ by ignoring the STL. http://stackoverflow.com/questions/660972/what-is-your-best-pseudo-code-phrase/661053#661053 Comment by rlbond on What is your best pseudo-code phrase? rlbond 2009-12-05T21:10:45Z 2009-12-05T21:10:45Z HOME SWEET HOME SWEET HOME SWEET...