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

prev 1 2 3 4 5 6
vote up 3 vote down

It is out of the scope

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

To be a little poetic:

/(bb|[^b]{2})/ that is the Question.

link|flag
1  
Actually... That translates to "Two B or Two Not-B". – DanM Jan 22 at 18:29
2  
No, it should be 10b | ~10b – Alnitak Jan 23 at 13:32
4  
I have a sign saying "2B or Not 2B" on my front door (I've live in apartment 2B) – James Curran Jan 23 at 19:25
9  
/bb|(?!bb)/ = negative assertions – porneL Jan 26 at 20:27
2  
My proofreaders reduced it to ... 1 – gbarry Feb 12 at 0:40
show 3 more comments
vote up 92 vote down

"It's a hardware problem"

link|flag
14  
Dude, this is going on my tombstone. – Patrick Johnmeyer Jan 22 at 19:22
3  
It usually is a chair/keyboard interface problem ;) – Thomas Levesque Jul 1 at 10:13
show 2 more comments
vote up 34 vote down

Wait, WTF?

link|flag
1  
Universally applicable. – Joachim Sauer Aug 20 at 11:31
vote up 296 vote down

C/C++:

if (launchMissiles = true)
{
   FireNukes();
}
link|flag
12  
That's why you should always write: if (true == launchMissiles) – Milan Babuškov Jan 22 at 19:33
9  
@Milan-That's the joke! The assignment is why this is the 'famous last words' .. it's a bug that kills us all! – John MacIntyre Jan 22 at 20:08
7  
wow, I didn't get it at first!! :/ which makes it all the more dangerous – hasen j Feb 1 at 12:44
10  
My thoughts: "Wait, shouldn't that be a double equals? Otherwise, it'll run every single t... oh..." – Smashery Apr 7 at 0:56
8  
@hasen +1 it does not make it more dangerous, it makes you more dangerous :) – flybywire Jul 20 at 7:27
show 14 more comments
vote up 6 vote down

It'll be finished for the release, no problem

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

Since life is a bug, it must be reproducible

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

Any object-oriented language (Delphi syntax below):

Self.Free;
link|flag
vote up 4 vote down

LW of a Java (JEE) programmer:

"This new framework will revolutionise the way we do things! We'll be able to do more with far less code..."

link|flag
vote up 46 vote down

A programmer who was happy with his life:

return 0;

A programmer who wasn't happy with his life:

return 0xDEADBEEF;
link|flag
show 3 more comments
vote up 10 vote down
//Do not touch!
link|flag
vote up 22 vote down
// XXX: Fixme
link|flag
vote up 154 vote down

It worked on my machine...

link|flag
38  
Let's ship it with your machine then! – Genericrich Jan 23 at 1:46
3  
if i had a penny for every time that I say that... :-) – Baget Jan 23 at 10:02
show 5 more comments
vote up 4 vote down

This code is never used..

link|flag
vote up 41 vote down

C#

Thread.Sleep(Timeout.Infinite)
link|flag
3  
Needs a probabilistic call to Thread.Dream. – zarawesome Jan 23 at 12:08
show 1 more comment
vote up 34 vote down

It should work.

link|flag
2  
This is pretty much banned in my office. It was the favourite phrase of one of our less talented programmers, since he left we're not allowed to use 'should' – Neil Aitken Jan 22 at 17:18
show 2 more comments
vote up 89 vote down

Every programmer, everywhere:

What? That can't be happening, I didn't touch that part of the code.

(I've never found a statement that angered support staff more than that)

link|flag
7  
I'm guilty of saying this. /penance – Greg D Jan 22 at 17:56
show 1 more comment
vote up 17 vote down

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

link|flag
vote up 1 vote down

Java Guy: System.exit(0)!

link|flag
vote up 53 vote down

C++

delete this;
link|flag
1  
Didn't the question say "the last words"? :) On a more serious note, the intrusive ref counting does go awry, and the issues of memory ownership are the most thorny issues in C++, IMO. – Arkadiy Jan 22 at 15:09
show 1 more comment
vote up 38 vote down

Assembly:

Huh, that code wasn't supposed to be self-modifying...

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

I don't need to rerun all of the tests after this minor changes.

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

C:

"128 characters should be enough for this message, right?"

link|flag
3  
also valid for SQL - "80 characters should be enough for name field, surely?£ – Noel Walters Jan 24 at 11:29
6  
"640K ought to be enough for anybody" -- Bill Gates – Ctrl Alt D-1337 Feb 8 at 2:44
11  
To be fair, Bill Gates actually never said that. It's completely misattributed. – Matt Olenik Apr 16 at 4:35
show 2 more comments
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 95 vote down

Java:

One more layer of abstraction and this problem should go away...

link|flag
3  
Or "one less layer of abstraction and the performance will be good enough" ... :-) – Mendelt Jan 22 at 15:13
4  
Or "do you have the correct CLASSPATH"? – Ric Tokyo Jan 22 at 15:24
show 1 more comment
prev 1 2 3 4 5 6

Your Answer

Get an OpenID
or

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