User rlbond - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T19:51:24Zhttp://stackoverflow.com/feeds/user/72631http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1924099/what-is-the-meaning-of-the-variable-name-foo/1924196#19241960Answer by rlbond for What is the meaning of the variable name foo?rlbond2009-12-17T20:00:30Z2009-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#19173192Answer by rlbond for Mandatory use of bracesrlbond2009-12-16T20:06:23Z2009-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-1Answer by rlbond for Convert a vector<unsigned char> to vector<unsigned short>rlbond2009-12-14T00:24:51Z2009-12-14T00:24:51Z<p>disclaimer: I don't have a compiler right now:</p>
<pre><code>vector<unsigned char> vec = getVector();
vector<unsigned short> sv(reinterpret_cast<unsigned short*>(&vec[0]),
reinterpret_cast<unsigned short*>(&vec[vec.size()]));
</code></pre>
http://stackoverflow.com/questions/1891002/how-to-get-started-with-embeddable-scripting3How to get started with embeddable scripting?rlbond2009-12-11T21:32:25Z2009-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-python1Add tuple to list of tuples in Pythonrlbond2009-12-10T03:29:54Z2009-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#18703873Answer by rlbond for What is the complexity of matrix addition?rlbond2009-12-08T22:37:39Z2009-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-stack2Is there a way to push a MATLAB workspace onto a stack?rlbond2009-12-01T02:40:59Z2009-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#18543740Answer by rlbond for Which graph implementation is best?rlbond2009-12-06T04:34:37Z2009-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-1Answer by rlbond for Is it possible to tell the branch predictor how likely it is to follow the branch?rlbond2009-12-05T06:12:35Z2009-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#18479170Answer by rlbond for Pass by value or reference, to a C++ constructor that needs to store a copy?rlbond2009-12-04T16:02:48Z2009-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#18278790Answer by rlbond for How to mitigate class declaration being far from its owner namespace declaration in a file?rlbond2009-12-01T18:12:35Z2009-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-work10How does a stackless language work?rlbond2009-06-19T03:22:14Z2009-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-exception4c++ display stack trace on exceptionrlbond2009-03-27T22:42:46Z2009-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#18178114Answer by rlbond for Does the hash<char*> function in STL give 1-1 mapping between char* and size_t ?rlbond2009-11-30T04:13:48Z2009-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 << 6) + (b >> 2);</p>
http://stackoverflow.com/questions/1817691/how-to-use-unorderedset-in-stl/1817736#18177361Answer by rlbond for How to use unordered_set in STL?rlbond2009-11-30T03:41:15Z2009-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#18175891Answer by rlbond for Is there a way to prevent construction during non-compound operations?rlbond2009-11-30T02:24:57Z2009-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#18175864Answer by rlbond for How to recognize rectangles in this image?rlbond2009-11-30T02:23:19Z2009-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#18015973Answer by rlbond for Speeding up self-similarity in an imagerlbond2009-11-26T04:52:05Z2009-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#6523251Answer by rlbond for Serialize and send a data structure using Boost?rlbond2009-03-16T22:08:37Z2009-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#17939556Answer by rlbond for Declaring a variable in an if-else block in C++rlbond2009-11-25T00:40:26Z2009-11-25T00:40:26Z<p>Others have suggested pointers. However, the conditional operator may be used as well.</p>
<pre><code>Player & 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#17873184Answer by rlbond for Get a reverse iterator from a forward iterator without knowing the value typerlbond2009-11-24T01:57:56Z2009-11-24T01:57:56Z<p>The STL has <code>std::reverse_iterator<Iterator></code>:</p>
<pre><code>template <class RandomAccessIterator>
void mySort(RandomAccessIterator first, RandomAccessIterator last)
{
typedef std::reverse_iterator<RandomAccessIterator> 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#177390610Answer by rlbond for Why is argc an 'int' (rather than an 'unsigned int')?rlbond2009-11-20T23:44:05Z2009-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#17466402Answer by rlbond for middle of linked listrlbond2009-11-17T04:44:10Z2009-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->next;
}
else
{
current = begin;
size_known = true;
}
}
else
{
if (size <= 1)
return current;
current = current->next;
size -= 2;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1745751/c-header-files-simple-question/1745769#17457690Answer by rlbond for C++ header files simple questionrlbond2009-11-17T00:18:20Z2009-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#17446583Answer by rlbond for Why use short-circuit code? rlbond2009-11-16T20:30:39Z2009-11-16T20:30:39Z<p>Use it to confuse people!</p>
http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744108#17441085Answer by rlbond for Why should exceptions be used conservatively?rlbond2009-11-16T18:52:28Z2009-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-file1How do I create an N-D matrix of doubles in a MATLAB MEX file?rlbond2009-11-10T19:54:46Z2009-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#17275764Answer by rlbond for What are the benefits to passing integral types by const refrlbond2009-11-13T06:49:44Z2009-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#17229532Answer by rlbond for multiplicative inverse?!?!?rlbond2009-11-12T15:18:43Z2009-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#17204763Answer by rlbond for Preparation for a c++ interviewrlbond2009-11-12T07:17:46Z2009-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-deriveComment by rlbond on C++ how to access a protected base class method through an instance of the derived classrlbond2009-12-18T00:46:30Z2009-12-18T00:46:30ZThat sucks, since there are some legitimate uses of <code>friend</code>.http://stackoverflow.com/questions/1924844/stdmap-of-member-function-pointersComment by rlbond on std::map of member function pointers ?rlbond2009-12-17T21:59:39Z2009-12-17T21:59:39ZYou probably want to use a template for that if possible.http://stackoverflow.com/questions/1898212/convert-a-vectorunsigned-char-to-vectorunsigned-short/1898350#1898350Comment by rlbond on Convert a vector<unsigned char> to vector<unsigned short>rlbond2009-12-14T01:07:27Z2009-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-siemensComment by rlbond on compiz on fujitsu siemensrlbond2009-12-11T22:23:02Z2009-12-11T22:23:02ZThis is a site for programming questions, not linux questions.http://stackoverflow.com/questions/1878470/add-tuple-to-list-of-tuples-in-python/1878488#1878488Comment by rlbond on Add tuple to list of tuples in Pythonrlbond2009-12-10T15:42:15Z2009-12-10T15:42:15ZPretty 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-pythonComment by rlbond on Add tuple to list of tuples in Pythonrlbond2009-12-10T03:43:13Z2009-12-10T03:43:13ZYou'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#1832411Comment by rlbond on Is there any reason to use this->rlbond2009-12-09T22:29:39Z2009-12-09T22:29:39ZWhat do you mean "<code>*this</code> will not hide non-member operator functions with the same name as a member"? Can you provide an example?http://stackoverflow.com/questions/1877264/which-design-pattern-to-useComment by rlbond on Which design pattern to use?rlbond2009-12-09T22:23:18Z2009-12-09T22:23:18ZYou're doing it wrong!http://stackoverflow.com/questions/1870336/what-is-the-complexity-of-matrix-addition/1870446#1870446Comment by rlbond on What is the complexity of matrix addition?rlbond2009-12-08T23:04:59Z2009-12-08T23:04:59ZActually, 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#1870377Comment by rlbond on What is the complexity of matrix addition?rlbond2009-12-08T23:03:50Z2009-12-08T23:03:50ZI 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#26155Comment by rlbond on How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?rlbond2009-12-08T15:40:30Z2009-12-08T15:40:30ZI find this to be one of the poorest excuses for "correct code". 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-semanticComment by rlbond on How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?rlbond2009-12-08T15:38:49Z2009-12-08T15:38:49ZSome compilers give you a warning when you commit the problem above.http://stackoverflow.com/questions/1857928/right-shifting-negative-numbers-in-c/1857946#1857946Comment by rlbond on Right shifting negative numbers in Crlbond2009-12-07T05:37:39Z2009-12-07T05:37:39Z
I don't believe that's his problem...http://stackoverflow.com/questions/1853906/how-to-implement-class-composition-in-cComment by rlbond on How to implement class composition in C++?rlbond2009-12-06T00:43:45Z2009-12-06T00:43:45Z"[I] have no desire to learn [the STL]." 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#661053Comment by rlbond on What is your best pseudo-code phrase?rlbond2009-12-05T21:10:45Z2009-12-05T21:10:45ZHOME SWEET HOME SWEET HOME SWEET...