vote up 96 vote down star
70

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 1 vote down

Last words of a C++ programmer:

"Yeah! I finished it! I'll compile it..."

(2587 compiler errors)

"What can be wrong here? This can't be happening to my beautiful code!"

(forgot a semicolon in the middle of a template class)

**dies

link|flag
vote up 7 vote down
  1. Death speaks: "... I was surprised to see him here at Mountain View, for I have an appointment with him tonight in Redmond."

  2. "I have found an O(1) solution to the Travelling Salesman Problem, but the margin of my Moleskine is too small to contain it."

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

Segmentation fault

link|flag
vote up 8 vote down

I'm surprised no one has yet mentioned:

Quick! someone switch back to "More Magic"!

link|flag
vote up 1 vote down

of a wicket framework user:

                }
            });

        }});
}

} based on a true story. cust copy/pasted from the file i was editing right now. the bizzarre mix of } }} ) ; and their different sematics drives me insane.

link|flag
vote up 2 vote down

it was working on my machine ..

link|flag
vote up 1 vote down

C:

return 0;

link|flag
vote up 10 vote down
    </blink>
</font>
link|flag
vote up 3 vote down

For the "Testing is for wimps" programmer:

"If it compiles, ship it!"

link|flag
vote up 1 vote down

PHP:

/*
link|flag
vote up 2 vote down
using(Programmer p = new Programmer(Programmer.Flavours.CSharp))
{
   while(!p.Fingers.Arthritic)
   {
       p.TryWriteCode();
   }
   p.Retire();
   p.WriteWill(p.Descendents);
}
link|flag
vote up 2 vote down

Reminds me, couple of comments that I saw in production few years ago

// 'programmer name' commented here because it was giving error 
// incorrect code goes here

One more,

// Added by 'programmer name'

This comment is particularly annoying, because the programmer has cared enough to say who added the code, but not what the code does or it's purpose

try
{
  DoStuff();
}
catch(Excpetion ex)
{
  // This should never happen, but if it happens
  // we need to use Exception logging mechanism
  // As of now, we do nothing
}

and 3 years later, the catch block continues to live

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

Skeeeeeeeeet!

link|flag
1  
You should take a screengrab of James T. Kirk and adding this text to it for more impact :D – Michael Stum Jan 28 at 1:10
5  
Thank you for summing up the Photoshop skills of 95% of the userbase here, including me. – T Pops Jun 23 at 19:46
1  
Photoshop?!? Mister, I work for a living! I used Hypersnap DX (screenshot tool)! – JohnFx Jun 23 at 23:04
vote up 2 vote down
main() {
        printf("goodbye, world");
 }
link|flag
vote up 1 vote down

}

}

No... wait..

}}

}

link|flag
vote up 2 vote down

Coq: Yep, Q.e.d., it's true. I mean, if you prove this simple, obvious lemma ...

link|flag
vote up 1 vote down

Windows:

This program has performed an illegal operation, the secret service has been notified, you have 30 seconds...

Two buttons - [Run now] [Disappear later]

link|flag
vote up 1 vote down

For you Java sci-fi fans:

void destination() {
  if (!hope) {
    system.exit(0):
  }
}
link|flag
vote up 1 vote down

I saw this comment in Axis code - "I'm not sure if we need this code any more, but I'm afraid to delete it."

link|flag
vote up 3 vote down
try{
    ...
}carch(Exception ignore){
   //This won't happen
}
link|flag
vote up 3 vote down

"Do not disturb my circles".

Archimedes

link|flag
vote up 2 vote down

VB

Set Me = Nothing
link|flag
vote up 1 vote down

// TODO: This really shouldn't be done this way but I don't want to bother fixing it right now...

link|flag
vote up 1 vote down

PowerBuilder programmer:

See you in heaven. I've done my time in hell programming in PB.

link|flag
vote up 13 vote down

Maintenance programmer new to C:

"Oh my god, it's full of stars!"

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

Catastrophic failure

link|flag
vote up 1 vote down

C#

Human Live()
//.......
Return this;
link|flag
vote up 3 vote down

exit('stage left');

link|flag
vote up 5 vote down

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

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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