vote up 97 vote down star
85

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
3  
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
5  
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
show 7 more comments

99 Answers

1 2 3 4 next
vote up 9 vote down

For one application I built primarily on my own time for my company (consider it a gift, a mea culpa for its original version 8 years ago which was highly buggy), I placed the following in the about box:

John would like to thank Paul Garmirian, Litto Gomez and Rocky Patel, without whom this project might never have been completed. (Nor, perhaps, even contemplated.)

Those would be cigar manufacturers (my three favorite, in order of preference). All three are, in app, links to the appropriate web sites.

Also, by special directive of one of the VPs, there's a random chance when you exit it that you will get David Spade saying "Buh-Bye" out of your speakers. (On certain other days, there are random chances of other sounds -- for example, on my birthday, a tiny clip from Pink Floyd's "Time" might play upon exiting.)

link|flag
vote up 5 vote down

Well, there's the infamous Paula Bean.

link|flag
2  
I actually include a paula() method in most of my classes. it returns "Brilliant!" – chris Sep 26 '08 at 16:56
5  
Well chris that is not a correct implementation of the well known "Paula Method". Its supposed to return "Brillant", not "Brilliant". – Paul Batum Sep 28 '08 at 12:08
show 4 more comments
vote up 11 vote down

During my time as a game developer I placed a lot of easter eggs. Gamers just love this.

My favorites are:

  • Replace all sounds of a game with C64 homecomputer blips and blerps.

  • Replace all text resources with the word "Malkovic"

link|flag
2  
I'm hoping it's a reference to the scene from Being John Malkovich where he goes through his own portal and ends up in his id, where everyone there has his head on their body and the only word they know is Malkovich... it's amazing. – Grank Sep 26 '08 at 16:25
5  
Malkovich Malkovich Malkovich? – FlySwat Sep 30 '08 at 2:56
1  
Malkovich Malkovich Malkovich Malkovich. – Jacob Sep 30 '08 at 3:31
1  
(Fog Creek Copilot had a similar easter egg, until it was found to be responsible for a bug: blog.copilot.com/2006/10/…) – Jacob Sep 30 '08 at 3:33
show 3 more comments
vote up 5 vote down

Credits screen is a favorite easter egg of mine..

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

I created a small application for a previous company, if you clicked just outside the 'OK' button a picture of David Hasselhoff in bikini underwear with gold chains that said "Bling Bling" would pop up.

link|flag
5  
I can vouch for this one -- sadly. Saw it in action. shudder – Kevin Fairchild Sep 26 '08 at 16:12
3  
"f you clicked just outside the 'OK' button", Yeah, that'll never happen. – Meff Sep 26 '08 at 22:15
9  
Hasselhoff in bikini underwear... well, I tried to click the 'offensive' button but clicked outside of it. Fortunately, this application (stackoverflow) didn't visually rape me for that... – vitule Dec 18 '08 at 17:25
show 3 more comments
vote up 14 vote down

Putting a fake Clippy into our application, which only appears for one of our users (who used to be on the development team) and gives him slightly, er, rude advice.

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

Going along with the clippy, one of our developers used the maxwell smart agent so you ended up with code like:

Private Sub agtAgent99_Click(ByVal CharacterID As String, ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Integer, ByVal y As Integer)
    MySpeak "how you doin?  Don't make me get up!", nagtAgent99
End Sub

Private Sub agtAgent99_DragStart(ByVal CharacterID As String, ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Integer, ByVal y As Integer)
    MySpeak "Don't put me near that genie freak!", nagtAgent99
    MySpeak "Goodbye beeotch!", nagtMaxwellSmart
End Sub

Private Sub agtMaxwellSmart_Click(ByVal CharacterID As String, ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Integer, ByVal y As Integer)
    MySpeak "WASSUP YO!  Uh oh!  Here come duh freaks!", nagtMaxwellSmart
End Sub

Private Sub agtMaxwellSmart_DragStart(ByVal CharacterID As String, ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Integer, ByVal y As Integer)
    MySpeak "Why you movin' me beeotch?", nagtMaxwellSmart
    MySpeak "Goodbye beeotch!", nagtMaxwellSmart
