vote up 4 vote down star
5

Inspired by a question I got asked at a job interview once.

If you could do anything to show off your coding abilities, what would it be?

(aka what would be your coding party trick)

flag

13  
Questions like this should be community wiki, there's no definitive answer. – Lasse V. Karlsen Jun 1 at 21:36
8  
is that ((coding party) trick), or (coding (party trick))? – JustJeff Jun 1 at 21:40
I meant (party trick) – Mez Jun 1 at 22:00
Should be CW, yes. – ldigas Jun 1 at 22:06

closed as not a real question by Graeme Perrow, George Stocker, lothar, annakata, Neil Butterworth Jun 2 at 8:08

11 Answers

vote up 38 vote down check
link|flag
10  
It looks like someone's coding party trick worked. – Windows programmer Jun 2 at 0:15
1  
Maybe it's a program encoded as binary, with spaces representing 0s and tabs representing 1s... – Uri Jun 2 at 1:03
1  
Click the edit link to see what's up. – aleemb Jun 2 at 8:02
4  
@aleemb: not everyone can click edit (though I can :P) – hasen j Jun 2 at 8:05
1  
: ) – Ólafur Waage Jun 2 at 22:37
show 5 more comments
vote up 1 vote down

Try explaining the difference between double and triple = signs :p

Also, a lot of people here at college seem to be having trouble with the simple concept of class inheritance...

link|flag
2  
I'm afraid those people will be going home early from the party – John Rasch Jun 1 at 21:52
14  
Yeah, but sadly they'll be going home with the cute members of the opposite sex, while the die-hards are left to argue about class inheritance. – Chris Farmer Jun 1 at 22:10
vote up 0 vote down

Creating an instance of an abstract class without creating a subclass (to write a unit test for a contract between a concrete method and an abstract method).

Also, iterating through a linked-list using only pointer arithmetic.

link|flag
you do create a subclass... an anonymous one. – Jorn Jun 1 at 21:48
vote up 3 vote down

Since you mentioned "party"... Java 4K

link|flag
Awesome link, thanks! (You're welcome at my party :)) – Liran Orevi Jun 1 at 21:40
Sweet love party games :) – zonkflut Jun 2 at 0:35
vote up 3 vote down

More sysadmin than coding, but sending emails via TELNET is fun and easy. Just fire up a dos window and run the following:

telnet [smtp server hostname] 25
[now we be in telnet]
helo
mail from:you@urdomain.com
rcpt to:someone@somedomain.com
data
[type message data here]
.

And that should send right out. Also handy for testing if SMTP works on a server without installing an email client.

link|flag
IRC via telnet works too. I've done that several times. What do you do when you have an unstable internet connection, need to ask a question on IRC, and have a shell account without an IRC client available? Why, screen + telnet! – arke Jun 2 at 0:17
1  
That's easy. telnet [smtp server hostname] 465 (SMTP SSL) would be a lot more impressive! – dbr Jun 2 at 15:44
vote up 0 vote down

Aspect-J's black-magic-like AOP awesomeness.

link|flag
vote up 5 vote down

"Well, I don't know about party tricks, but I created a worm when I was in college. Wow, it brought the entire network to it's knees, man! It was stellar!" says me.

At a loss for words, the interviewer hastily terminates the interview. "Yes, well, we'll be getting back in touch with you," he says.

link|flag
1  
Next day the interviewer gets back in touch with you, begs you to remove their worm, and asks you to name your salary. – Windows programmer Jun 2 at 0:17
vote up 2 vote down
Console.WriteLine(100f == 99.999999f); // true
link|flag
1  
Why do you have multiplications? Doesn't this work, return (100f == 99.99999999999999999999999f); ? – Windows programmer Jun 2 at 0:19
Good point, updated. It's true ofr 8 or more digits. So this also returns true: 1f == 0.99999999f; – aleemb Jun 2 at 8:01
vote up 5 vote down

Go to one of those obnoxious web pages like Java4K with white text on black and paste this into the location bar:

javascript:(function( ){var%20newSS,%20styles='*%20{%20
background:%20white%20!%20important;%20color:%20black%20!important%20}%20
:link,%20:link%20*%20{%20color:%20#0000EE%20!important%20}%20
:visited,%20:visited%20*%20{%20color:%20#551A8B%20!important%20}';
%20if(document.createStyleSheet)%20{%20document.createStyleSheet("javascript:'"+styles+"'");
%20}%20else%20{newSS=document.createElement('link');newSS.rel='stylesheet';
newSS.href='data:text/css,'+escape(styles);
document.documentElement.childNodes[0].appendChild(newSS);}})( );
link|flag
+1 for location bar hacks :) – annakata Jun 2 at 8:03
vote up 0 vote down

Solve a Project Euler problem using 13 characters of APL code.

link|flag
vote up 1 vote down

Order pizza from the command line with pizza_party.

link|flag
1  
Why the downvotes? – Adam Rosenfield Jun 2 at 15:14

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