vote up 102 vote down star
88

I know it is illegal to place Easter eggs in code via Microsoft's quarrel with the law a few years back. Microsoft has decided that if you place Easter eggs in code, it is an immediate grounds for termination, but they are still out there in the wild. I know I put my name in the code a lot that will never show up to the users, but it is always fun to do.

So, what Easter eggs have you seen or placed in your programs/code?

One of mine was: Query = [Current_Step] = 'Scott Rocks'

flag
5  
I think the word "illegal" here is misplaced. But it is true that Microsoft policy says "easter egg = instant termination". – Curt Hagenlocher Sep 26 '08 at 16:06
3  
A. To supply certain government agencies with software, Microsoft can't include undocumented features, including Easter eggs, in its software. As a result, no Easter eggs exist in their software. – Scott Sep 26 '08 at 16:18
7  
Hah. The idea that every single feature is "documented" is pretty laughable, though. Especially given the fuzzy definition of what constitutes a feature. – Nick Johnson Sep 26 '08 at 17:31
2  
If you document an easter egg, I think it loses its status as an easter egg. – Jacob Sep 30 '08 at 3:27
1  
Well, if you look at MSDN, you see that MS started to document everything, although the documentation is not always helpful and usable (SharePoint Object Model cough cough). Raymond Chen had a post about Microsoft documenting everything a while back. – Michael Stum Oct 10 '08 at 18:18
show 5 more comments

106 Answers

vote up 1 vote down

I put a Tetris-clone in a custom form editting application that I had created a few years back. You had to name the form at time of creation, and if you named it "tetris" it would launch the game inside of the form.

Somehow, one of the testers found it in the first month and I had to remove it. Well... I didn't remove it, it is just trickier to find now. Last I had heard, no one had found it again. I was really hoping that a customer would have found it originally.

By the way, the high score page was all full of programmer personalities with their pre-seeded fake high scores. People like Larry Wall, Dennis Ritchie, (Amazing) Grace Murray Hopper, etc. Not surprisingly, the testers didn't get that part of the game.

link|flag
vote up 17 vote down

In python 3.0, try this:

import antigravity
link|flag
6  
Oh My God I'm FLYING!!! Good thing I have this long range bluetooth keyboard! – stalepretzel Dec 27 '08 at 4:14
show 2 more comments
vote up 2 vote down

A GherkinException with the message "You are an ass. Please contact the assmaster" followed by the email address of one of the developers appeared in a friends' tech demo once...

... me, I stick to using song lyrics in nUnit test code. But never for variable names!

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

In a new installer that I'm currently working on for the company that I'm with, the UI is implemented in the start-up application, rather than in the installer itself for reasons that I won't get into here. In one of the dialogues, the user has to choose what gets installed and what doesn't via a tree view control that shows check boxes next to each feature.

To show the check boxes in the various states that they can be in and with the various attributes that they can have, I made up an image list bitmap that contains images of of all possible combinations of states and attributes that any of the check boxes in this control can have. As tree view controls never make use of the image in the leftmost position of such a bitmap, most people would simply leave it blank. I decided to put my initials there.

I know that's not strictly an Easter egg, since no user will ever see it, but anyone else who works on the project after me will see it if they look at that particular bitmap.

link|flag
vote up 10 vote down

This isn't truly an easter egg since it's in my personal toolbox file, but after more than one typo while trying to exit Python's IDLE, I inserted the following function:

def exist():
    print "Yes, I do."
    exit()
link|flag
6  
There's a program for Linux called "sl" that shows a "Steam Locomotive" animation to people who mis-type "ls". manual.cream.org/index.cgi/usr/… – Matthew Crumley Dec 16 '08 at 5:16
2  
@J.T. — Shouldn't that be "Not any more, I don't", if it's about to exit? ;-) – Ben Blank Feb 24 at 21:35
show 2 more comments
vote up 8 vote down

At my old job I once used http://steghide.sourceforge.net to vent my announces inside image that were used on the companies homepage.

I knew no one would read them, but it made me happy inside to know that my venting where there on the homepage.

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

At the end of correct initialization:

