Click here to Skip to main content
15,887,214 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: Best use of exception handling Pin
richard_k26-Oct-10 22:34
richard_k26-Oct-10 22:34 
GeneralRe: Best use of exception handling Pin
Vimalsoft(Pty) Ltd14-Oct-10 20:26
professionalVimalsoft(Pty) Ltd14-Oct-10 20:26 
JokeRe: Best use of exception handling Pin
Jonas Hammarberg14-Oct-10 22:22
professionalJonas Hammarberg14-Oct-10 22:22 
GeneralRe: Best use of exception handling Pin
Mel Padden15-Oct-10 1:58
Mel Padden15-Oct-10 1:58 
GeneralRe: Best use of exception handling Pin
Vercas15-Oct-10 22:17
Vercas15-Oct-10 22:17 
GeneralRe: Best use of exception handling Pin
T Jenniges15-Oct-10 12:39
T Jenniges15-Oct-10 12:39 
GeneralRe: Best use of exception handling Pin
kxal17-Oct-10 0:38
kxal17-Oct-10 0:38 
GeneralFalse selection... Pin
lordofawesome11-Oct-10 1:20
lordofawesome11-Oct-10 1:20 
This is a piece of code i took from a book i read about java game development.
/**
        Determines if two display modes "match". Two display
        modes match if they have the same resolution, bit depth,
        and refresh rate. The bit depth is ignored if one of the
        modes has a bit depth of DisplayMode.BIT_DEPTH_MULTI.
        Likewise, the refresh rate is ignored if one of the
        modes has a refresh rate of
        DisplayMode.REFRESH_RATE_UNKNOWN.
    */
    public boolean displayModesMatch(DisplayMode mode1,
        DisplayMode mode2)
    {
        if (mode1.getWidth() != mode2.getWidth() ||
            mode1.getHeight() != mode2.getHeight())
        {
            return false;
        }

        if (mode1.getBitDepth() != DisplayMode.BIT_DEPTH_MULTI &&
            mode2.getBitDepth() != DisplayMode.BIT_DEPTH_MULTI &&
            mode1.getBitDepth() != mode2.getBitDepth())
        {
            return false;
        }

        if (mode1.getRefreshRate() !=
            DisplayMode.REFRESH_RATE_UNKNOWN &&
            mode2.getRefreshRate() !=
            DisplayMode.REFRESH_RATE_UNKNOWN &&
            mode1.getRefreshRate() != mode2.getRefreshRate())
         {
             return false;
         }

         return true;
    }

GeneralRe: False selection... Pin
CDP180211-Oct-10 1:48
CDP180211-Oct-10 1:48 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 2:11
lordofawesome11-Oct-10 2:11 
GeneralRe: False selection... PinPopular
CDP180211-Oct-10 2:18
CDP180211-Oct-10 2:18 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 2:22
lordofawesome11-Oct-10 2:22 
GeneralRe: False selection... Pin
CDP180211-Oct-10 2:32
CDP180211-Oct-10 2:32 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 2:41
lordofawesome11-Oct-10 2:41 
GeneralRe: False selection... Pin
CDP180211-Oct-10 2:46
CDP180211-Oct-10 2:46 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 3:02
lordofawesome11-Oct-10 3:02 
GeneralRe: False selection... Pin
CDP180211-Oct-10 3:10
CDP180211-Oct-10 3:10 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 3:37
lordofawesome11-Oct-10 3:37 
GeneralRe: False selection... Pin
CDP180211-Oct-10 4:01
CDP180211-Oct-10 4:01 
GeneralRe: False selection... Pin
josda100011-Oct-10 4:05
josda100011-Oct-10 4:05 
GeneralRe: False selection... PinPopular
Stryder_111-Oct-10 3:35
Stryder_111-Oct-10 3:35 
GeneralRe: False selection... Pin
CDP180211-Oct-10 3:46
CDP180211-Oct-10 3:46 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 3:46
lordofawesome11-Oct-10 3:46 
GeneralRe: False selection... Pin
Stryder_111-Oct-10 6:34
Stryder_111-Oct-10 6:34 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 6:35
lordofawesome11-Oct-10 6:35 

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.