Click here to Skip to main content
15,914,071 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: Let's "switch" to Something Else Pin
jibalt5-Apr-13 19:20
jibalt5-Apr-13 19:20 
GeneralRe: Let's "switch" to Something Else Pin
BobJanova8-Apr-13 0:48
BobJanova8-Apr-13 0:48 
GeneralRe: Let's "switch" to Something Else Pin
jibalt8-Apr-13 23:42
jibalt8-Apr-13 23:42 
GeneralRe: Let's "switch" to Something Else Pin
BobJanova9-Apr-13 23:23
BobJanova9-Apr-13 23:23 
GeneralRe: Let's "switch" to Something Else Pin
jibalt10-Apr-13 6:33
jibalt10-Apr-13 6:33 
GeneralRe: Let's "switch" to Something Else Pin
Rob Grainger9-Apr-13 2:59
Rob Grainger9-Apr-13 2:59 
GeneralRe: Let's "switch" to Something Else Pin
jschell9-Apr-13 9:05
jschell9-Apr-13 9:05 
GeneralRe: Let's "switch" to Something Else Pin
jibalt10-Apr-13 6:34
jibalt10-Apr-13 6:34 
GeneralRe: Let's "switch" to Something Else Pin
jschell10-Apr-13 8:17
jschell10-Apr-13 8:17 
GeneralRe: Let's "switch" to Something Else Pin
jibalt25-Apr-13 15:44
jibalt25-Apr-13 15:44 
GeneralRe: Let's "switch" to Something Else Pin
NAANsoft9-Apr-13 1:25
NAANsoft9-Apr-13 1:25 
GeneralRe: Let's "switch" to Something Else Pin
Rob Grainger9-Apr-13 3:01
Rob Grainger9-Apr-13 3:01 
GeneralRe: Let's "switch" to Something Else Pin
NAANsoft9-Apr-13 4:23
NAANsoft9-Apr-13 4:23 
GeneralRe: Let's "switch" to Something Else Pin
jschell9-Apr-13 9:03
jschell9-Apr-13 9:03 
GeneralRe: Let's "switch" to Something Else Pin
Gary Wheeler4-Apr-13 0:47
Gary Wheeler4-Apr-13 0:47 
GeneralRe: Let's "switch" to Something Else Pin
jibalt5-Apr-13 19:21
jibalt5-Apr-13 19:21 
GeneralRe: Let's "switch" to Something Else Pin
Gary Wheeler8-Apr-13 0:11
Gary Wheeler8-Apr-13 0:11 
GeneralRe: Let's "switch" to Something Else Pin
ClockMeister9-Apr-13 1:52
professionalClockMeister9-Apr-13 1:52 
GeneralRe: Let's "switch" to Something Else Pin
RafagaX9-Apr-13 4:56
professionalRafagaX9-Apr-13 4:56 
GeneralRe: Let's "switch" to Something Else Pin
Dan Sutton9-Apr-13 6:34
Dan Sutton9-Apr-13 6:34 
GeneralRe: Let's "switch" to Something Else Pin
jschell9-Apr-13 9:08
jschell9-Apr-13 9:08 
GeneralRe: Let's "switch" to Something Else Pin
Martin081510-Apr-13 1:41
professionalMartin081510-Apr-13 1:41 
In my eyes it is ugly, but one of the easies way to compare strings (up to 8 bytes) in a most efficient way.

If it's needed and documented ... ok.

I recently saw a very strange way to copy an object in C++:

  1. the class defines all its data member attributes within 64 Byte
  2. the data member attributes are ordered to use alignment efficently
  3. copying the class is done this way (or similar)
    C++
    C64bitClass  src, dst;
    
    // cast the pointer to the source/destination object to __int64 pointers
    __int64 *pnSrc = static_cast<__int64*>(&src);
    __int64 *pnDst = static_cast<__int64*>(&dst);
    
    // copy the first 64bit of the object - the data of the object
    *pnDst = *pnSrc;


This really ugly, isn't it!
GeneralThings that make you go WTF... Pin
Gary Wheeler1-Apr-13 1:32
Gary Wheeler1-Apr-13 1:32 
GeneralRe: Things that make you go WTF... Pin
Matt T Heffron1-Apr-13 8:53
professionalMatt T Heffron1-Apr-13 8:53 
GeneralRe: Things that make you go WTF... Pin
Gary Wheeler1-Apr-13 8:59
Gary Wheeler1-Apr-13 8:59 

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.