log << "ERROR: PC LOAD LETTER" << endl;

link|flag
1  
Hopefully with quotes? – Andrei Krotkov Apr 23 at 22:17
1  
WTF is PC LOAD LETTER?! – scunliffe May 28 at 16:54
2  
Michael from Office Space: 'PC LOAD LETTER?!???!??!!? What the fuck does that mean???!??!?!?!?!?' – Koning Baard XIV Aug 22 at 13:41
vote up 3 vote down

On a website I designed, we had a picture of various members of our team. In the lower right hand corner, I put a link that had the same color as the background. The only text of the character was the Pi symbol. Clicking the Pi symbol took you to another page of funny pictures of the team members. Sandra Bullock in the Net FTW!!

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

I wrote a ruby on rails website (The production code has this and it's live) that has the path /dev/random/ return 4 because of this comic.

int get_rand_number(){ return 4;}

link|flag
1  
hahaha nice one XKCD FTW! – pageman Jul 27 at 17:31
15  
You included the alt text! You are forever more my hero. – brad Oct 13 at 21:28
1  
This site should have an [xkcd] tag so everyone can be happy about the alt text and linking to the original page... – jleedev Nov 6 at 13:35
show 2 more comments
vote up 19 vote down

Remember the 'BOSS key' anyone?
I wrote a PC chat program connected to GENie way back when. It had a Boss Key...
when you pressed it it filled the screen with big letters that said:

HI BOSS !!

My users were not amused!

link|flag
21  
Space Quest III had the same thing. There was a menu item named "boss key", but when you selected it, it would say "Oh I get it, you don't want your boss to know you've been playing Space Quest III for 5 hours, 23 minutes, 10 seconds" (counting since you started playing) – Simon Howard Nov 25 '08 at 17:21
vote up 3 vote down

In 1995 or so we were using the first generation of pen computers and while developing our system for these machines I realized that Douglas Adams' dream of the hitchhikers guide had actually been built, so I arranged it so there was some sequence of clicks that would clear the screen and print "Don't Panic" in large friendly letters.

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

I don't actually put easter eggs per se, but I usually put something in the code that only future developer can see. Such as in a company ownership hiarchy class, I named the parents Property "Dom" and the child record property "Sub" and added a useless constant called "SafeWord", that is Sasquatch by default. Usually internal stuff, I'll add something stupid that will only be seen by developers, and is usually documented so as to not confuse them.

LINK

link|flag
vote up 19 vote down

At my previous job using an obscure document composition language, I included:

Bob = "a sweet dude";
...

if (Bob == "a sweet dude"){
    //do something
}

I was blissfully unaware that someone else already used the "Bob" variable (I have no clue why) for another field. It was rarely used for one particular letter and for one particular client name. So one day, my boss asked me why one letter read:

"Dear a sweet dude ..."

I figured I would have gotten in more trouble, but my boss just laughed as it was caught before it was sent out. I guess it could have been worse...

link|flag
vote up 0 vote down

None. Most code I write is production code for customers. More code means more bugs. Easter eggs are extra code, with the added extra chance for bugs (plenty of proof in some of the answers here).

I never allow anyone to write easter eggs in production code, and will never do myself. More code means more bugs.

link|flag
11  
Are you sent back from the future to protected John Connor? – Shahin Dec 2 '08 at 23:23
show 4 more comments
vote up 6 vote down

Many years ago, when working on the MSDOS Point-of-sale terminal (the one that figures into many of these stories I tell on SO), one of the features was a pop-up calculator. I figured that was a good place to hide Easter Eggs. This being DOS, most people just ignored the ALT key, so any Alt+key combination with the calculator up seemed reasonably obscure enough. So, Alt-C displayed my name as author.

But the one that everyone loved was if you pressed Alt-W, it would play the William Tell Overture (remember, -- late 80's -- getting the PC speaker to do anything more than beep was impressive). When a corporate VP learned about it, he played it through the office PA system. When people asked me why it played that, my answer was "Because the company doesn't have a theme song."

link|flag
vote up 22 vote down

I put an Easter egg into the PostScript implementation in the DECLaser 1152. I had initially snazzed up the start page with a better overall appearance and put a fan of dog-eared thumbnail document pages on it with a graph, the opening paragraph from Winnie the Pooh in Latin, and a picture of my (now ex-) wife. DEC nixed Pooh and and the picture of my wife, so I changed the front panel code so that if you took the printer off line, held down the self-test button then pressed menu-menu-menu-enter-enter-enter, you will get a full page picture of my ex.

When I was working on Acrobat Search for the Macintosh, during development if you pulled up the search about box and typed 'homer' it would put up a picture of Homer Simpson and play the sound "I am so smart. I am so smart. I am so smart. S-M-R-T. I mean S-M-A-R-T." That was pulled before release and I slipped in two other Easter eggs. If you option click in the search about box, you get a slide show of all the entire team and their names. If you type in my last name in lower case 'hawley' you get to play break-out. The break out code took under 1K and played in 1-bit, 8-bit, or 24-bit color.

link|flag
vote up 22 vote down

I recently had to write a web calendar in php. I decided to hard code in the end of the world as an event on December 21, 2012.

link|flag
4  
That's not an easter egg, thats pessimism – theman_on_vista Dec 18 '08 at 14:58
2  
that's evil dude – hasen j Dec 18 '08 at 16:04
43  
It's only a bug if it doesn't happen – 1800 INFORMATION Dec 18 '08 at 22:06
1  
That's not a bug, it's a feature! – Teifion Apr 11 at 20:43
5  
That's not a feature, its a tragedy! – DFectuoso Apr 27 at 21:16
show 5 more comments
vote up 28 vote down

There's an Easter egg in JFugue, my Java music programming API. JFugue lets you specify chords really easily:

player.play("Cmaj Dmin") // Play a C-major chord, then a D-minor chord

I implemented 30 chords... major, minor, diminutive, dominants, etc. Buried in the code is one chord that you won't find in any piano book:

player.play("Cdave")

It's actually a pretty nice chord!

link|flag
2  
It's a 1-7-14-21 chord. If the root is a C5 (C in 5th octave), this plays C5 + G5 + D6 + A6 - which happen to be four consecutive notes in the Circle of Fifths. – David Oct 15 at 18:59
show 1 more comment
vote up 7 vote down

I stuck an Easter egg into a wizard for an enterprise software service that turned a ListView on that page into a cycling rainbow. Fun, a bit janky, but hey, it's an Easter egg.

The perverse thing is how I hid it - you can only activate it by clicking in a specific unmarked area of the wizard on Saturday the 1st. What poor bastard's going to be working on Saturday?

link|flag
vote up 20 vote down

This Story has to be one of my favorite "eggs" gone wrong.

link|flag
1  
that is sad. I've been looking for that to put it here. you found it first though +1 – WalterJ89 Feb 26 at 22:33
show 1 more comment
vote up 3 vote down

When I was developing an online board game client (Scrabble clone), I took a few hours off to write a Tetris game that used the tile system, accessible by typing "/kalinka" in chat. Ended up playing it much more often than the game itself, having gotten sick of the latter through months of testing, writing, redesigning...

link|flag
vote up 19 vote down

I once was coding something that rated most frequent unigrams, bigrams, and trigrams given a piece of text. I had a large list of all the trigrams on the page, reverse-sorted to have the highest number first. I then added the following line of code:

triTop = allTrigrams[:10]  #RAAAARRRRR TRICERATOPS

I guess it's only an easter egg for me, because only I get to see it when I go back to the code, but it makes me chuckle every time. It's the little things ;-)

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

I worked on a genealogical search application that would add a 'Joe Bloggs' from 'Auchtarrader' into one in every 100 searches. Unfortunately I didn't obfuscate it well enough and when I returned to the organisation on a temporary contract a year later it was slighly mentioned on the first day :o)

link|flag
vote up 1 vote down

an early biz application would play Happy Birthday in beep tones and list the employees with birthdays on that day when you booted the app

i wouldn't do that today - no time!

link|flag
vote up 340 vote down

It was late at night, and I was at the client's retail warehouse with my QA guy Paul and my Dell 25Mhz 386. We had been cranking out last-minute changes to the customized point-of-sale software (DOS & Clipper!) for the new chain's flagship store a week or two before opening.

We'd been warned that Tom, a Vice-President of the retail group, was going to participate in the acceptance testing, and he liked to catch people out in mistakes. So I was thinking in terms of sanitizing every input, taking into account every possibility of users monkeying with the system, and considering all corner cases. And, did I say it was late at night? I put a few more sanity checks in the code and we went home.

A few days later, Tom came around for the acceptance testing. The area we'd set aside in the warehouse was crowded with managers and executives. We'd already loaded the new POS software onto the hardware that was to be used in the new store. Tom logged onto the system, ran a no-sale transaction, and bing--the drawer opened and the correct audit receipt was printed. He bought a few items, returned them, exchanged them, entered bogus serial numbers, ran an expired credit card, that sort of thing. The system did exactly what it was supposed to.

Tom looked a little disappointed. He shook things up by entering crazy stuff: letters in the quantity fields, making individual payments in pennies, and so on. And it still worked.

Finally, Tom logged his cashier out and logged a new one in. The system prompted for the starting cash amount in the drawer (for comparison to cashing out at shift's end). Instead of something realistic like 100.00 or 200.00, Tom entered...

-999

And the error message came back:

Tom, you know you can't do that!

The crowd went wild with glee. Tom laughed and conceded that we had indeed thought of everything. He signed off on deployment and we went live on the store with very few problems. And we all lived happily ever after.

link|flag
10  
That must have been a rush! You should have retired... it'll never be that good again. But I love it when a plan comes together - well done. – ChrisA Nov 21 '08 at 21:39
52  
@theman_on_vista - he sounds like a tester that is doing a good job. What is better, to find an error like that before deployment, or after the app has been deployed and you find -999 crashes the app and corrupts its database.? – kenj0418 Apr 10 at 18:38
4  
@kenj0418 - The actions sound like a diligent tester, but the key phrases are "...liked to catch...mistakes" and "...looked a little disappointed." These are above & beyond the call of diligence. – RolandTumble May 29 at 21:53
6  
@RoadTumble: No, they aren't. The fact that he enjoys testing software makes him a good tester. Just as a BOFH is a good Network Admin. It makes you work harder to know everything will be tested (Of course I wouldn't like to be on the down side of that stick). – voyager Aug 24 at 15:24
7  
The difference between good and great is always the amount of care and emotion that goes in the work. As a great developer likes working with code and is passionate about the results, a great tester is passionate and diligent in finding bugs, and will try all possible (and most impossible) ways to crash your app. – SWeko Sep 30 at 6:17
show 3 more comments
vote up 2 vote down

I built a load-tester to pound some of our servers. If you input the correct sequence of parameters, as the app started pounding the server it would play the sound of a Harley starting up, revving, and riding off. I only showed one other dev that it was in there, not that it would have mattered since it was an internal tool.

link|flag
vote up 106 vote down

One application I worked on had an entirely too long "about" dialog text. I rearranged things to put the most useful information at the top, gradually reducing the text size, until at the very bottom was a line in 2-point text (which looked like a divider line) which read "if you can read this, you're too close to the monitor".

link|flag
4  
Lol, I'd upvote it twice if I could :) – Krzysztof Koźmic May 12 at 13:09
vote up 5 vote down

When I get in tomorrow, the first thing I'm gonna do is implement a runItsGonnaBlow exception :)

link|flag
1  
You should get a T-Shirt that says "If you see me running, you'd better follow." :) – Zee JollyRoger Sep 30 '08 at 22:28
show 1 more comment
vote up 2 vote down

I had an internal plugin for VB6 that added function comments. When "AYBABTU" was entered in the first field and Help|About was accessed, the about page screen showed CATS and said "All your comments are belong to us."

link|flag
vote up 3 vote down

NOT BY ME but recent and interesting along these lines:

The Bloomberg iPhone App subtly hid an almost undetectable Bozo in the left monitor.

link|flag

Your Answer

Get an OpenID
or

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