vote up 4 vote down star
2

As an example I offer this, which was used to clear the screen in COBOL.

DISPLAY SPACES UPON CRT
flag

62% accept rate
4  
I think this should be a community wiki post. Anyone else? – Matt Refghi Oct 28 '08 at 20:13

30 Answers

vote up 16 vote down check

while (true) System.out.println("SO isn't really meant for open-ended questions like this.");

This little one-liner kills the discussion.

(Sorry for the snarkiness, I think it's time for me to go home.)

link|flag
vote up 16 vote down

It's not really strange, but one bit of code that I've always found particularly amusing decrementing a value and checking it as it approaches zero, e.g.

while(foo-->0)
{
    //...
}
link|flag
I particularly like the imagery there - it looks like an arrow, which could mean "as foo approaches zero" - precisely what it is doing. – JTeagle Nov 28 '08 at 8:00
I use that in my code, actually. =] – strager Jan 1 '09 at 22:39
vote up 12 vote down
<td align="right" style="text-align: left">

It's a tug of war!

link|flag
It would be interesting to find out if different browsers put more priority of one verses the other. – Brad Gilbert Sep 19 '08 at 16:54
Priority is determined by the rules of the "cascade" in Cascading Style Sheets. I believe inline style attributes on the tag have the highest priority. – Quinn Taylor Jul 8 at 18:01
vote up 11 vote down

For me, it must be the Jaromil bash forkbomb, looks like a poem :)

:(){ :|:& };:

This is an explanation of the Jaromil program

Also, the more concise Windows shell forkbomb is a sure winner in any golf match:

%0|%0
link|flag
vote up 11 vote down
/* no comment */
link|flag
1  
// no comment here, move along – Myrrdyn Oct 10 '08 at 8:24
vote up 9 vote down
//&>/dev/null;x="${0%.*}";[ ! "$x" -ot "$0" ]||(rm -f "$x";cc -o "$x" "$0")&&"$x" $*;exit

I'd call this the most useful. I put this at the top of any simple single-file C scripts, so that I can execute them directly. It compiles if necessary and calls the executable, passing on any parameters.

link|flag
vote up 5 vote down

Best I ever saw was someone's sig on usenet that was a couple of lines of ob-C that generated the mandlebrot set. it was freaking cool:

~~~~~~~~~~~~~}}}}}}}}}}}}}}}}}}}}||||||||{{{zyvrwuW{|||||}}}}}}~~~~~~~~~~~~
~~~~~~~~~~}}}}}}}}}}}}}}}}}}}}|||||||||{{{zyxwoaqwxz{{{|||||}}}}}}~~~~~~~~~
~~~~~~~~}}}}}}}}}}}}}}}}}}}|||||||||{{zzzyxvn    Knwyz{{{{||||}}}}}}~~~~~~~
~~~~~~}}}}}}}}}}}}}}}}}}||||||||{{zyxuxxxwvuq     svwwyzzzyr{||}}}}}}}~~~~~
~~~~}}}}}}}}}}}}}}}}}|||||{{{{{zzzxt>  qf             pttfqeqz{|}}}}}}}}~~~
~~~}}}}}}}}}}}}}}|||{{{{{{{{{zzzywotn                     atyz{||}}}}}}}}~~
~~}}}}}}}}}||||{{zwvyyyyyyyyyyyxvsP                        swvz{||}}}}}}}}~
~}}}}|||||||{{{{zyxvpN[ur]spvwwvi                           qxz{|||}}}}}}}}
~}||||||||{{{{{zyytun         qq                            avz{|||}}}}}}}}
~||||||{zzzzyyxtroqb           a                            xz{{|||}}}}}}}}
~@G::# 6# (                                              pvxyz{{||||}}}}}}}
~||||||{zzzzyyxtroqb           a                            xz{{|||}}}}}}}}
~}||||||||{{{{{zyytun         qq                            avz{|||}}}}}}}}
~}}}}|||||||{{{{zyxvpN[ur]spvwwvi                           qxz{|||}}}}}}}}
~~}}}}}}}}}||||{{zwvyyyyyyyyyyyxvsP                        swvz{||}}}}}}}}~
~~~}}}}}}}}}}}}}}|||{{{{{{{{{zzzywotn                     atyz{||}}}}}}}}~~
~~~~}}}}}}}}}}}}}}}}}|||||{{{{{zzzxt>  qf             pttfqeqz{|}}}}}}}}~~~
~~~~~~}}}}}}}}}}}}}}}}}}||||||||{{zyxuxxxwvuq     svwwyzzzyr{||}}}}}}}~~~~~
~~~~~~~~}}}}}}}}}}}}}}}}}}}|||||||||{{zzzyxvn    Knwyz{{{{||||}}}}}}~~~~~~~
~~~~~~~~~~}}}}}}}}}}}}}}}}}}}}|||||||||{{{zyxwoaqwxz{{{|||||}}}}}}~~~~~~~~~
~~~~~~~~~~~~~}}}}}}}}}}}}}}}}}}}}||||||||{{{zyvrwuW{|||||}}}}}}~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~}}}}}}}}}}}}}}}}}}}}}|||||{zmt{{{||||}}}}}~~~~~~~~~~~~~~~~

Source that does it:

