User MadKeithV - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T06:22:28Zhttp://stackoverflow.com/feeds/user/33987http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1860796/your-thoughts-on-large-scale-c-software-design/1860862#18608625Answer by MadKeithV for Your thoughts on "Large Scale C++ Software Design"MadKeithV2009-12-07T15:53:13Z2009-12-08T08:12:13Z<p>I've read it, and consider it a very useful book on some practical issues with large C++ projects. If you have already read a lot about C++, and know a bit about physical design and its implications, you may not find that much which is terribly "new" in this book.</p>
<p>On the other hand, if your build takes 4 hours, and you don't know how to whittle it down, get a copy, read it, and take it all in.</p>
<p>You'll start writing physically better code quite quickly.</p>
<p>[Edit]
If you want to start somewhere, and can't immediately get a hold of the book, I found the <a href="http://gamesfromwithin.com/physical-structure-and-c-part-1-a-first-look" rel="nofollow">Games From Within series on physical structure</a> useful even after reading Large Scale C++ design.</p>
http://stackoverflow.com/questions/352885/dependency-injection-in-c/352913#3529132Answer by MadKeithV for Dependency injection in C++MadKeithV2008-12-09T14:33:02Z2009-11-09T12:13:13Z<p>Things get complicated if you don't settle on the question of ownership once and for all. You will simply have to decide in your implementation if it's possible that dependencies live longer than the objects they are injected into.<BR><P>
Personally I'd say no: the object into which the dependency is injected will clean up afterwards. Trying to do it through the builder means that the builder will have to live longer than both the dependency and the object into which it is injected. This causes more problems than it solves, in my opinion, because the builder does not serve any more useful purpose after the construction with the dependency injection has been completed.</p>
http://stackoverflow.com/questions/1555154/default-int-type-signed-or-unsigned/1555183#15551833Answer by MadKeithV for Default int type: Signed or Unsigned?MadKeithV2009-10-12T15:19:20Z2009-10-12T15:19:20Z<p>Certainly signed. If overflow worries you, underflow should worry you more, because going "below zero" by accident is easier than over int-max.<BR></p>
<p>"unsigned" should be a conscious choice that makes the developer think about potential risks, used only there where you are absolutely sure that you can never go negative (not even accidentally), and that you need the additional value space.</p>
http://stackoverflow.com/questions/1543269/what-do-you-find-to-be-difficult-and-frustrating-about-managing-software-developm/1543607#15436073Answer by MadKeithV for What do you find to be difficult and frustrating about managing software development?MadKeithV2009-10-09T13:01:03Z2009-10-09T13:01:03Z<p>The most challenging part is usually the client.</p>
<p>The client often doesn't want to understand that something that takes only 3 minutes to come up with on a whiteboard might take a lot longer to actually create in software.</p>
<p>They also often fail to understand that changing their mind completely halfway through a project means that de-facto we are starting over, and the deadlines need to move.</p>
<p>Also, "time and material" budgetting in a project still means "fixed budget" on the lowest value that you mentioned in the quotation to the customer 99% of the time, no matter how many times you explain the concept to them.</p>
<p>This is why I no longer manage projects, but work as a developer team coach instead. Software Developers, you are great people compared to clients :)</p>
http://stackoverflow.com/questions/1487102/what-factors-do-you-consider-when-deciding-what-to-work-on-next/1487133#14871334Answer by MadKeithV for What factors do you consider when deciding what to work on next?MadKeithV2009-09-28T13:45:08Z2009-09-28T13:45:08Z<p>When I have the choice: whatever seems to be the biggest challenge with the most fun attached.</p>
<p>Fun + challenge = rapid learning, to me.</p>
<p>And sometimes that takes me away from the technical stuff - people can be a fun challenge too.</p>
http://stackoverflow.com/questions/1477028/should-this-c-temporary-binding-to-reference-member-be-illegal/1477094#14770942Answer by MadKeithV for Should this C++ temporary binding to reference member be illegal?MadKeithV2009-09-25T12:46:02Z2009-09-25T12:46:02Z<p>The original Guru of the Week article is here: <a href="http://www.gotw.ca/gotw/015.htm" rel="nofollow">Guru of the Week #15</a>.</p>
<p>Part of your answer might come from Herb himself, in <a href="http://herbsutter.wordpress.com/2008/01/01/gotw-88-a-candidate-for-the-most-important-const/" rel="nofollow">"A candidate for the most important const"</a> - the "const" part of assigning a temporary to a reference is indeed important.</p>
<p>So it would appear as if this is a bug in the original article.</p>
http://stackoverflow.com/questions/1471870/biggest-time-loss-bug/1471904#14719040Answer by MadKeithV for Biggest time loss bugMadKeithV2009-09-24T14:03:57Z2009-09-24T14:03:57Z<p>In C++: 2 days trying to figure out why a particular script worked for everything except one particular class. Copying the class and renaming it didn't fix the problem.<BR>
Rewriting the class from scratch did fix the problem, but didn't seem to bring me any closer to the reason for the issue in the first place.<BR>
Diffing the files turned up nothing.<BR></p>
<p>However, I then noticed that one of my new files, while visually identical, was only half the size of the original.</p>
<p>Different encodings in header and cpp file broke my script :)</p>
http://stackoverflow.com/questions/1459403/missing-features-in-visual-studio/1466241#14662413Answer by MadKeithV for Missing features in Visual Studio?MadKeithV2009-09-23T14:12:05Z2009-09-23T14:12:05Z<p>Intellisense that isn't better turned off than on, for C++.</p>
http://stackoverflow.com/questions/1453243/how-can-i-avoid-using-exception-in-c/1453267#14532670Answer by MadKeithV for How can I avoid using exception in C++?MadKeithV2009-09-21T07:36:50Z2009-09-21T07:36:50Z<p>In some compilers, you may be able to turn off exception handling. This could cause unexpected results with external code though - it is not something I would want to try.</p>
<p>Other than that, the obvious first step would be to avoid throwing exceptions from your own code, probably with liberal use of the <a href="http://msdn.microsoft.com/en-us/library/49147z04%28VS.80%29.aspx" rel="nofollow">nothrow directive</a>, and attempt to avoid throwing exceptions from external (3rd party) code through <a href="http://en.wikipedia.org/wiki/Defensive%5Fprogramming" rel="nofollow">defensive programming</a>.</p>
<p>That means that your code needs to be aware of possible external exceptional failure conditions all the time, such as running out of memory, out of disk space, loss of an internet connection, hardware failure, and any number of other circumstances that might cause code to throw...</p>
<p>In some cases you may be able to use exception-free versions of some code (such as throwing-new vs. non-throwing new).</p>
http://stackoverflow.com/questions/1443064/parsing-file-in-c/1443110#14431102Answer by MadKeithV for Parsing file in C++MadKeithV2009-09-18T07:52:40Z2009-09-18T07:52:40Z<p>This looks like parsing a CSV file to me (even if it's not technically a file) - you could take a look at <a href="http://stackoverflow.com/questions/1120140/csv-parser-in-c">this question and answer</a>.</p>
http://stackoverflow.com/questions/1437816/partially-sort-vector-c/1437853#14378537Answer by MadKeithV for partially sort vector c++MadKeithV2009-09-17T10:05:37Z2009-09-17T12:11:22Z<p>You can use <a href="http://www.sgi.com/tech/stl/sort.html" rel="nofollow">std::sort</a> with a functor object that has a strict weak ordering for vectors. I.e. you define a vector-less-than functor that orders two vectors correctly, something like this (off the top of my head).
Edit: after comments, added checking for one or two empty vectors, which does make things trickier.</p>
<pre><code>class CustomVectorCompare
{
public:
bool operator<(const std::vector<int> &i_lhs, const std::vector<int> &i_rhs)
{
if(i_rhs.empty())
return false; // If right side is empty, left can only be equal or larger
if(i_lhs.empty())
return true; // Consider an empty vector to be "smaller"
// than any non-empty vector.
return i_lhs.back() < i_rhs.back();
}
}
std::sort(population.begin(), population.end(), CustomVectorCompare());
</code></pre>
http://stackoverflow.com/questions/1433345/or-is-not-valid-c-why-does-this-code-compile/1433393#14333931Answer by MadKeithV for or is not valid C++ : why does this code compile ?MadKeithV2009-09-16T14:38:04Z2009-09-16T14:38:04Z<p><a href="http://en.wikipedia.org/wiki/Iso646.h" rel="nofollow">iso646.h</a> defines a number of operator alternatives - it's part of the C++ standard.</p>
http://stackoverflow.com/questions/1425256/how-do-i-read-a-java-object-in-c/1425654#14256540Answer by MadKeithV for How do I read a java object in C++?MadKeithV2009-09-15T07:25:06Z2009-09-15T07:25:06Z<p>Log4cxx is a Log4j port to C++, perhaps you can glean some ideas from that or even use it directly?</p>
http://stackoverflow.com/questions/1420972/accessing-an-array-with-a-negative-number/1421025#142102525Answer by MadKeithV for Accessing an array with a negative number! MadKeithV2009-09-14T11:36:00Z2009-09-14T11:42:44Z<p>Can you replace the global one-dimensional ubyte array with an object with overloaded operator[]? Using the absolute value of the int input might solve some of your issues.</p>
<p>Edit: Depending on the usage pattern of your array (no pointer shenanigans), using an object with overloaded operator[] could actually be entirely transparent to the users of the array, hence my suggestion.</p>
http://stackoverflow.com/questions/1420957/stopping-embedded-python/1421044#14210441Answer by MadKeithV for Stopping embedded PythonMadKeithV2009-09-14T11:40:22Z2009-09-14T11:40:22Z<p>Well the python interpreter would have to be running in a separate thread from the embedding program or you will simply never get a chance to interrupt the interpreter.</p>
<p>When you have that, perhaps you can use one of the Python API exception calls to trigger an exception in the interpreter? See <a href="http://docs.python.org/c-api/exceptions.html" rel="nofollow">Python C API Exceptions</a></p>
http://stackoverflow.com/questions/1420546/does-c-or-c-have-a-standard-regex-library/1420554#142055417Answer by MadKeithV for Does C or C++ have a standard regex library?MadKeithV2009-09-14T09:38:02Z2009-09-14T09:55:29Z<p>C++ does not have a standard regex library.</p>
<p>Your best alternative would probably be <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/regex/doc/html/index.html" rel="nofollow">boost regex</a> - a lot of the boost library has made it into the standards discussions for C++0x so it's probably the closest to "standard" that you will get.</p>
<p>Edit: As others have pointed out, Boost::Regex is actually one of the boost libraries <a href="http://en.wikipedia.org/wiki/C%2B%2B0x" rel="nofollow">slated to go into C++0X</a>, so if all goes according to plan it should actually become the "c++ standard regex library".</p>
http://stackoverflow.com/questions/1420552/whats-the-difference-between-virtual-function-instantiations-in-c/1420575#14205757Answer by MadKeithV for What's the difference between virtual function instantiations in c++MadKeithV2009-09-14T09:43:32Z2009-09-14T09:50:18Z<p>The first one is a "pure virtual" - it will make the class abstract, attempting to instantiate it will result in compiler errors. It is meant to be used as a base class where the derived class implements the necessary behaviour pure virtual function. You do not have to implement the function in the base class, though you can.<BR>
This is a pattern often used for two design patterns:</p>
<ul>
<li>The <a href="http://en.wikipedia.org/wiki/Template%5Fmethod%5Fpattern" rel="nofollow">"template method"</a> design pattern, where the base class implements a structure around a function call, but the details of the function call must be filled in by the derived class, and </li>
<li>The "interface" design pattern, because C++ doesn't have the interface keyword. Abstract base classes, ideally with only pure virtual functions and no member data, are the C++ way of defining interfaces.</li>
</ul>
<p>The second declaration is just an ordinary virtual member function declaration. You will get compiler errors if you fail to implement the member function in the base class. It is still virtual which implies that it may be useful to override the behaviour in a derived class.</p>
http://stackoverflow.com/questions/1339922/prevent-accidental-object-copying-in-c/1340030#13400307Answer by MadKeithV for prevent accidental object copying in C++MadKeithV2009-08-27T09:55:20Z2009-08-27T12:03:36Z<p>If your coding standard states "be aware of the ways (accidental) copying can be prevented", I'm guessing they aren't just talking about preventing copies from within the classes itself, but about the performance implications of unnecessary / accidental copies when <em>using</em> the classes.<BR><BR>
One of the main causes of unnecessarily wasted performance in the code of people new to C++ is unnecessary copying, usually through temporaries. Compilers are getting better and better at deciding when temporaries are not necessary (see <a href="http://cpp-next.com/archive/2009/08/want-speed-pass-by-value/" rel="nofollow">"Want speed? Pass by Value"</a>, thanks to Konrad's comment), but the best thing to do is to learn to be aware of the inner workings of copying and temporaries in C++ (among others). For me, reading <a href="http://books.google.be/books?id=IR-MQiktobMC&dq=effecient+c%2B%2B&printsec=frontcover&source=bn&hl=en&ei=U1aWSs3OAYPbjQf10cywDA&sa=X&oi=book%5Fresult&ct=result&resnum=4#v=onepage&q=&f=false" rel="nofollow">Efficient C++</a> really got me started.</p>
http://stackoverflow.com/questions/1211799/how-to-get-system-unique-id-using-vc-code/1212599#12125990Answer by MadKeithV for how to get system unique id using vc++ code?MadKeithV2009-07-31T13:40:32Z2009-07-31T13:40:32Z<p>One value that I've seen used is the hard disk volume ID of the C-drive. It will change when you swap the drive though.</p>
http://stackoverflow.com/questions/1211492/program-crashes-when-leaving-a-c-function-what-do-you-think-it-is/1211526#12115263Answer by MadKeithV for Program crashes when leaving a c++ function....What do you think it is?MadKeithV2009-07-31T09:21:06Z2009-07-31T09:21:06Z<p>Possibilities I can think of:</p>
<ul>
<li>Different iterator / stl checking debugging settings between your project and whatever it is linking to. See <a href="http://msdn.microsoft.com/en-us/library/aa985982%28VS.80%29.aspx" rel="nofollow">Debug Iterator Support</a> and <a href="http://social.msdn.microsoft.com/Search/en-US/?query=checked%5Fiterator&ac=1" rel="nofollow">Checked Iterator</a>.</li>
<li>Different CRT settings between your project and whatever it is linking to. Use <a href="http://www.dependencywalker.com/" rel="nofollow">Dependency Walker</a> to see mismatches.</li>
<li>Stack corruption because of bad code in the function, for example writing past the end of an array or string.</li>
<li>A multithreading issue causing corruption of the stack or variables.</li>
<li>Mismatching calling conventions (as you mentioned calling it from Perl)</li>
</ul>
http://stackoverflow.com/questions/1210761/can-a-c-programmer-take-andre-lamothes-book-seriously/1211135#12111353Answer by MadKeithV for Can a C++ programmer take Andrè LaMothe's book seriously?MadKeithV2009-07-31T07:23:49Z2009-07-31T07:23:49Z<p>"Tricks of the Windows Game Programming Gurus" was first published in 1999, and AFAIK was a thin rehash of "Tricks of the Game Programming Gurus", first published in 1994 (!). Back then, information was hard to find and books like this one tended to get really popular.<BR>
I actually have the original 1994 book, and it taught me a lot of bad habits. I'd say no, you can't take it seriously.<BR><BR>
A much better book from around that same time is Michael Abrash's <a href="http://www.gamedev.net/reference/articles/article1698.asp" rel="nofollow">Graphics Programming Black Book</a>. Michael is a very well-respected writer and developer when it comes to high-performance graphics. The book is very dated now, but has some interesting insights into what it's like to optimize down to the metal.</p>
http://stackoverflow.com/questions/1205516/ms-vc-6-why-return-false-rather-than-true/1205542#12055427Answer by MadKeithV for MS VC++ 6 : Why return !false rather than true?MadKeithV2009-07-30T09:39:25Z2009-07-30T09:39:25Z<p>There is no good reason to write !false instead of true.<BR>
Bad reasons could include obfuscation (making the code harder to read), personal preferences, badly considered global search-and-replace, and shenanigans converting boolean values to integers.<BR><BR>
It's possible that some confusion has been caused by the TRUE and FALSE definitions in Win32, which are not of bool type but ints, and which may trigger warnings when used in boolean statements. Mainly, anything non-zero is "true", but if you want to make sure that "true" is always one when using integers instead of booleans, you sometimes see shenanigans like this. It's still not a good reason ;-)</p>
http://stackoverflow.com/questions/1205153/how-to-increase-code-quality/1205212#12052120Answer by MadKeithV for How to increase code quality?MadKeithV2009-07-30T08:32:38Z2009-07-30T08:32:38Z<p>First and foremost, the most lightweight way is to start communicating about code quality among your team. Recommend books and articles to each other.<BR>
Then start doing lightweight code reviews - if you are all in the same place "over-the-shoulder" reviews would work fine. This is a great way to get to know the code everyone else writes, it spreads knowledge and standards quickly, and it can fix a lot of bugs and issues before they even get committed into source control.<BR>
You <strong>are</strong> using source control, aren't you? If not, start doing that ASAP (I'd recommend SVN).<BR>
Next, agree on some coding standards regarding formatting and stylistic issues. Consistent standards make code easier to read and share among the team.<BR>
Try turning the warning level of the compiler to maximum, with "warnings as errors" on.<BR>
Invest in <a href="http://www.gimpel.com/" rel="nofollow">PC-Lint</a> as a static checker.<BR>
Never stop learning, and never stop teaching.<BR></p>
http://stackoverflow.com/questions/1204975/does-the-compiler-decide-when-to-inline-my-functions-in-c/1205051#12050513Answer by MadKeithV for Does the compiler decide when to inline my functions (in C++)?MadKeithV2009-07-30T07:49:43Z2009-07-30T07:49:43Z<p>As many have already posted, the final decision is always up to the compiler, even if you can give firm hints such as forceinline. <BR>
Part of the rationale is that inlining is not an automatic "go faster" switch. Too much inlining can make your code much larger, and may interfere with other optimizations. See <a href="http://www.parashift.com/c++-faq-lite/inline-functions.html#faq-9.3" rel="nofollow">The C++ FAQ Lite about inline functions and performance</a>.</p>
http://stackoverflow.com/questions/1204599/noticeable-increase-in-programming-ability-or-understanding/1204917#12049170Answer by MadKeithV for Noticeable increase in programming ability or understandingMadKeithV2009-07-30T07:09:42Z2009-07-30T07:09:42Z<p>The first truly big one was understanding what a "variable" was, and how it could change in value during the course of a program. I was probably around 10 at the time, working in Basic, so that was a big step.<BR><br />
<BR>
The second was understanding pointers. It took a while to "click", and I had been using them by copy-pasting code for a while already. That was around the time things went from 16 bit segmented addressing to flat-mode 32 bit addressing - the technical information around that move helped that click. I was 18 then.<BR><BR>
The third major leap was object orientation (including theory) just a year or so later. It really added a lot of structure to my work.<BR><BR>
The fourth major leap was around the same time actually, writing my first compiler. Learning the inner workings of a toy language and getting it in-line with the hardware taught me a lot about performance pitfalls and non-pitfalls, and paying attention to what goes on behind the curtain.<BR><BR>
The fifth major leap was doing something half-serious in Lisp, seeing how object-orientation was not the only valuable or valid paradigm, and how powerful yet different a language could be from C++. I realized that where C/C++ are close to the processor, Lisp is close to the "compiler", and that's where it gets the expressive power.<BR></p>
http://stackoverflow.com/questions/1204693/is-c0x-collapsing-under-the-weight-of-new-features-and-the-standardization-proc/1204893#12048931Answer by MadKeithV for Is C++0x collapsing under the weight of new features and the standardization process?MadKeithV2009-07-30T07:01:02Z2009-07-30T07:01:02Z<p>On the one hand I'm grateful that they are not repeating the template exports fiasco.<BR>
On the other hand the same kind of "responsibility" could have killed off templates entirely before they happened.<BR></p>
<p>I think C++0x is demonstrating that C++ is too mature a language to be experimenting with features still. New cutting-edge features are already present in other languages where they are a better match for the underlying philosophy.</p>
http://stackoverflow.com/questions/1194479/write-your-own-memory-manager/1194819#11948191Answer by MadKeithV for Write your own memory managerMadKeithV2009-07-28T15:14:30Z2009-07-28T15:14:30Z<p>Whatever you do, don't macro-override "new" like they did in MFC way back in the day. It interferes with placement new statements breaking the code.</p>
http://stackoverflow.com/questions/1169977/which-c-book-should-i-read-after-finishing-accelerated-c/1170679#11706793Answer by MadKeithV for Which c++ book should I read after finishing 'accelerated c++' ?MadKeithV2009-07-23T09:41:41Z2009-07-23T09:41:41Z<p><a href="http://www.gotw.ca/publications/c++cs.htm" rel="nofollow">C++ Coding Standards</a> by Alexandrescu and Sutter is a good follow-up. It's not too technical, but has a lot of professional advice for C++ programming.</p>
http://stackoverflow.com/questions/1138301/precompiled-headers-do-we-really-need-them/1138356#11383566Answer by MadKeithV for Precompiled Headers? Do we really need themMadKeithV2009-07-16T15:16:50Z2009-07-16T15:16:50Z<p>There is no such thing as a build that is "Fast enough". Some of the TDD folk get upset if their build takes longer than a few seconds. I've worked on projects with hours of compilation time that we halved (or better) by working with pre-compiled headers the right way. </p>
<p>However, the preferred solution remains that compilation times never get that far out of hand, by controlling the physical dependencies of the code. </p>
<p>For more information read <a href="http://gamesfromwithin.com/?p=39" rel="nofollow">The Care and Feeding of Pre-compiled Headers</a></p>
http://stackoverflow.com/questions/1124968/most-harmful-misconception-of-beginners-about-programming/1138307#11383070Answer by MadKeithV for Most harmful misconception of beginners about programming?MadKeithV2009-07-16T15:11:02Z2009-07-16T15:11:02Z<ul>
<li>That [Insert language, language feature, pattern, technology du jour] is a silver bullet for all problems.</li>
<li>That starting over is a good idea.</li>
<li>That Unicode is just a compiler switch.</li>
<li>That this small change won't break anything.</li>
<li>That looking something up is admitting failure.</li>
</ul>
http://stackoverflow.com/questions/1380371/what-are-the-most-widely-used-c-vector-matrix-math-linear-algebra-libraries-an/1452950#1452950Comment by MadKeithV on What are the most widely used C++ vector/matrix math/linear algebra libraries, and their cost and benefit tradeoffs?MadKeithV2009-12-15T15:38:04Z2009-12-15T15:38:04ZRegarding the Eigen aligned asserts: to get high performance out of SSE(1,2,3 or 4) operations for small sets of data, you absolutely need aligned data. The unaligned load/store operations are much slower. The decision between aligned or unaligned load/store also takes time.
Any "general purpose" implementation would have a really tough time doing the right thing for everyone, unless they separated the interface into "aligned" and "unaligned" operations as well - and then it's again simply not very general purpose.
http://stackoverflow.com/questions/1860796/your-thoughts-on-large-scale-c-software-design/1860880#1860880Comment by MadKeithV on Your thoughts on "Large Scale C++ Software Design"MadKeithV2009-12-08T08:14:38Z2009-12-08T08:14:38ZIf there's one thing I would NOT do it's using templates to bring my physical dependencies down, or hoping that it would reduce build time. You really do not want heavy template use in large projects with current compilers - they slow things down a lot because every usage needs access to the full template.
The pimpl idiom on the other hand is something that I believe <i>should</i> be used heavily in large-scale projects.http://stackoverflow.com/questions/1859790/look-what-my-machine-can-do-in-1-secondComment by MadKeithV on Look what my Machine can do in 1 secondMadKeithV2009-12-07T13:20:38Z2009-12-07T13:20:38ZIf you only need to sort 50.000 strings, you might not have to worry about being smart. If must sort 5 million, you may want to think about a multi-threaded parallel efficient big-O sorting algorithm. It <i>does</i> make a difference. The time <i>not</i> spent optimizing something that doesn't need to be faster can be spent where it is more useful.http://stackoverflow.com/questions/1587410/delphi-access-violation-after-calling-function-from-external-dll-c/1587413#1587413Comment by MadKeithV on Delphi: Access violation after calling function from external DLL (C++)MadKeithV2009-10-19T08:32:43Z2009-10-19T08:32:43ZDid you add the __stdcall in the Delphi defintion of the external function as well?http://stackoverflow.com/questions/1464904/worst-programming-related-injury/1464979#1464979Comment by MadKeithV on Worst programming related injuryMadKeithV2009-09-23T14:22:01Z2009-09-23T14:22:01ZI'm not technically a native speaker, but I lived in the UK for two years so I have a leg up.
The cause for my injury was prolonged keyboard use under stress, while I'm also an avid guitarist - NOT good for the wrists. If you can avoid tendinitis, please do, because it really, really hurts.
http://stackoverflow.com/questions/1464904/worst-programming-related-injury/1464979#1464979Comment by MadKeithV on Worst programming related injuryMadKeithV2009-09-23T11:55:45Z2009-09-23T11:55:45Z;-) No worries, I know what you mean about "stupidity" (hubris is another good word). Knowing how to "fail gracefully" is not just about handling error conditions in code.
Swapping mouse sides is actually not that difficult and it can really help take the strain off your hand for a short period of time. I use the keyboard for a lot of things, but you still need a mouse.
http://stackoverflow.com/questions/1464458/thread-creation-problemComment by MadKeithV on Thread Creation ProblemMadKeithV2009-09-23T07:37:12Z2009-09-23T07:37:12ZDup, by the same poster no less.
http://stackoverflow.com/questions/1453243/how-can-i-avoid-using-exception-in-cComment by MadKeithV on How can I avoid using exception in C++?MadKeithV2009-09-21T07:28:25Z2009-09-21T07:28:25ZCould you clarify your question? As it stands, the answer would seem to be: you simply don't throw exceptions, and try to avoid the circumstances that cause external code to throw exceptions by defensive coding.
http://stackoverflow.com/questions/1437816/partially-sort-vector-c/1437853#1437853Comment by MadKeithV on partially sort vector c++MadKeithV2009-09-17T16:05:17Z2009-09-17T16:05:17ZIn the above reworking, that never happens. It early-outs for either vector being empty.
http://stackoverflow.com/questions/1437816/partially-sort-vector-c/1437853#1437853Comment by MadKeithV on partially sort vector c++MadKeithV2009-09-17T12:01:33Z2009-09-17T12:01:33ZDur... where's my head at this morning... Thanks for that RPG.
http://stackoverflow.com/questions/1433345/or-is-not-valid-c-why-does-this-code-compile/1433393#1433393Comment by MadKeithV on or is not valid C++ : why does this code compile ?MadKeithV2009-09-17T11:47:43Z2009-09-17T11:47:43ZUnless _MSC_EXTENSIONS is defined
http://stackoverflow.com/questions/1437816/partially-sort-vector-c/1437853#1437853Comment by MadKeithV on partially sort vector c++MadKeithV2009-09-17T10:12:47Z2009-09-17T10:12:47ZGood point, sbi.
http://stackoverflow.com/questions/1433345/or-is-not-valid-c-why-does-this-code-compile/1433393#1433393Comment by MadKeithV on or is not valid C++ : why does this code compile ?MadKeithV2009-09-16T15:24:51Z2009-09-16T15:24:51ZIt is not in Visual Studio 2003 through 2010 (<a href="http://msdn.microsoft.com/en-us/library/bw6140c5%28VS.80%29.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>)http://stackoverflow.com/questions/1420972/accessing-an-array-with-a-negative-number/1421025#1421025Comment by MadKeithV on Accessing an array with a negative number! MadKeithV2009-09-14T12:25:47Z2009-09-14T12:25:47ZYour comment is correct - though I was under the impression that the original app had "hacked" around the negative index issue by mirroring the array in memory around 0 - giving the kind of behaviour with negative indexes that absolute value might do as well.
http://stackoverflow.com/questions/1392315/problems-with-singleton-pattern/1392352#1392352Comment by MadKeithV on Problems with Singleton PatternMadKeithV2009-09-08T07:03:40Z2009-09-08T07:03:40ZThe comment about memory management is wrong in C++, in my opinion. The "singleton" as a member object of the application object (as defined by the framework), for example, has a <i>well-defined</i> time of destruction. Any singleton implementation based on a "static" somewhere is prone to the static initialization / destruction order fiasco. I've seen some really ugly hacks to get around accesses to singletons from the destructors of other singletons.