As an example I offer this, which was used to clear the screen in COBOL.
DISPLAY SPACES UPON CRT
|
2
|
As an example I offer this, which was used to clear the screen in COBOL.
|
||||
|
|
|
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.) |
||
|
|
|
|
From the Python FAQ
|
||
|
|
|
|
It's a tug of war! |
||||
|
|
|
This question reminds me of the site The Daily WTF. Check it out if you've never heard of it before. |
||||||
|
|
|
|
||
|
|
|
|
My favorite bash script thingy. Originally written by http://twitter.com/jf
|
||||||
|
|
|
...to steal some ThinkGeek swag:
|
||
|
|
|
|
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)
|
||
|
|
|
|
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:
|
||
|
|
|
|
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.
|
||
|
|
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. |
||
|
|
|
|
This is on all my forum signitures:
or the ocassional
however it always evaluates to false. |
||
|
|
|
|
I don't know why but it has always tickled me when I run across this.
|
||
|
|
|
|
My personal favorite I met in Schneier's "Applied Cryptography", to swap two integers: x ^= y; y^= x; x^=y; |
||
|
|
|
|
||||
|
|
|
I always thought
was an interesting use of pointers to copy a string. |
||
|
|
|
|
A perl-regexp to check if a number is prime:
(I would like to give credit for this one, but I can't remember who actually dicovered it - not me) |
||
|
|
|
|
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:
Source that does it:
|
||
|
|
|
|
|
||
|
|
|
|
Elegant, eigh? Soon it's gonna be possible in C# too!!! |
||
|
|
|
|
$Completed = AskUserWhatTheyWantAndTakeCareOfIt(); |
||
|
|
|
|
It ensures that your system is set up properly and ready for any programming action! |
||||
|
|
|
Truncate Table One line of SQL can do so much damage to data that would take many programs hundreds of lines of code. |
|||
|
|
|
|
|
||
|
|
|
|
It doesn't get better than that |
||
|
|
|
|
|
||||
|
|
|
|
||
|
|
|
|
Short and to the point. |
||
|
|
|
|
|
||
|
|
|
|
When I used ASP classic a lot, I was always frustrated that there was no floor/ceiling functions available. ceilOfX = -int -x I always thought that was an elegant one-liner. |
||
|
|