vote up 103 vote down star
91

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
8  
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 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 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 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 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 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 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 20 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
22  
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 50 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
17  
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 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 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 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

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 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 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 18 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 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 24 vote down

Back when I was working on the x86 compiler/linker for CodeWarrior Professional, I stuck a couple of easter eggs into the development tools:

If your source code had the line "#pragma gauntlet on" in it, then the compiler would randomly say things like "CodeWarrior needs food badly" through the PC speaker when running on Windows. I recorded four different phrases inspired by the arcade game Gauntlet, converted them to low-bitrate ADPCM sound files, then embedded them as data into the compiler in a file that looked like a lookup table.

Also, if you have a function in your application called "__I_choose_you_Pikachu" (or something close to that), and then ran the "Disassemble" command from the IDE on the object code, you'd get an ASCII drawing of the famous Pokemon character in the output and all of the addresses in the listing from them on would be variations on the phrase "Pika Pika".

Finally, while working on the Palm Foleo device, I added a command to the Linux shell called "mole". When run, it would bring up a "Catch-a-Moleo" game where you threw nets on little moles that popped up out of the ground. Each mole was labeled with the name of a different team member. Alas, the device was never released, so no one got to see that outside of Palm.

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

I make a GUID from my name and surname for the ActiveX that I developed. (obviously as hex)

link|flag
vote up 4 vote down

I am a bit skeptical that it is technically illegal to put easter eggs in software, probably just against company policy.

In any event, here is mine: In a web timesheet App I had an invisible (transparent) image link that would pull up dilbert comic strips.

link|flag
vote up 11 vote down

I hid an easter egg in one of our in-house maintenance apps.

$ ./restore look
It is pitch black. You are likely to be eaten by a grue.
$ _
link|flag
vote up 28 vote down

I didn't do it, but searching for the answer to life the universe and everything in Google is my favorite

link|flag
8  
search "answer to life the universe and everything * 5" :) – John Gietzen May 19 at 20:54
4  
That's not an easter egg. That's a well-known feature included by design. So is "number of horns on a unicorn" (try it). – Timwi Sep 16 at 13:54
show 2 more comments
vote up 4 vote down

My favourite was on a windows based app that had a green knightrider style progress when the user logged in. We put in an easter egg so if you clicked the username field about 15 times, it would make the progress change red and play the knightrider theme music as you logged in. Not sure anyone ever found it, but it entertained us :)

link|flag
vote up 6 vote down

We hid an ASCII art version of the space150 logo in the home page source code of space150.com (which is upgraded every 150 days). We put it in for fun a few years back, and we've updated it every version.

I was surprised how many job applicants for HTML/CSS positions mentioned they had seen the hidden message in our source code.

Here's a few of the older versions:

and the latest:

link|flag
vote up 8 vote down

Not an Easter Egg, but a similar "oops".

Back in the day (1998) a company I was with was building a VB6 application that had to work on Windows 95 (different patch levels), Windows 98 (ditto) and Windows NT 4. Deep in the guts of all this was the library "concat.dll". We could not get the software to install correctly and after going round and round for days we determined that this particular library had a different version for each of the OS versions.

In my frantic attempts to try and make the thing go on my local machine (no testing machines or VMs) I took to renaming the file after installation. After several dozen renames I started using profanity in the renames (ashamed to say - I was young - all standard excuses apply).

One of the last ones that I did was concat_ARG_F***_S***.dll (fill in the blanks). I eventually got an install working and off it went. Shortly thereafter I left the company.

A co-worker phoned me up months later to tell me a story.

Apparently the manager needed an install to send out PRONTO and did not have the installer. The manager had gone to my workstation and just scooped up the development directory, burned it to CD and sent it out. Unfortunately that particular code NEEDED the profanity laced file and when the user started the application it popped up a dialog box informing her that concat_ARG_F***_S**.dll was missing.

Needless to say she was less than amused and the company did not get to win that contract.

link|flag
2  
Lesson: always wipe your machine when you leave. – Karl Katzke Aug 6 at 5:18
9  
Lesson: people need to stop taking things like that so seriously. It's language, it can't hurt you. For fuck's sake. – Bergius Oct 9 at 22:41
vote up 10 vote down

Just silly harmless stuff.

