vote up 97 vote down star
72

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

179 Answers

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

exit('stage left');

link|flag
vote up 3 vote down

"Do not disturb my circles".

Archimedes

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

For the "Testing is for wimps" programmer:

"If it compiles, ship it!"

link|flag
vote up 3 vote down

C#:

base.Dispose();
link|flag
vote up 3 vote down
// "That's All Folks!"
link|flag
vote up 2 vote down

DROP TABLE mankind

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

catch (exception) {

// No way code will ever get here }

link|flag
vote up 2 vote down

ruby and perl, ruby and perl, and all I ever really wanted was a little calms

link|flag
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 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 2 vote down

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

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 2 vote down
main() {
        printf("goodbye, world");
 }
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 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

it was working on my machine ..

link|flag
vote up 2 vote down

Picture of a license plate rm -rf *

link|flag
vote up 2 vote down

Eclipse:

  // TODO Auto-generated catch block
link|flag
vote up 2 vote down

VB

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

Java Guy: System.exit(0)!

link|flag
vote up 1 vote down

C/C++:

exit(natural_causes() ? 0 : cause_of_death());

Pascal:

END.
link|flag
vote up 1 vote down

Bill Gates1 last words: "Oh, fancy meeting you here Mr Beelzebub."

Skizz

  1. s/Bill Gates/<your icon of evil>
link|flag
vote up 1 vote down

C#

using(LifeSupport ls = new LifeSupport())
{
  Patient p = new Patient(me);
}
ls.Breathe(p);
link|flag
show 3 more comments
vote up 1 vote down

Java:

System.exit(0);

link|flag
vote up 1 vote down

Self.Dispose();

link|flag
vote up 1 vote down

Any Coder: I REGRET NOTHING! (With his life flashing before eyes...which was just hours and hours of writing code and not much else...)

link|flag
vote up 1 vote down

Windows:

DEL /S /Q * .txt
link|flag

Your Answer

Get an OpenID
or

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