vote up 96 vote down star
69

What will the last words of some kind of programmer be?

Like: LW of a Perl programmer:

I don't have to write documentation. The source is formatted so well, I can read it anytime later...

or

Im just going to write a regular expression to find this, then I'm done...

flag
1  
Another candidate for the "FSQ" close reason. – Paul Tomblin Jan 22 at 15:05
1  
@Daniel, I would agree, but these fun questions end up as badge-grabs. I received a gold badge for posting an XKCD comic. That's not what Jeff intended, I think. – Robert S. Jan 22 at 15:32
1  
These type of questions are ego-driven for the asker to rise to the top. Why should someone rise in the community for asking a cultural question, in a programming questions website. Usually these get like a million up votes, but they never actually help anyone. – Mark Rogers Jan 22 at 15:59
1  
Voted down and voted to close. The first twenty or thirty joke-questions were okay, but now... – mmyers Jan 22 at 19:53
show 28 more comments

177 Answers

vote up 3 vote down



//todo



link|flag
vote up 1 vote down

Visual Basic:

Microsoft has decided that Visual Basic .NET will not be backward-compatible with Visual Basic 6.0

link|flag
vote up 1 vote down

I trust the completely unknown users' input when they would enter and run their own sql on this public facing website.

http://thedailywtf.com/Articles/Oklahoma-Leaks-Tens-of-Thousands-of-Social-Security-Numbers,-Other-Sensitive-Data.aspx

link|flag
vote up 5 vote down

Microsoft:

Jon Skeet asked for a feature request, to import a little, trivial thing into the .NET framework...

link|flag
vote up 2 vote down

Yet another one in C:

life_id_t life;

life = fork();
if (life == 0) {
  assert(reincarnation);
  memset(brain, 0, sizeof(brain));
}
link|flag
show 2 more comments
vote up 3 vote down

PHP:

if (! mysql_query($sql))
   die(mysql_error());
link|flag
vote up 19 vote down

From an old cartoon: It's a grave-side scene immediately after a funeral. The sky is dark and threatening to rain. The young widow, dressed in black, is looking down at the grave. Her little boy stands beside her, holding her hand and crying.

A stranger approaches and asks, "I realize this is an awkward time but did you ever hear him mention the words 'SOURCE CODE'?

link|flag
vote up 5 vote down

Valid for any language:

"This behavior is by design."

link|flag
vote up 13 vote down
// todo: implement this later.
link|flag
vote up 12 vote down

Happy programmer:

ESC:wq

Unhappy programmer:

ESC:q!

link|flag
show 6 more comments
vote up 16 vote down

"I copied this from the internet."

link|flag
vote up 32 vote down
try
{
   LHC.Collide(Particle1, Particle2);
}
catch(Exception e)
{
   if(e is BlackHole)
   {
      //LOL
   }
}
link|flag
1  
Mr. BlackHole should own his own 'catch' block. :/ – Arnis L. Jul 29 at 15:56
show 1 more comment
vote up 3 vote down

DBA: i believe in reincarnation, so I'll just rollback and retry

link|flag
vote up 1 vote down

OK, that's the beta-test finished.

link|flag
vote up 1 vote down

Memory Fault, core dump

link|flag
vote up 4 vote down

python programmer using vim:

:%retab!
link|flag
vote up 2 vote down
// "That's All Folks!"
link|flag
vote up 3 vote down

Delphi

finally
  Free;
end;
link|flag
vote up 3 vote down

"The problem isn't with the code, it's the data you're supplying"...

or

"It's only a quick change it shouldn't impact anyone else"

an actual comment found in code I inherited:

// Please, for the love of God, WORK!
link|flag
vote up 3 vote down
C# Coder:



try{
Console.Write("I promise to code better if you give me more days!");
numberOfDaysExtension=AskForExtension(numberOfDaysRequired);
}
catch(NumberOfDaysRequiredOutOfRangeException e){
e.ToString();
}
finally{
if(numberOfDaysExtension<=0) {
	this.Dispose();
}
else{
	GetACupOfCoffee();
	GoBackToDesk();
	}
 }
link|flag
vote up 3 vote down

The C programmer:

I hope this string is NULL terminated!Fz}${%UOE)Ad0DL@+:zs]-i34ow74Segmentation Fault

link|flag
vote up 3 vote down

PL/SQL

EXCEPTION    
   WHEN OTHERS THEN NULL;
link|flag
show 1 more comment
vote up 2 vote down

An overflow is impossible.

link|flag
vote up 2 vote down

sudo shutdown -h now

link|flag
show 2 more comments
vote up 1 vote down

public class ToBeDisposed:IDisposable {

override Dispose() { base.Dispose(true); } }

link|flag
vote up 4 vote down

Last words of a java programmer:

catch (Exception e) { 
    // this shouldn't happen
}
link|flag
show 1 more comment
vote up 17 vote down

"Of course I have a backup!"

link|flag
vote up 2 vote down

If it was a php day I probably just: die;

link|flag
vote up 1 vote down

"Whatever you do, don't press the red WinForms button."

link|flag
vote up 5 vote down

Noooo, Dont cast me into a void....

link|flag

Your Answer

Get an OpenID
or

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