Like letting the splash screen of an application (in between the normal "Doing this", "Preparing that", "Loading stuff", "Opening main window" that cycle along rather quickly on startup) briefly show "Programmer is ## years old today!" for three seconds on my birthday in yellow letters on a red background and then continue normally.

With a rather obscure registry key somewhere to make sure it only showed once per year per machine so that if users start it again ("WTF was that?") it would not show up again until the next year... ;-)

link|flag
vote up 1 vote down

I worked for a game company in the 80s developing games and porting games from the PC to the Amiga. One game I worked on was a speed boat racing game, and originally there was this intermission during the middle of a day of racing. I'm no artist, but I made this great cheesy Lunch Time screen that had a big orange cup and a hamburger on it...

The publisher didn't like it, and asked us to remove it. So I hid it.

The combination of things you had to do to get to it was ridiculous - I don't even remember now what it was, but it was holding down 4 or 5 keys and pressing a mouse button at a particular time in the game.

I wish I could remember it because I can still run that game in VMWare and I'd love to see it.

The game was HeatWave.

link|flag
vote up 1 vote down

At my last job, one of our team members was selected to be on a reality TV show "Your Mama Don't Dance" with his daughter. Clearly he had to take a temporary leave while the show was being taped and aired. During this time, our team members took stills of the show as it aired and kept them as images which we used as test data in our application. Before he returned, we set the system to use only these images and graphics whenever he was logged in. At the time, he was responsible for testing the app so he received quite a surprise when he returned to find the system literally filled to the brim with pictures of himself dancing on television!

link|flag
vote up 3 vote down

In an earlier life, I wrote a DOS shell, using PDS6 and QBDOS (the main shell and file manager/zip manager apps were written in PDS -- originally begun in QB4 and then migrated to PDS), and the config app was rewritten from scratch in QBDOS (universally despised, but I loved it).

Among its varied features, it allowed the user to select a variety of background "stuff" (can't really call them "images" since it was all in text mode) for the main app (the menuing pages). Users could select various colors, or patterns, including a "twinkling star" background (I wrote an internal "round-robbin" multitasker to enable stuff like that; well, actually, it was necessary to enable semi-stateless interactivity between the various program and application menus; once it was there, I realized I could add the twinklestuff with a few lines of code). Users could define how "big" to twinkle (it used various "star-like" chars, and the user could select how large to have the random twinkling go), and, the twinkelerate (how quickly to twinkle -- everything from a very slow, subtle rate, with the occasional "star" twinkling every so often, all the way up to full-tilt epilepsy-induction mode :)

The random twinkler would cause various "stars" to twinkle by changing the character in any particular cell, and, the brightness of that character. Twinkling would range from completely off (black cell) to full-bright/largest size "star" character.

I did not document the fact that when 1) twinklemode was activated, and 2) the program saw that it was December 25th), it would randomly set a few stars to red, and a few stars to green, while they twinkled.

I came to regret this feature when I started getting panicked calls, along the lines of "I thought I had a virus!"

Argh...

I quickly dropped my plans for stuff like red/white/blue twinking on July 4 and so forth.

link|flag
vote up 0 vote down

I tend to put a few in the comments, from memory:

Roses are Red Violets are Blue In Soviet Russia Function simplify you -- Comment to a Heskell function called simplify, to this day I reget that for some reason I didn't use the function below it (evaluate)

In my first year Java coursework (a clone of early bomberman games) I had an abstract class called BadGuy, all the enemies inherited from it. I chose the name so I could start the class with the lyrics to the Bugsy Malone song "Bad Guys"

Inhereted from BadGuy was another class called WandererAndTheColossus (the literal translation of Shadow Of the Colossus' Japanese title)

link|flag
vote up 282 vote down

There is tell around my company of a threadpool-ish class which, in that it monitored child threads, was named Pedophile. This is all good for a laugh, until your customers call in to complain that your program is crashing with only the message, "Error: Pedophile has no children to watch."

link|flag
56  
Oh, +1 hilarious-poor-taste :) – ricebowl Apr 11 at 21:21
3  
HAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAA – Click Upvote Aug 18 at 16:22
9  
Omg, this made me laugh so hard! Wish I could upvote twice >.< – Cyclone Sep 20 at 3:13
1  
This is pure, awesomeness. – Kyle Rozendo Oct 16 at 8:02
1  
hehehe very funny indeed!!! – Asad Khan Nov 4 at 9:45
show 3 more comments

Your Answer

Get an OpenID
or

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