Stuff that annoys you...
1
Name:
Anonymous
2010-09-03 12:45
when reading code not written by yourself. For example, I cannot stand it when people use
if (condition)
...
else if (condition)
...
else if (condition)
...
else if (condition)
...
else
instead of the much more readable
if (condition)
...
else
if (condition)
...
else
if (condition)
...
else
if (condition)
...
else
41
Name:
Anonymous
2010-09-04 2:59
>>40
RETURN INSIDE MY ANUS
42
Name:
Anonymous
2010-09-04 4:23
43
Name:
Anonymous
2010-09-04 5:04
>>42
Let me just take a moment to care what you think.
Oh wait.
44
Name:
Anonymous
2010-09-04 6:18
>>43
If you didn't care what people thought, you wouldn't have posted
>>40 . You expected someone to pat you on the back for it, but instead your opinion is just stupid.
45
Name:
Anonymous
2010-09-04 18:30
Indenting your else ifs is retarded because they are in the same scope.
Real programming lanugages have switch statements.
46
Name:
Anonymous
2010-09-04 18:35
>>45
If you think the two are comparable you don't understand
switch statements.
47
Name:
Anonymous
2010-09-04 18:52
Hi
What the love are you guys talking about.
48
Name:
Anonymous
2010-09-04 20:53
Ewww, nested if statements.
How about case or switch?
49
Name:
Anonymous
2010-09-04 21:04
50
Name:
Anonymous
2010-09-05 0:33
>>48
see
>>46
Or possibly you don't understand nested ifs.
51
Name:
Anonymous
2010-09-05 3:25
>>39
real Lisp
that's a good one 3/10
52
Name:
Anonymous
2010-09-05 8:24
>>44
Yawn.
Stuff that annoys you...
Not
Stuff you want validation of "the crowd" for...
Reading comprehension, motherfucker, do you speak it?
53
Name:
Anonymous
2010-09-05 13:28
>>43,52
This sort of thing wasn't supposed to happen anymore now that schools are back in session. Is the weekend the new summer?
54
Name:
Anonymous
2010-09-05 16:39
>>53
Mm. The delicious taste of defeat.
55
Name:
Anonymous
2010-09-05 16:48
>>54
Sure, if you count that nonsensical statement in
>>52 as a defeat.
56
Name:
Anonymous
2010-09-05 17:29
I hate it when people obsessively use switches (especially when there are <5 cases).
57
Name:
Anonymous
2010-09-05 17:41
switch (people.switch_usage) {
case OBSESSIVE:
hate();
}
58
Name:
Anonymous
2010-09-05 17:44
>>56
What would you prefer they use?
59
Name:
Anonymous
2010-09-05 18:14
>>58
Non-deterministic Touring machines, which branch to every possible outcome.
60
Name:
Anonymous
2010-09-05 19:10
>>59
But there is only one possible outcome: an anus gets haxxed.
61
Name:
Anonymous
2010-09-06 4:24
i hate it when people say "readable" rather than "legible"
62
Name:
Anonymous
2010-09-06 10:31
>>61
That's because your command of English is
not so good .
63
Name:
Anonymous
2010-09-06 20:59
bothers me to though I would be using case of most times
64
Name:
Anonymous
2010-09-06 21:31
LOL ENGLIZH FAILZ IN DIS THRED LOL ^_^
66
Name:
Anonymous
2011-01-31 20:48
<-- check em dubz
67
Name:
Anonymous
2011-02-03 7:25