End Sub
link|flag
vote up 36 vote down

Once long ago I was part of a team developing a website for a large manufacturing company, and on the homepage they wanted this aerial view of the plant/grounds surrounding the plant. In the distant background of this image was the building of one of their competitors, so as a joke we integrated a complex sequence of actions that once complete would cause a small animated gif of a mushroom cloud to be super imposed over the top of their competitors building, the final frame of which was a burnt crater that stayed there until you refreshed the page. That was by far the best one I've ever been a part of.

link|flag
vote up 63 vote down

I used to work on ASIC designs. ASICs very frequently contain easter eggs, for example every chip I worked on has my initials in ASCII at an undocumented address. Other ASIC designers would include song lyrics. The really gung-ho types would include mode bits to make the ASIC do something outrageous like change some portion of the datastream to "We are the Knights who say Nee!" over and over. I felt that was too risky, if a bug resulted in activating that mode accidentally.

In ASIC design these easter eggs actually serve a legitimate business purpose: as a check for intellectual property theft. Large companies who design a lot of custom silicon do have to contend with their own ASIC designs being stolen and used in products which compete with them. Having the original designers names or intials hidden somewhere in the silicon makes it much easier to prove the misappropriation in court.

link|flag
9  
This concept is similar to the trap streets sometimes used in cartography. en.wikipedia.org/wiki/Trap_street – Doug McClean Sep 26 '08 at 16:35
1  
Apple did that in an early Mac – Alex Angas Oct 29 '08 at 9:57
show 2 more comments
vote up 4 vote down

I didn't do this but I had a coworker once who did an e-commerce site. On the account application screen if you put in each form from top to bottom one character each of 867-5309 (there were 8 fields total) instead of signing up you were redirected to that "All your base are belong to us" video.

I didn't believe him until he showed me on the production app.

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

A LONG ago CAD app: Depending on the contents of a control file that specified probabilities at various times a pulsing circle would appear. Every time it reached it's minimum size it would erase the pixel at the center (the effect was it was slowly chomping on the drawing.) It moved around by a modified drunkard's walk--it would keep picking a random angle and a distance, move that one pixel at a time and then pick again. The angle was not truly random, though, it was weighted to favor directions heading towards the cursor, the farther from the cursor it was the stronger the weighting. The effect was that the circle would generally be somewhere in the vicinity of the cursor.

I shipped a control file set to only trigger it in the evening to one customer--I let the top guy know what was up and they had a lot of fun with a few of the users with it.

link|flag
vote up 9 vote down

Personally, I've never worked on a project that gave me enough slack time to divert my energy away from coding the features as correctly as possible.

I don't think I'd bother adding Easter eggs, even if it were permitted in my company.

It's like the software equivalent of a construction worker leaving a footprint in mortar as a joke. It will stay there for all to see as a sign that the guy was goofing around.

