Coding Party tricks - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-11-29T02:56:53Zhttp://stackoverflow.com/feeds/question/936892http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/936892/coding-party-tricks4Coding Party tricks [closed]Mez2009-06-01T21:30:28Z2009-06-02T22:29:33Z
<p>Inspired by a question I got asked at a job interview once.</p>
<p>If you could do anything to show off your coding abilities, what would it be?</p>
<p>(aka what would be your coding party trick)</p>
http://stackoverflow.com/questions/936892/coding-party-tricks/936915#9369151Answer by WebDevHobo for Coding Party tricksWebDevHobo2009-06-01T21:34:35Z2009-06-01T21:34:35Z<p>Try explaining the difference between double and triple = signs :p</p>
<p>Also, a lot of people here at college seem to be having trouble with the simple concept of class inheritance...</p>
http://stackoverflow.com/questions/936892/coding-party-tricks/936918#9369180Answer by Paul Morie for Coding Party tricksPaul Morie2009-06-01T21:36:18Z2009-06-01T21:36:18Z<p>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).</p>
<p>Also, iterating through a linked-list using only pointer arithmetic.</p>
http://stackoverflow.com/questions/936892/coding-party-tricks/936919#9369193Answer by Jeff Meatball Yang for Coding Party tricksJeff Meatball Yang2009-06-01T21:36:24Z2009-06-01T21:36:24Z<p>Since you mentioned "party"... <a href="http://www.java4k.com" rel="nofollow">Java 4K</a></p>
http://stackoverflow.com/questions/936892/coding-party-tricks/936950#9369503Answer by Wyatt Barnett for Coding Party tricksWyatt Barnett2009-06-01T21:43:37Z2009-06-01T21:43:37Z<p>More sysadmin than coding, but sending emails via TELNET is fun and easy. Just fire up a dos window and run the following:</p>
<pre><code>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]
.
</code></pre>
<p>And that should send right out. Also handy for testing if SMTP works on a server without installing an email client.</p>
http://stackoverflow.com/questions/936892/coding-party-tricks/936960#9369600Answer by Nalandial for Coding Party tricksNalandial2009-06-01T21:45:25Z2009-06-01T21:45:25Z<p>Aspect-J's black-magic-like AOP awesomeness.</p>
http://stackoverflow.com/questions/936892/coding-party-tricks/936964#93696438Answer by John Rasch for Coding Party tricksJohn Rasch2009-06-01T21:46:58Z2009-06-01T21:46:58Zhttp://stackoverflow.com/questions/936892/coding-party-tricks/937028#9370285Answer by Jagd for Coding Party tricksJagd2009-06-01T22:03:03Z2009-06-02T22:29:33Z<p>"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.</p>
<p>At a loss for words, the interviewer hastily terminates the interview. "Yes, well, we'll be getting back in touch with you," he says.</p>
http://stackoverflow.com/questions/936892/coding-party-tricks/937371#9373712Answer by aleemb for Coding Party tricksaleemb2009-06-02T00:04:46Z2009-06-02T07:59:16Z<pre><code>Console.WriteLine(100f == 99.999999f); // true
</code></pre>
http://stackoverflow.com/questions/936892/coding-party-tricks/937410#9374105Answer by Dour High Arch for Coding Party tricksDour High Arch2009-06-02T00:22:19Z2009-06-02T00:22:19Z<p>Go to one of those obnoxious web pages like <a href="http://www.java4k.com/" rel="nofollow">Java4K</a> with white text on black and paste this into the location bar:</p>
<pre><code>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);}})( );
</code></pre>
http://stackoverflow.com/questions/936892/coding-party-tricks/937422#9374220Answer by musicfreak for Coding Party tricksmusicfreak2009-06-02T00:25:40Z2009-06-02T00:41:03Z<p>Solve a <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a> problem using 13 characters of APL code.</p>
http://stackoverflow.com/questions/936892/coding-party-tricks/937479#9374791Answer by Adam Rosenfield for Coding Party tricksAdam Rosenfield2009-06-02T00:46:54Z2009-06-02T00:46:54Z<p>Order pizza from the command line with <a href="http://www.beigerecords.com/cory/Things%5FI%5FMade/PizzaParty" rel="nofollow">pizza_party</a>.</p>