vote up 2 vote down star

Do you ever saw code like this in your practice?

bool b;
...
if(b == true)
{

}

or

if  {
    if {
        if {
            ...
        }
        else {...}
    }
    else {...}
}
else {...}

or most awesome

if(SomeFunc() > 5)
{
    int someVal = SomeFunc();
    ...
}

if no, you are lucky :) what other worst and funny codes did you see in your practice? My samples are in C# but you can write snippets in any languages

flag
2  
Is this not more appropriate on thedailtywtf.com ? – dmckee Aug 27 at 13:37
why to close? it's a good comunity wiki question I think – ArsenMkrt Aug 27 at 14:16
Closed. SO is not TDWTF. (previous attempts at asking the same / similar questions have been closed for the same reason...) – Shog9 Aug 28 at 0:24
don't you interested in bed and funny practuces? there are many questins in SO favorit programmer cartoon and etc. that are simular to my questin, why you vote to close? – ArsenMkrt Aug 28 at 3:03
Man this site lacks a sense of humour sometimes :( – joshcomley Oct 5 at 22:10

closed as not a real question by Kirill V. Lyadvinsky, blowdart, dmckee, Neil Butterworth, Shog9 Aug 28 at 0:23

10 Answers

vote up 11 vote down check

I once saw:

int userId = Database.GetUserById(user.Id).Id;

I shuddered and laughed quite equally.

link|flag
very very funny :) – ArsenMkrt Aug 27 at 11:23
1  
Not sure if there's some obvious context here, but you might do this if you were validating the credentials and the GetUserById() function threw an exception or something if invalid. – Will Aug 27 at 11:25
What iced the cake was that later on in the code, the "retrieved" user ID was used to... guess what? Get the user from the database. Sigh. – joshcomley Aug 27 at 11:26
Context: The user object was an earlier fetched Database.GetUserById() object, and the "retrieved" ID was used to later get the user from the database. How I weep qwerty tears. – joshcomley Aug 27 at 11:31
vote up 1 vote down

Something a colleague of mine came across recently:

if(country != newCountry ?? country)
    country = newCountry;

For the lazy, that can be translated to just

country = newCountry ?? country;

or, the equivalent:

if(newCountry != null)
    country = newCountry;

To my shame, I may have been responsible for the first incarnation.

link|flag
vote up 1 vote down

A coder I work with was helping a new coder with some of his code. Yesterday he forwarded me this snippet:

try { 
  bool bln = false; 
} 
catch 
{ 
} 
finally 
{ 
   sqlConnection.Close(); 
}
link|flag
vote up 1 vote down

A Database Schema from a CMS.. something like that..

table_page_id1001
PK:1 | pagename: "about" | content: "<html..." | date: "2001"

table_page_id1002
PK:1 | pagename: "contact" | content: "<html..." | date: "2009"

so each page entry had a own database table. can you follow, ok now try to imagine how much database tables this CMS had and how difficult that was to select anything! But the more funnier part is the whole database do not use any KEY's or INDEXE'S.

And don't ask me, why the hell the developer did that, i actually don't know that.

link|flag
vote up 4 vote down

I've taken over a project from another developer and was astonished to find something akin to this:

if (i>5)
{ foo = bar; }
elseif (i<=5)
{ foo = bar; }
else { }
link|flag
vote up 1 vote down

I don't get the point.

There is hardly anything wrong what so ever with any of the examples you gave.

if (bool == true)

is perfectly valid syntax because bool is a variable of some type, and for all types it should be possible to test variables of that type for equality with some value of that type.

The fact that it might be shorter and simpler to write 'if (bool)' does not make the alternative WRONG. And people who claim that the given example is "obfuscating", or "unclear to read" or some such, are merely exposing their shortage of skill in reading and understanding other people's code. If something is valid code because it is accepted by the compiler, then any programmer who claims to master the language in question should be able to read it and understand what it means. To pretend that there exists something like "the one single right syntax" is sheer idiocy. As is laughing about other people's code style, especially if the code works properly despite the "wrong style".

link|flag
2  
may be you will write if (((bool == true) = true) = true) ? :) – ArsenMkrt Aug 27 at 11:49
1  
There's different style, and bad style. Comparing bool values to true and false is bad style, and it demonstrates a fundamental failure to fully understand the compiler and language. However, some vendors (cough Microsoft cough) had a BOOL value in their APIs that wasn't a bool, and could actually have values other than TRUE or FALSE, breeding this bad habit with a lot of developers. – MadKeithV Aug 27 at 12:11
vote up 3 vote down

A variation on your first example:

boolean b;
...
if (b == true) {
    return true;
}
else {
    return false;
}
link|flag
I heard a (probably apocryphal) story about a developer who wrote code like this, then one day, asked if there was an easier way of "inverting" a boolean variable without having to write a multi-line IF statement. When the NOT operator was explained to him he was astoished and grateful. :-) – Christian Hayter Aug 27 at 13:13
vote up 8 vote down

True story:

$name_label = get_label('NAME', $report_lang) // Get the label text

if $report_lang = 'EN' then
    print $name_label;       // Print out the english label
else if lang = 'FR' then
    print $name_label;       // Print out the french label
else if 
         //16 more languages
   ...
end-if
link|flag
vote up 3 vote down

I recently fixed

using (DataSet ds = someExpensiveQuery())
    boundControl.DataSource = someExpensiveQuery();

at least we dispose.... one of them!

link|flag
lol...I saw the same thing happening in my application. It was a search page and my manager was freakin out about why it is so slow. So finally i fixed this and page was running with double speed. – noob2487 Nov 20 at 16:31
vote up 6 vote down

My favourite (was in Java):

x = x - x - x;

What's wrong with x = -x?

link|flag
2  
I saw an x = x - x once instead of x = 0. Not sure which is worse between the two. I'm guessing neither of these had anything to do with strange operator overloading, either. – Mark Rushakoff Aug 27 at 11:23

Not the answer you're looking for? Browse other questions tagged or ask your own question.