irishScott
Lifer
http://freeworld.thc.org/root/phun/unmaintain.html
Sadly enough, I've seen some of these. It's long. Enjoy! 🙂
Sadly enough, I've seen some of these. It's long. Enjoy! 🙂
29. How To Fix Unused Variable Errors
If your compiler issues "unused local variable" warnings, don't get rid of the variable. Instead, just find a clever way to use it. My favorite is...
i = i;
That is so cruel....Hide Macro Definitions
Hide macro definitions in amongst rubbish comments. The programmer will get bored and not finish reading the comments thus never discover the macro. Ensure that the macro replaces what looks like a perfectly legitimate assignment with some bizarre operation, a simple example:
#define a=b a=0-b
Originally posted by: statik213
That is so cruel....Hide Macro Definitions
Hide macro definitions in amongst rubbish comments. The programmer will get bored and not finish reading the comments thus never discover the macro. Ensure that the macro replaces what looks like a perfectly legitimate assignment with some bizarre operation, a simple example:
#define a=b a=0-b