link|flag
12  
All work and no play makes vorpal a dull boy :-( – Dan Malkinski Nov 16 '08 at 15:42
3  
Question is, does the workers footprint have any affect on the structural integrity of the final building on aforementioned mortar? If not, I don't see the problem... Everyone is human, and some of us have no other way to leave a legacy. ;-) (FYI: personally, I too, prefer clean code!) – Pat Nov 25 '08 at 5:56
1  
Vedat Dalokay, a famous Turkish architect, designed buildings on "V" shaped columns to signify his name. en.wikipedia.org/wiki/Vedat_Dalokay – ssg Apr 10 at 8:38
8  
It's more like a footprint in mortar in the sub-basement which then had a raised floor and carpeting installed over it. No one's going to find it unless they already know about it, or are inspecting the foundation (code). When demolishing (physical) structures I find it very interesting to find stuff like this, it makes the job much more fun. The same goes for software. – jpeacock Apr 27 at 21:15
2  
Have you never written on the walls before wallpapering? This is extremely common – Colin Pickard Jun 19 at 10:52
show 4 more comments
vote up 0 vote down

"I know I put my name in the code a lot that will never show up to the users"

... unless you have a bug, and it actually does show up to the users ...

Do most developers have an intrinsic need to passively demonstrate how clever they think they are?

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

This is a bit of a bizarre one.

Shortly before I left my previous company, we rolled out some software I'd played a significant role in developing. The deployment was scheduled for the early evening, but took longer than expected due to some problems. I answered one support call (on my mobile - I was at a geek night) during the evening, and then went home to bed.

At about 2am I was awakened by another call. After half an hour of trying to work out what was going on, I decided to go into the office. I was in my pyjamas and dressing gown, but I decided not to get properly dressed because:

  • The office was only a 20 minute drive away
  • I expected the problem to be resolved quickly as soon as I was there
  • I didn't want to wake my wife up
  • It was reasonably urgent
  • I wanted to get back to bed as soon as possible

I should point out that my night attire is entirely decent.

When I arrived at the office, the other members of staff there were somewhat surprised. Indeed, they thought it remarkable enough that they took a photo of the event. (Spirits had been temporarily lifted by the fact that the problem resolved itself literally the moment I walked through the door; unfortunately there were other issues discovered and I was actually there for a while longer.)

In the week or two before I left the company, I developed an internal tool (and believe me, this would always be strictly internal) for tracking the kind of problem we had that night. As an Easter egg, I set it so that if you attempted to log into the tool with my account name (which of course would be useless after I'd left) it brought up a dialog box with the photo of me in pyjamas, telling the user off and simultaneously plugging my book. Fortunately everyone in that company has a sense of humour.

I told you it was a bit bizarre :)

EDIT: Due to popular demand...

Jon in pyjamas

link|flag
6  
WTF is a dressing gown – Greg Dean Oct 9 '08 at 7:50
4  
@gdean2323: Maybe it's a UK thing. "Bathrobe" is not quite the same, but close enough. Basically "what you wear over pyjamas if you're cold". I think I've got a copy of the photo somewhere if you're really interested ;) – Jon Skeet Oct 9 '08 at 8:17
5  
+1 if you edit the answer to include the photo! – Pat Nov 25 '08 at 5:51
28  
"Spirits had been temporarily lifted by the fact that the problem resolved itself literally the moment I walked through the door" That's very Chuck Norris, or should I say Skeety? – macke Apr 10 at 7:07
33  
Jon Skeet is so baller that even his pajamas have pajamas. – John Feminella Apr 19 at 14:22
show 7 more comments
vote up 63 vote down

Early in my working life, a coworker and I put in an "OhS&^%Exception" buried deep into the code as an inline Easter Egg for a future developer to find and laugh about.

One guess as to the exception thrown during the client demo. And there were no punctuation marks to hide our vulgarity. We kept the client, and got more work from them, but the meeting with my boss afterwards was not pleasant.

I have never, ever, again, put in an Easter Egg.

link|flag
3  
Easter eggs are great stuff, but if you put a message like that in your /exception handling/ you are asking for something like this to happen. – Coding With Style Jul 16 at 0:10
1  
@Coding With Style Yes, that has occurred to me. Note the "early in my working life" part of it. – KevDog Jul 16 at 19:12
4  
Er, the real point I was trying to make is that easter eggs are a-okay if you just exercise prudence. (Re: "I have never, ever, again, put in an Easter Egg.") – Coding With Style Jul 20 at 2:19
show 4 more comments
vote up 1 vote down

Aren't all undocumented functions Easter Eggs? ;P

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

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

link|flag
show 1 more comment
vote up 97 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 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 325 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
9  
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
45  
@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
3  
@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
4  
@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
5  
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 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 3 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 16 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 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

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 5 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 27 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 21 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
2  
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
36  
It's only a bug if it doesn't happen – 1800 INFORMATION Dec 18 '08 at 22:06
3  
That's not a feature, its a tragedy! – DFectuoso Apr 27 at 21:16
show 5 more comments
1 2 3 4 next

Your Answer

Get an OpenID
or

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