|
May
14 |
|
awarded | Popular Question |
|
Jan
19 |
|
awarded | Yearling |
|
Dec
7 |
|
awarded | Popular Question |
|
Dec
4 |
|
comment |
Data Structure Terminology? some people refer to the linked list entities as nodes |
|
Oct
23 |
|
comment |
Constructor w/Multiple Arguments in Constructor list not working C++ Is there any other constructors that you have? Is line 19 that particular constructor? |
|
Oct
23 |
|
answered | How to programmatically rename XYZUpperCamelCase files to xyzLowerCamelCase? |
|
Oct
4 |
|
accepted | Templated assignment operator and self-check |
|
Oct
4 |
|
revised |
Templated assignment operator and self-check added 26 characters in body |
|
Oct
4 |
|
comment |
Templated assignment operator and self-check sorry, i edited the question.. yeah i typed it out here, but I do have one with a return code in my terminal... |
|
Oct
4 |
|
asked | Templated assignment operator and self-check |
|
Aug
10 |
|
comment |
Array's first character gets populated with incorrect data C++ You're a declaring a struct with a unsigned char pointer, not with an array |
|
Aug
10 |
|
comment |
Directory command line argument ... and it kicked my dog :( |
|
Aug
2 |
|
comment |
Screen shakes while translating JOGL Where do you update variables like panX and mouseChangedX. Typically the problem of shaking while mouse is dragging would happen because you are simply forgetting to update some of the variables. Try printing out the X translation in that function (if it's not too cpu intensive), and when it shakes you should see that it's switching back and forth from what you expect to something different. Then you can check where these variables are being updated and hopefully track down the problem. |
|
Aug
2 |
|
comment |
vector<string *> confuses me You could do that, but you have to make sure that myString remains a valid object any time you want to access the pointer in the vector |
|
Aug
2 |
|
comment |
Values from vector differ from the original value The cool thing is that if I do .resize() the vector to exactly number of elements in the vector, then end()-1 gives the proper value.. but if I .resize() the vector to something larger, then it gives me a garbage value :D as expected. I've learned something today! |
|
Aug
2 |
|
comment |
Values from vector differ from the original value Yeah, you want to probably use .rbegin () or better yet .back () instead of .end () - 1 |
|
Aug
2 |
|
comment |
How to repeatedly search the same file 'n' number of times using perl? Can you give an example of what your input is and code that you currently have? |
|
Aug
2 |
|
answered | Using rand() to simulate dice. Slightly lost |
|
Aug
2 |
|
accepted | Rebinding lambda in c++11... is it possible? |
|
Aug
2 |
|
comment |
Rebinding lambda in c++11... is it possible? @juaNchopanza you are correct :D |