Click here to Skip to main content
15,921,276 members

The Weird and The Wonderful

   

The Weird and The Wonderful forum is a place to post Coding Horrors, Worst Practices, and the occasional flash of brilliance.

We all come across code that simply boggles the mind. Lazy kludges, embarrassing mistakes, horrid workarounds and developers just not quite getting it. And then somedays we come across - or write - the truly sublime.

Post your Best, your worst, and your most interesting. But please - no programming questions . This forum is purely for amusement and discussions on code snippets. All actual programming questions will be removed.

 
GeneralRe: How to test equality Pin
Jaime Olivares31-Oct-09 19:20
Jaime Olivares31-Oct-09 19:20 
GeneralRe: How to test equality Pin
dojohansen7-Jan-10 23:16
dojohansen7-Jan-10 23:16 
JokeRe: How to test equality Pin
Jeroen De Dauw28-Oct-09 11:44
Jeroen De Dauw28-Oct-09 11:44 
GeneralRe: How to test equality Pin
Super Lloyd29-Oct-09 14:14
Super Lloyd29-Oct-09 14:14 
GeneralRe: How to test equality Pin
supercat930-Oct-09 9:26
supercat930-Oct-09 9:26 
GeneralRe: How to test equality Pin
Richard MacCutchan31-Oct-09 0:06
mveRichard MacCutchan31-Oct-09 0:06 
GeneralRe: How to test equality Pin
OriginalGriff31-Oct-09 0:51
mveOriginalGriff31-Oct-09 0:51 
GeneralRe: How to test equality Pin
supercat91-Nov-09 13:47
supercat91-Nov-09 13:47 
Richard MacCutchan wrote:
In my experience the more simple and standard the code is the better. Whether you write bitVar = !!(byteVar & 0x40); or bitVar = ((byteVar & 0x40) != 0);, chances are the compiler will optimise it and generate the same object code.


I use the more verbose syntax when testing more than one bit, to make explicit whether I am checking for any bit being set, or all bits being set. Whether or not anyone else uses the same convention, I find that at least in my own code it's nice to be able to distinguish at a glance between single-bit tests and multi-bit tests.
GeneralRe: How to test equality Pin
PJ Arends1-Nov-09 7:39
professionalPJ Arends1-Nov-09 7:39 
GeneralRe: How to test equality Pin
supercat91-Nov-09 13:27
supercat91-Nov-09 13:27 
GeneralRe: How to test equality Pin
Luc Pattyn1-Nov-09 13:33
sitebuilderLuc Pattyn1-Nov-09 13:33 
GeneralRe: How to test equality Pin
supercat91-Nov-09 14:45
supercat91-Nov-09 14:45 
GeneralRe: How to test equality Pin
Luc Pattyn1-Nov-09 15:00
sitebuilderLuc Pattyn1-Nov-09 15:00 
GeneralRe: How to test equality Pin
supercat91-Nov-09 17:01
supercat91-Nov-09 17:01 
GeneralRe: How to test equality Pin
Robert Surtees6-Nov-09 7:32
Robert Surtees6-Nov-09 7:32 
GeneralRe: How to test equality Pin
Nemanja Trifunovic10-Nov-09 11:37
Nemanja Trifunovic10-Nov-09 11:37 
GeneralString of Horror Pin
Izisin28-Oct-09 9:01
Izisin28-Oct-09 9:01 
GeneralRe: String of Horror Pin
Adam Maras28-Oct-09 10:42
Adam Maras28-Oct-09 10:42 
GeneralRe: String of Horror Pin
Jaime Olivares31-Oct-09 19:31
Jaime Olivares31-Oct-09 19:31 
GeneralRe: String of Horror Pin
dojohansen7-Jan-10 23:20
dojohansen7-Jan-10 23:20 
Generaltrying to figure out if number is negative Pin
Omar Gameel Salem26-Oct-09 1:19
professionalOmar Gameel Salem26-Oct-09 1:19 
GeneralRe: trying to figure out if number is negative Pin
J4amieC26-Oct-09 1:46
J4amieC26-Oct-09 1:46 
GeneralRe: trying to figure out if number is negative Pin
Jarek Kruza26-Oct-09 1:55
Jarek Kruza26-Oct-09 1:55 
GeneralRe: trying to figure out if number is negative Pin
Omar Gameel Salem26-Oct-09 2:21
professionalOmar Gameel Salem26-Oct-09 2:21 
GeneralRe: trying to figure out if number is negative Pin
Jarek Kruza26-Oct-09 2:31
Jarek Kruza26-Oct-09 2:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.