rlbond

11,109
reputation
603 views

Registered User

name rlbond
member for 9 months
seen 2 hours ago
website
location Atlanta, GA
age 22
I like C++.
2h
comment Is it good practice to NULL a pointer after deleting it?
I disagree -- there are cases when a pointer is good to use. For example, there are 2 variables on the stack and you want to choose one of them. Or you want to pass an optional variable to a function. I would say, you should never use a raw pointer in conjunction with new.
1d
comment C++ how to access a protected base class method through an instance of the derived class
That sucks, since there are some legitimate uses of friend.
1d
comment std::map of member function pointers ?
You probably want to use a template for that if possible.
1d
answered What is the meaning of the variable name foo?
2d
answered Mandatory use of braces
Dec
15
awarded  Popular Question
Dec
14
comment Convert a vector<unsigned char> to vector<unsigned short>
@Martin York: except he doesn't want to convert the `char`s to `short`s, he wants them reinterpreted as shorts.
Dec
14
answered Convert a vector<unsigned char> to vector<unsigned short>
Dec
11
comment compiz on fujitsu siemens
This is a site for programming questions, not linux questions.
Dec
11
asked How to get started with embeddable scripting?
Dec
10
comment Add tuple to list of tuples in Python
Pretty cool. I didn't know that you could nest for like that.
Dec
10
comment Add tuple to list of tuples in Python
You'd probably have more points yourself if you stuck to answering questions.
Dec
10
asked Add tuple to list of tuples in Python
Dec
9
comment Is there any reason to use this->
What do you mean "*this will not hide non-member operator functions with the same name as a member"? Can you provide an example?
Dec
9
comment Which design pattern to use?
You're doing it wrong!
Dec
8
comment What is the complexity of matrix addition?
I think that logic is kind of cheating.
Dec
8
answered What is the complexity of matrix addition?
Dec
8
comment How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?
I 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.
Dec
8
comment How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?
Some compilers give you a warning when you commit the problem above.
Dec
7
comment Right shifting negative numbers in C
I don't believe that's his problem...
Dec
6
awarded  Mortarboard
Dec
6
answered Which graph implementation is best?
Dec
6
comment How to implement class composition in C++?
"[I] have no desire to learn [the STL]." What? You are missing a huge part of C++ by ignoring the STL.
Dec
5
comment What is your best pseudo-code phrase?
HOME SWEET HOME SWEET HOME SWEET...
Dec
5
comment C++: do you (really) write exception safe code?
"EH replaced the old clean deterministical approach (return values..)" What? Exceptions are just as deterministic as return codes. There's nothing random about them.
Dec
5
comment Is it possible to tell the branch predictor how likely it is to follow the branch?
If you need every single cycle, why not just use inline assembly?
Dec
5
answered Is it possible to tell the branch predictor how likely it is to follow the branch?
Dec
4
answered Pass by value or reference, to a C++ constructor that needs to store a copy?
Dec
4
comment name collision in C++
It compiles for me in VC++...
Dec
3
accepted Does the hash<char*> function in STL give 1-1 mapping between char* and size_t ?
Dec
3
comment Why does this C code print only the first & last node entered?
Ever heard of the tab button?
Dec
1
comment How can I use a custom type for keys in a boost::unordered_map?
I don't think your operator== is correct. Why are you using the XOR operator instead of ==? Also, that statement about nesting the comparisons is rubbish. The C++ logical AND operator has short-circuit evaluation, so you just typed more code for absolutely no reason.
Dec
1
comment Is there a way to push a MATLAB workspace onto a stack?
I don't want to save to disk, though.
Dec
1
revised Is there a way to push a MATLAB workspace onto a stack?
added 140 characters in body
Dec
1
comment Is there a way to push a MATLAB workspace onto a stack?
Cool idea. I will try this out!
Dec
1
answered How to mitigate class declaration being far from its owner namespace declaration in a file?
Dec
1
comment C++, manipulate 2d array
The top ends up at the bottom, right? Flips are always perpendicular to their axis. developer.apple.com/mac/library/…
Dec
1
comment C++, manipulate 2d array
I believe this would be flipping an array vertically, not horizontally.
Dec
1
asked Is there a way to push a MATLAB workspace onto a stack?
Nov
30
awarded  Nice Question
Nov
30
comment Does the hash<char*> function in STL give 1-1 mapping between char* and size_t ?
Well, you really should use the c++ unordered_map if it's available, but yes, it will.
Nov
30
revised Does the hash<char*> function in STL give 1-1 mapping between char* and size_t ?
added 281 characters in body
Nov
30
answered Does the hash<char*> function in STL give 1-1 mapping between char* and size_t ?
Nov
30
answered How to use unordered_set in STL?
Nov
30
comment PLC Ladder Logic Outputs
Side note, it depends on the implementation. However I believe with Rockwell stuff this is true. Of course, you can always use additional rungs to make the equivalent statement.
Nov
30
answered Is there a way to prevent construction during non-compound operations?
Nov
30
answered How to recognize rectangles in this image?
Nov
28
accepted How do you handle command line options and config files?
Nov
27
awarded  Nice Answer
Nov
26
revised Speeding up self-similarity in an image
added 276 characters in body