main(){float A,B,P,Q,X,Y,d;int i,D=80,n=3120;for(X=-2.,Y=-1.5,d=6./D;B=2*A
*B+Y,A=P-Q+X,n;((P=A*A)+(Q=B*B)>4||++i>D)&&putchar(*((n--%D?X+=d/2,i<D?i%11
:11:(X=-2.0,Y+=d,12))+"Mandelbrot! \n"))&&(A=B=P=Q=i=0));}
link|flag
vote up 4 vote down

My personal favorite I met in Schneier's "Applied Cryptography", to swap two integers:

x ^= y; y^= x; x^=y;

link|flag
that's a classic – Hugo Oct 29 '08 at 3:16
vote up 3 vote down

...to steal some ThinkGeek swag:

rm -rf /bin/laden

link|flag
vote up 3 vote down

I always thought

while ((*dst++ = *src++) != '\0');

was an interesting use of pointers to copy a string.

link|flag
vote up 3 vote down

A perl-regexp to check if a number is prime:

 print "Prime" if (1 x shift) !~ /^1?$|^(11+?)\1+$/

(I would like to give credit for this one, but I can't remember who actually dicovered it - not me)

link|flag
vote up 3 vote down
cd /pub
more beer
link|flag
vote up 3 vote down

Truncate Table

One line of SQL can do so much damage to data that would take many programs hundreds of lines of code.

link|flag
vote up 2 vote down

My favorite bash script thingy. Originally written by http://twitter.com/jf

curl -Is slashdot.org | egrep '^X-(F|B|L)' | cut -d \- -f 2
link|flag
Unfortunately that misses the rare quotes from other characters. X-Leela: This is by a wide margin the least likely thing that has ever happened. – Jeremy Banks Sep 18 '08 at 2:51
I never noticed those. This should be easy enough to modify though to grab those as well. Support for Leila, Zoidberg, the Professor. etc. – icco Sep 18 '08 at 22:38
Ok so I went through it, they've only add Leila recently (i can see with the blank lines in my logs :p) I've updated my one liner to include Leila. There are no other characters, yet. – icco Sep 19 '08 at 5:29
vote up 1 vote down

From the Python FAQ

print map(lambda x,f=lambda x,f:(x<=1) or (f(x-1,f)+f(x-2,f)): f(x,f),range(10))
link|flag
vote up 1 vote down

I don't know why but it has always tickled me when I run across this.

my @lines = map ( /:\s+(\S*)\s*$/, grep ( /Name/, <> ));");
link|flag
vote up 1 vote down
//For each inventory that is a sofa and has a comfortclass, test sleeping in it, and if you like it save it to the wishList.
wishList = inventories.match({type: "Sofa", comfortClass: required}).forEach(testSleepInObjectFunction);

Elegant, eigh? Soon it's gonna be possible in C# too!!!

link|flag
vote up 1 vote down
mvn clean compile sonar:sonar
link|flag
vote up 1 vote down
return 0;

It doesn't get better than that

link|flag
vote up 1 vote down
make

Short and to the point.

link|flag
vote up 0 vote down

This question reminds me of the site The Daily WTF. Check it out if you've never heard of it before.

link|flag
Worse Than Failure rules. Been on my RSS list for ages now. – schonarth Oct 21 '08 at 17:50
1  
I don't think it's called "Worse Than Failure" any more. It was briefly called that but changed back to its original name of "The Daily WTF". – Simon Howard Oct 28 '08 at 19:55
vote up 0 vote down

This is not super complex but I've always been charmed by this method of unbuffering IO on a file handle in perl without changing the currently selected file handle (er, technically it does change it, but it changes it back and you don't have to know what the currently selected file handle is)

select((select(SOMEFILEHANDLE), $| = 1)[0]);
link|flag
vote up 0 vote down

This is on all my forum signitures:

$me->selfDestruct('NOW');

or the ocassional

if($work.status == 'done'){ takeBreak(TRUE); }

however it always evaluates to false.

link|flag
vote up 0 vote down

$Completed = AskUserWhatTheyWantAndTakeCareOfIt();

link|flag
vote up 0 vote down
Console.WriteLine("Hello World!");

It ensures that your system is set up properly and ready for any programming action!

link|flag
Except that won't compile. You need more code to actually make it compile and run. – jasonh Jul 8 at 17:57
Hmm... strange. I'm quite sure I wasn't answering this question but a different duplicate. – Adrian Godong Jul 8 at 22:04
vote up 0 vote down
rm -rf *.*
link|flag
I just use "rm -rf *". That way, I blow away all the files that don't have periods in the name also. It's even better when it starts with "cd /". – David Thornley Jul 8 at 17:59
or, rm -rf / – nik Jul 8 at 18:00
vote up 0 vote down
chdir %windir%
link|flag
vote up 0 vote down
Arrays.sort(somearray)
link|flag
vote up 0 vote down

When I used ASP classic a lot, I was always frustrated that there was no floor/ceiling functions available. int works for floor, but there was no built-in ceiling, until I somehow, somewhere, I figured this out:

ceilOfX = -int -x

I always thought that was an elegant one-liner.

link|flag
vote up -2 vote down
toilet.flush if toilet.full?
link|flag

Your Answer

Get an OpenID
or

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