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

PHP

php_flag register_globals on

There, that should make my life easier.

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

Windows Engineer

Ctrl+Alt+Del

link|flag
5  
Windows "Engineer"? – Nolte Burke Jan 24 at 11:35
show 4 more comments
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 18 vote down

Nearly there!
Just two more minutes and I'm done!

link|flag
vote up 17 vote down

Web:

Let's use frames !!

link|flag
1  
I never understood why ppl hated frames – acidzombie24 Nov 12 at 1:14
vote up 17 vote down

"Of course I have a backup!"

link|flag
vote up 16 vote down

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

KTHXBYE
link|flag
vote up 15 vote down

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

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

"I copied this from the internet."

link|flag
vote up 14 vote down

VBasic:

GoTo HEAVEN
link|flag
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 13 vote down

Python programmer:

You know, I bet we could use a list comprehension/map/filter/reduce for this.

This is usually followed by writing some incomprehensible Perl-like one liners.

link|flag
show 4 more comments
vote up 13 vote down
// todo: implement this later.
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 13 vote down

Since life is a bug, it must be reproducible

link|flag
show 1 more comment
vote up 12 vote down
try
{
  doStuff();
}
//catch(Exception e)
//{
////This can't happen
//}
link|flag
1  
This would be more realistic if the catch block wasn't commented out, because 1) it won't even compile if doStuff() throws checked exception (as Exception implies) and 2) a common mistake is to do just that: catch (any) exception and do absolutely nothing about it – Jonik Jan 23 at 19:59
vote up 12 vote down

Who put triggers in the database!

link|flag
2  
delete table where id=4 // 1 row(s) affected // 0 row(s) affected // 14 row(s) affected // OMG what did I just do? – tsilb Nov 3 at 16:02
vote up 12 vote down

Happy programmer:

ESC:wq

Unhappy programmer:

ESC:q!

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

Any object-oriented language (Delphi syntax below):

Self.Free;
link|flag
vote up 11 vote down
MessageBox.Show("This should never happen. Tell a programmer.");
link|flag
vote up 10 vote down
//Do not touch!
link|flag
vote up 10 vote down
    </blink>
</font>
link|flag
vote up 10 vote down

Windows:

Either this desktop wallpaper goes, or I do.

(with apologies to Oscar Wilde and Echostorm, who correctly pointed out that it was not George Bernard Shaw to whom I should be apologizing)

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

I'm surprised no one has yet mentioned:

Quick! someone switch back to "More Magic"!

link|flag
vote up 9 vote down

mysql> UPDATE users SET password = '123456'; WHERE username='MyName'; Query OK, 4858210 rows affected (0.51 sec) Rows matched: 4858210 Changed: 48958210 Warnings: 0

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE username='MyName' at line 1

link|flag
show 2 more comments
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 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 8 vote down

Any (real) programmer:

"It works on my machine"

link|flag
show 1 more comment
vote up 8 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

Your Answer

Get an OpenID
or

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