Coding Party tricks - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-11-29T02:56:53Z http://stackoverflow.com/feeds/question/936892 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/936892/coding-party-tricks 4 Coding Party tricks [closed] Mez 2009-06-01T21:30:28Z 2009-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#936915 1 Answer by WebDevHobo for Coding Party tricks WebDevHobo 2009-06-01T21:34:35Z 2009-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#936918 0 Answer by Paul Morie for Coding Party tricks Paul Morie 2009-06-01T21:36:18Z 2009-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#936919 3 Answer by Jeff Meatball Yang for Coding Party tricks Jeff Meatball Yang 2009-06-01T21:36:24Z 2009-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#936950 3 Answer by Wyatt Barnett for Coding Party tricks Wyatt Barnett 2009-06-01T21:43:37Z 2009-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#936960 0 Answer by Nalandial for Coding Party tricks Nalandial 2009-06-01T21:45:25Z 2009-06-01T21:45:25Z <p>Aspect-J's black-magic-like AOP awesomeness.</p> http://stackoverflow.com/questions/936892/coding-party-tricks/936964#936964 38 Answer by John Rasch for Coding Party tricks John Rasch 2009-06-01T21:46:58Z 2009-06-01T21:46:58Z http://stackoverflow.com/questions/936892/coding-party-tricks/937028#937028 5 Answer by Jagd for Coding Party tricks Jagd 2009-06-01T22:03:03Z 2009-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#937371 2 Answer by aleemb for Coding Party tricks aleemb 2009-06-02T00:04:46Z 2009-06-02T07:59:16Z <pre><code>Console.WriteLine(100f == 99.999999f); // true </code></pre> http://stackoverflow.com/questions/936892/coding-party-tricks/937410#937410 5 Answer by Dour High Arch for Coding Party tricks Dour High Arch 2009-06-02T00:22:19Z 2009-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#937422 0 Answer by musicfreak for Coding Party tricks musicfreak 2009-06-02T00:25:40Z 2009-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#937479 1 Answer by Adam Rosenfield for Coding Party tricks Adam Rosenfield 2009-06-02T00:46:54Z 2009-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>