active questions tagged easter-eggs - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:46:25Z http://stackoverflow.com/feeds/tag/easter-eggs http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code 102 What Easter Eggs have you placed in code? Scott 2008-09-26T15:52:12Z 2009-11-26T18:09:47Z <p>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.</p> <p>So, what Easter eggs have you seen or placed in your programs/code?</p> <p>One of mine was: <code>Query = [Current_Step] = 'Scott Rocks'</code></p> http://stackoverflow.com/questions/101268/hidden-features-of-python 251 Hidden features of Python jelovirt 2008-09-19T11:50:36Z 2009-11-23T14:36:53Z <p>What are the lesser-known but useful features of the Python programming language.</p> <ul> <li>Try to limit answers to Python core</li> <li>One feature per answer</li> <li>Give an example and short description of the feature, not just a link to documentation</li> <li>Label the feature using bold title as the first line</li> </ul> http://stackoverflow.com/questions/1630586/am-i-getting-crazy-itunesconnect-rounded-corners 0 Am I getting crazy? iTunesconnect rounded corners. Sjakelien 2009-10-27T12:50:23Z 2009-10-27T12:50:23Z <p>Yesterday, I have submitted an iPhone app to Apple through itunesconnect.apple.com. It is my second app, so after submission, it appeared as second in a list. The first in the list was my first app, with the app icon having rounded corners. My new app, however, had straight corners, just like the icon file that I delivered with the app. (you are supposed to deliver a square icon; apple will do the rounding and the glossy stuff for you.) Today, I checked if my app was accepted yet (ha! if even). To my surprise, the Upper Two corners of my app were rounded, while the lower ones are square! Also, the shine was added now. See <a href="http://www.tangibility.nl/corners.png" rel="nofollow" title="here">here</a> for a screen shot. What does this mean? Is this a progress indicator? If so, what does each corner mean?</p> http://stackoverflow.com/questions/469798/konami-code-in-c 10 Konami Code in C# Anthony D 2009-01-22T16:17:17Z 2009-10-21T16:13:23Z <p>I am looking to have a C# application implement the Konami Code to display an Easter Egg. <a href="http://en.wikipedia.org/wiki/Konami_Code" rel="nofollow">http://en.wikipedia.org/wiki/Konami_Code</a></p> <p>What is the best way to do this?</p> <p><strong>Update 1</strong></p> <p>This is in a standard C# windows forms app.</p> http://stackoverflow.com/questions/1546356/konami-code-in-flex 12 konami code in flex zombiegx 2009-10-09T22:25:12Z 2009-10-21T16:12:32Z <p>What would be the best way to implement the konami code into a flex application?</p> <p>I want to create a component to add it on all my proyects, just for fun.</p> <p>thanks</p> <p>UPDATE: I made a simple component, thanks to ZaBlanc</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:UIComponent xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init()"&gt; &lt;mx:Metadata&gt; [Event(name="success", type="flash.events.Event")] &lt;/mx:Metadata&gt; &lt;mx:Script&gt; &lt;![CDATA[ // up-up-down-down-left-right-left-right-B-A public static const KONAMI_CODE:String = "UUDDLRLRBA"; // signature private var signatureKeySequence:String = ""; private function init():void{ systemManager.stage.addEventListener(KeyboardEvent.KEY_DOWN, onKeyDown); } private function onKeyDown(event:KeyboardEvent):void{ var keyCode:int = event.keyCode; switch (keyCode) { case Keyboard.UP: signatureKeySequence += "U"; break; case Keyboard.DOWN: signatureKeySequence += "D"; break; case Keyboard.LEFT: signatureKeySequence += "L"; break; case Keyboard.RIGHT: signatureKeySequence += "R"; break; case 66: //Keyboard.B only for AIR :/ signatureKeySequence += "B"; break; case 65: //Keyboard.A only for AIR too :( signatureKeySequence += "A"; break; default: signatureKeySequence = ""; break; } // crop sequence signatureKeySequence = signatureKeySequence.substr(0, KONAMI_CODE.length); // check for konami code if (signatureKeySequence == KONAMI_CODE) { dispatchEvent(new Event("success")); signatureKeySequence = ""; } } ]]&gt; &lt;/mx:Script&gt; &lt;/mx:UIComponent&gt; </code></pre> <p>to test it</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" xmlns:konamicode="konamicode.*"&gt; &lt;mx:Script&gt; &lt;![CDATA[ import mx.controls.Alert; ]]&gt; &lt;/mx:Script&gt; &lt;konamicode:KonamiCodeCatch success="Alert.show('+30 lives!!!')" /&gt; &lt;/mx:Application&gt; </code></pre> http://stackoverflow.com/questions/867921/language-or-api-easter-eggs 1 Language or API easter eggs Peter 2009-05-15T10:31:50Z 2009-09-04T15:12:55Z <p>I've read of an easter egg as part of an actual programming language command (<a href="http://svn.python.org/view/python/trunk/Lib/antigravity.py?view=markup&amp;pathrev=66902" rel="nofollow">Python's antigravity</a>), I was wondering if there were any other easter eggs or anything undocumented for other languages or popular APIs? Are there other undocumented commands that could actually be considered useful?</p> <p>Some I've heard of:</p> <ul> <li><a href="http://svn.python.org/view/python/trunk/Lib/antigravity.py?view=markup&amp;pathrev=66902" rel="nofollow">Python antigravity comic</a></li> <li>PHP dog logo: append ?=PHPE9568F36-D428-11d2-A769-00AA001ACF42 on any php page (I wouldn't consider this being a language egg though...)</li> </ul> <p>Completely unrelated to programming I just noticed when you search in Google for "<a href="http://www.google.com/search?q=ascii+art" rel="nofollow">ascii art</a>" it changes the Google logo to ascii.</p> http://stackoverflow.com/questions/933870/easter-eggs-in-emacs 4 Easter Eggs in Emacs Jonas Gorauskas 2009-06-01T07:37:58Z 2009-09-03T12:40:44Z <p>Today I was bumming around in <em>/usr/share/emacs/23.0.91/etc/</em> and I found the HELLO file. That directory is full of such gems, but I was wondering if there are other, more obscure, easter eggs in emacs that you all might know about. From a terminal window run emacs like so:</p> <pre><code>emacs --no-splash -f view-hello-file </code></pre> <p>This starts emacs and opens the HELLO file.</p> http://stackoverflow.com/questions/190580/whats-the-purpose-of-the-help-about-dialog-in-a-program 4 What's the purpose of the Help->About dialog in a program? Rob Sanders 2008-10-10T08:58:23Z 2009-06-10T13:40:59Z <p>The Help->About dialog in GUI applications has historically been the place for some very "interesting" (and often funny) functionality and easter eggs. </p> <p>How would you define the purpose of the About dialog? What function does it serve in an application, and who is the target audience?</p> <p>What's the best use (or abuse) of an About dialog that you've seen?</p> http://stackoverflow.com/questions/4943/is-it-a-good-idea-to-put-easter-eggs-in-applications 17 Is it a good idea to put Easter Eggs in applications? saniul 2008-08-07T16:43:58Z 2009-05-21T11:06:19Z <p>What do you think?</p> <p>If yes - where would/did you? If no - why not?</p> <p>Did anyone ever get in trouble for that? </p> <p>Where do you think lies the line between a funny/insightful easter egg and embarrassing yourself in front of your boss/clients/open source community?</p> http://stackoverflow.com/questions/565263/fun-with-sql-games-painting-puzzles 15 Fun with SQL (games, painting, puzzles) [closed] coldice 2009-02-19T13:18:10Z 2009-03-01T15:24:50Z <p>If you think SQL is boring or dumb or limited, try this:</p> <ol> <li>SQL Games<br /> <a href="http://www.simple-talk.com/community/blogs/lionel/archive/2005/12/30/91.aspx" rel="nofollow">Lionel Clarke 3D Maze Game</a><br /> <a href="http://www.codeproject.com/script/Membership/Profiles.aspx?mid=38339" rel="nofollow">CraigD</a> - <a href="http://www.codeproject.com/KB/database/Battleship2008.aspx" rel="nofollow">Battleship (MS SQL 2008 GEOGRAPHY and GEOMETRY)</a><br /> <a href="http://www.sqlservercentral.com/scripts/TSQL/62384/" rel="nofollow">Adam Haines - Tic Tac Toe T-SQL Style</a><br /> <a href="http://www.sqlservercentral.com/scripts/T-SQL/62978/" rel="nofollow">Kevin Duan - A Sudoku solution with set based T-SQL utilizing binary operators</a><br /> <a href="http://www.geocities.com/swint002/Sudoku.txt" rel="nofollow">Steve Wint - SQL Sudoku</a><br /> <a href="http://www.geocities.com/swint002/checkers.txt" rel="nofollow">Steve Wint - T-SQL Checkers</a><br /> <a href="http://mysqlgame4.appspot.com/" rel="nofollow">mySQLgame (online game)</a> </li> <li>Drawing with SQL<br /> <a href="http://toponewithties.blogspot.com/2006/08/t-sql-drawing.html" rel="nofollow">Roji Thomas - T-SQL Drawing</a><br /> <a href="http://thedailywtf.com/Articles/Stupid-Coding-Tricks-The-TSQL-Madlebrot.aspx" rel="nofollow">Graeme Job - T-SQL Mandelbrot</a><br /> <a href="http://forge.mysql.com/tools/tool.php?id=25" rel="nofollow">Dean Swift - Mandelbrot Fractals Using Stored Procedures</a><br /> <a href="http://archives.postgresql.org/pgsql-hackers/2008-11/msg01303.php" rel="nofollow">Gregory Stark - Mandelbrot in Postgres with recursive queries</a></li> <li>SQL Puzzles<br /> A bunch of puzzles from Lionel Clarke blog: <a href="http://www.simple-talk.com/community/blogs/lionel/archive/2005/10/28/14.aspx" rel="nofollow">1</a>|<a href="http://www.simple-talk.com/community/blogs/lionel/archive/2005/11/04/15.aspx" rel="nofollow">2</a>|<a href="http://www.simple-talk.com/community/blogs/lionel/archive/2005/11/22/31.aspx" rel="nofollow">3</a>|<a href="http://www.simple-talk.com/community/blogs/lionel/archive/2005/12/16/66.aspx" rel="nofollow">4</a>|<a href="http://www.simple-talk.com/community/blogs/lionel/archive/2005/12/30/92.aspx" rel="nofollow">5</a>|<a href="http://www.simple-talk.com/community/blogs/lionel/archive/2006/06/28/962.aspx" rel="nofollow">6</a>|<a href="http://www.simple-talk.com/community/blogs/lionel/archive/2007/10/26/38829.aspx" rel="nofollow">7</a>|<a href="http://www.simple-talk.com/community/blogs/lionel/archive/2007/11/27/40222.aspx" rel="nofollow">8</a>|<a href="http://www.simple-talk.com/community/blogs/lionel/archive/2008/01/07/42301.aspx" rel="nofollow">9</a><br /> And of course <a href="http://rads.stackoverflow.com/amzn/click/1558604537" rel="nofollow">Joe Celko's Puzzles</a> </li> <li>SQL <a href="http://en.wikipedia.org/wiki/Software%5FEaster%5FEgg" rel="nofollow">Easter eggs</a><br /> <a href="http://www.eeggs.com/tree/507.html" rel="nofollow">SQL Server (Microsoft) Easter Eggs</a><br /> <a href="http://databases.about.com/od/productinfo/a/eastereggs.htm" rel="nofollow">Database Easter Eggs</a><br /> <a href="http://technology.amis.nl/blog/1880/year-2000-problems" rel="nofollow">Marco Gralike - Oracle 7.3 Year 2000 problems</a> - <a href="http://oracleappstechnology.blogspot.com/2007/08/easter-egg-in-oracle-73.html" rel="nofollow">commented by Vikram Das</a> </li> <li>Other<br /> <a href="http://99-bottles-of-beer.net/language-sql-935.html" rel="nofollow">99 bottles of beer: SQL version</a><br /> Now... Give me more!</li> </ol> http://stackoverflow.com/questions/397576/whats-your-favorite-easter-egg 14 What's your favorite easter egg? [closed] csl 2008-12-29T11:47:07Z 2009-02-25T17:22:43Z <p>Please list your favorite easter eggs, include link and application/game name.</p> <h3>See Also:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/140376/">What Easter Eggs have you placed in code?</a><br/> <a href="http://stackoverflow.com/questions/4943">Is it a good idea to put Easter Eggs in applications?</a></p> </blockquote> http://stackoverflow.com/questions/162650/how-do-i-detect-easter-egg-mode-in-my-palm-os-application 2 How do I detect "Easter Egg" mode in my Palm OS application? Ben Combee 2008-10-02T14:38:16Z 2008-10-14T16:04:45Z <p>Since the early days, Palm OS has had a special "easter egg" mode that's enabled by making the right gesture in one of the Preference panels. On current Palm Treo and Centro devices, this is turned on by doing a clockwise swirl above the "Tips" button in the Power panel.</p> <p>Some applications, like the Blazer web browser, enable special features when easter eggs are active. How can I detect this in my own program?</p>