vote up 1 vote down star
4

I've read of an easter egg as part of an actual programming language command (Python's antigravity), 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?

Some I've heard of:

  • Python antigravity comic
  • PHP dog logo: append ?=PHPE9568F36-D428-11d2-A769-00AA001ACF42 on any php page (I wouldn't consider this being a language egg though...)

Completely unrelated to programming I just noticed when you search in Google for "ascii art" it changes the Google logo to ascii.

flag
1  
Ha never knew about that dog one!! – alex May 21 at 1:00

3 Answers

vote up 0 vote down

or anything undocumented

There are millions that fall under that one. I bet that the majority of APIs have some genuinely useful but undocumented functionality.

I know that Samba has a particularly powerful (and somewhat destructive) undocumented function in it, but I shall say no more.

This might also get your attention: http://undocumented.ntinternals.net/

link|flag
Yes, I think you're right "undocumented" is a question on it's own... – Peter May 15 at 10:49
vote up 1 vote down

Tcl has the ability to read and write stardates.

% clock format [clock seconds] -format %Q
Stardate 63367.2

Quite some time ago I had a gig programming in DIBOL. The DIBOL compile had a special switch that would add ascii art of a sheep at the end of the compiler output, with the phrase "DIBOL - the black sheep of the DEC language family" or something to that effect.

link|flag
vote up 2 vote down

If you're a Pythonista, you probably know of import this:

>>> import this
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

And then there's also the message from the developers to anyone that wants braces in Python:

>>> from __future__ import braces
  File "<stdin>", line 1
SyntaxError: not a chance
link|flag

Your Answer

Get an OpenID
or

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