Click here to Skip to main content
15,890,438 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: invert if : visual studio code helper Pin
raddevus5-Aug-20 4:23
mvaraddevus5-Aug-20 4:23 
GeneralRe: invert if : visual studio code helper Pin
Greg Utas5-Aug-20 4:22
professionalGreg Utas5-Aug-20 4:22 
GeneralRe: invert if : visual studio code helper Pin
raddevus5-Aug-20 4:31
mvaraddevus5-Aug-20 4:31 
GeneralRe: invert if : visual studio code helper Pin
OriginalGriff5-Aug-20 5:24
mveOriginalGriff5-Aug-20 5:24 
GeneralRe: invert if : visual studio code helper Pin
raddevus5-Aug-20 8:15
mvaraddevus5-Aug-20 8:15 
GeneralRe: invert if : visual studio code helper Pin
Nelek5-Aug-20 8:51
protectorNelek5-Aug-20 8:51 
GeneralRe: invert if : visual studio code helper Pin
Jon McKee12-Aug-20 11:23
professionalJon McKee12-Aug-20 11:23 
GeneralRe: invert if : visual studio code helper Pin
Dan Neely10-Aug-20 8:57
Dan Neely10-Aug-20 8:57 
This is mostly useful if you've got multiple nested ifs and the indentation is getting obnoxious.
C#
if (condition1)
{
    Something1();
    if (condition2)
    {
        Something2();
        if (condition3)
        {
            Something3();
            if (condition4)
            {
                Something4();
                if (condition5)
                {
                    Something(5);
                }
                else 
                {
                    return;
                }
            }
            else 
            {
                return;
            }
        }
        else 
        {
            return;
        }
    }
    else 
    {
        return;
    }
}
else 
{
    return;
}

flattens to:
C#
if (!condition1)
{
    return;
}
Something1();

if (!condition2)
{
    return;
}
Something2();

if (!condition3)
{
    return;
}
Something3();

if (!condition4)
{
    return;
}
Something4();

if (!condition5)
{
    return;
}
Something5();
Did you ever see history portrayed as an old man with a wise brow and pulseless heart, weighing all things in the balance of reason?
Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful?
--Zachris Topelius

Training a telescope on one’s own belly button will only reveal lint. You like that? You go right on staring at it. I prefer looking at galaxies.
-- Sarah Hoyt

GeneralRe: invert if : visual studio code helper Pin
jsc4210-Aug-20 23:19
professionaljsc4210-Aug-20 23:19 
GeneralRe: invert if : visual studio code helper Pin
Greg Utas11-Aug-20 1:12
professionalGreg Utas11-Aug-20 1:12 
GeneralEgyptology and computer science PinPopular
Randor 4-Aug-20 4:48
professional Randor 4-Aug-20 4:48 
GeneralRe: Egyptology and computer science Pin
raddevus4-Aug-20 5:25
mvaraddevus4-Aug-20 5:25 
GeneralRe: Egyptology and computer science Pin
Randor 4-Aug-20 8:02
professional Randor 4-Aug-20 8:02 
GeneralRe: Egyptology and computer science Pin
honey the codewitch4-Aug-20 5:51
mvahoney the codewitch4-Aug-20 5:51 
GeneralRe: Egyptology and computer science Pin
Randor 4-Aug-20 8:23
professional Randor 4-Aug-20 8:23 
GeneralRe: Egyptology and computer science Pin
honey the codewitch4-Aug-20 8:36
mvahoney the codewitch4-Aug-20 8:36 
GeneralRe: Egyptology and computer science Pin
Rick York4-Aug-20 11:16
mveRick York4-Aug-20 11:16 
GeneralRe: Egyptology and computer science Pin
Randor 4-Aug-20 11:50
professional Randor 4-Aug-20 11:50 
GeneralFound on TDWTF Pin
Brisingr Aerowing30-Jul-20 8:49
professionalBrisingr Aerowing30-Jul-20 8:49 
GeneralRe: Found on TDWTF Pin
User 1106097930-Jul-20 9:13
User 1106097930-Jul-20 9:13 
General99 bottles of beer in Malbolge Pin
Brisingr Aerowing29-Jun-20 6:17
professionalBrisingr Aerowing29-Jun-20 6:17 
GeneralRe: 99 bottles of beer in Malbolge Pin
Sander Rossel12-Jul-20 4:54
professionalSander Rossel12-Jul-20 4:54 
GeneralRe: 99 bottles of beer in Malbolge Pin
honey the codewitch12-Jul-20 6:09
mvahoney the codewitch12-Jul-20 6:09 
GeneralRe: 99 bottles of beer in Malbolge Pin
Jörgen Andersson26-Jul-20 10:26
professionalJörgen Andersson26-Jul-20 10:26 
GeneralRe: 99 bottles of beer in Malbolge Pin
honey the codewitch26-Jul-20 10:27
mvahoney the codewitch26-Jul-20 10:27 

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.