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

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

Skizz

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

Mars orbiter team circa 1999:

Yeah, so feet and inches who uses that any more...?

link|flag
7  
Americans still use that!! it's sad – hasen j Jan 28 at 15:56
2  
xkcd.com/526 – Kev Feb 2 at 14:41
show 3 more comments
vote up 14 vote down

VBasic:

GoTo HEAVEN
link|flag
vote up 43 vote down

Perl & PHP:

die("So long, and thanks for all the fish");
link|flag
1  
Yay for Hitchhikers refrence. – Pim Jager Jan 22 at 15:59
show 1 more comment
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 8 vote down

perl


cat /dev/urandom > test.pl; perl test.pl; echo $?

result: 0

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

Language-independent: That's a feature, not a bug...

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

I'll just copy and paste these 50 lines, search and replace, and presto I'm done!

link|flag
show 1 more comment
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 48 vote down

Maybe already there but I think those comments are famous last words....

// this can't happen

Also found as: (thx to Pim Jager)

//This should never happen.
link|flag
1  
In my code find you can find this quite often as: //This should never happen. – Pim Jager Jan 22 at 16:30
3  
If you've thought it through carefully and still think it should never happen, you could put in an assert. Your program will fail earlier and will be easier to debug. – Albert Jan 22 at 21:07
2  
Joking aside, it's better to use assert() here: assert that the thing is not happening, don't just state in a comment that it shouldn't. – dehmann Feb 10 at 6:08
show 3 more comments
vote up 8 vote down

PHP:

if($me->getLifespan() - 30 <= time()) {
    $dying_words = 'I have no regrets.  Well, except for ';
    $dying_words .= implode($regrets, ', ');
    $dying_words .= ' and... nah, that\'s it. Bye.';
    die($dying_words);
} else $me->rockOn();
link|flag
1  
I suppose the key is to keep your regret list small... the performance of Human::rockOn() declines as the size of $regrets increases, after all, so you could be onto a more widespread problem. – Duane Sibilly Jan 22 at 19:18
show 1 more comment
vote up 1 vote down

Windows:

DEL /S /Q * .txt
link|flag
vote up 20 vote down

PHP tutors:

It's only aimed at beginners, the security stuff can go in a later chapter...

PHP site developers:

It's only a prototype, we can worry about that escaping business later...

PHP site users:

I'll just browse this site using IE...

link|flag
vote up 4 vote down

PHP:

 "?>"
link|flag
vote up 73 vote down

Java people don't die, they wait for the garbage collector to get them :P

link|flag
5  
But the garbage collector can only get them if no one else knows they exist... – mmyers Jan 23 at 14:46
3  
So they die as soon as their last friend dies. But he knows it's friend...typical problem GCs have on their daily work :-) So if the GC is good it just kills the whole clan :-) – rstevens Jan 24 at 19:28
5  
@rstevens: Do Java programmers have friends then? :P – BenAlabaster Jan 28 at 15:57
2  
Isn't it: you don't have to bury a java programmer when he dies, the garbage collector will get him. – Nathan Feger Feb 5 at 5:22
vote up 33 vote down

ASP.NET:

/* The commented code below was DELETED because, even though it was commented out, 
it was  being executed anyway. */

I've actually seen this...

link|flag
3  
ASP.NET will still execute even if its wrapped in '<!--' and '-->'. The trick to commenting out ASP.NET markup is using "server-side" comments instead: <%-- ... --%> – Juliet Jan 23 at 0:18
2  
So if the code below is gone, what's the point of mentioning it? – TM Feb 8 at 2:36
2  
/* The comment I left below was DELETED because, even though the answer is 6 months old, it was commented anyway. */ – James M. Jul 31 at 9:32
show 1 more comment
vote up 1 vote down

Vb programmer: all I wanted was to be loved!

link|flag
vote up 5 vote down

I'm always testing these changes in production! How else would I know they are safe?

link|flag
show 2 more comments
vote up 6 vote down
<?php
    $john = '';
    unset($john);
    header("HTTP/1.0 404 Not Found");
?>
link|flag
vote up 2 vote down

DROP TABLE mankind

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

Lolcode (http://lolcode.com/):

KTHXBYE
link|flag
vote up 4 vote down

For fans of Terry Pratchett's Granny Weatherwax

while (!deadyet) {
    print("I aten't dead");
}
link|flag
vote up 11 vote down
MessageBox.Show("This should never happen. Tell a programmer.");
link|flag
vote up 1 vote down
//HACK: insert your, "i will fix this later" excuse
//FAKE: insert your, "he/she/it isn't completed yet, I'll just hard code this for now" excuse
link|flag
vote up 1 vote down

System.exit();

link|flag
vote up 1 vote down

java programmer:

this.finalize()
link|flag
vote up 148 vote down

goto

link|flag
4  
Is their a question that XKCD does not have a comic for? – Pim Jager Jan 22 at 20:33
2  
@Pim Pager: Maybe, but not likely. – luiscubal Jan 22 at 22:26
1  
@Pim Jager - the exact question you just asked? – Damien_The_Unbeliever Jan 23 at 10:15
2  
"Is THERE a question..." - Fixed. – Richie_W Jan 24 at 18:51
1  
That happened to me once... Or was it a dream? – JohannesH Aug 21 at 3:06
show 3 more comments
vote up 28 vote down

A C++ programmer on his deathbed is haunted by a memory leak.

With his last breath he wispers:

"Is that you 0xfaccface?"

link|flag

Your Answer

Get an OpenID
or

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