CINXE.COM

[Geeks Are Sexy] Technology News - We make technology sexy

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("http://web.archive.org/web"); __wm.wombat("http://www.geeksaresexy.net:80/","20090305083338","http://web.archive.org/","web","/_static/", "1236242018"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <title>[Geeks Are Sexy] Technology News - We make technology sexy</title> <meta http-equiv="imagetoolbar" content="no"/> <meta name="generator" content="WordPress 2.7.1"/> <link rel="stylesheet" href="http://web.archive.org/web/20090305083338cs_/http://www.geeksaresexy.net/wp-content/themes/geek/style.css" type="text/css" media="screen"/> <!--[if IE 6]> <link rel="stylesheet" href="http://www.geeksaresexy.net/wp-content/themes/geek/ie6.css" type="text/css" media="screen" /> <![endif]--> <!--[if IE 7]> <link rel="stylesheet" href="http://www.geeksaresexy.net/wp-content/themes/geek/ie7.css" type="text/css" media="screen" /> <![endif]--> <link rel="alternate" type="application/rss+xml" title="[Geeks Are Sexy] Technology News RSS Feed" href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"/> <link rel="pingback" href="http://www.geeksaresexy.net/xmlrpc.php"/> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.geeksaresexy.net/xmlrpc.php?rsd"/> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.geeksaresexy.net/wp-includes/wlwmanifest.xml"/> <meta name="generator" content="WordPress 2.7.1"/> <!-- Powered by AdSense-Deluxe WordPress Plugin v0.8 - http://www.acmetech.com/blog/adsense-deluxe/ --> <!-- all in one seo pack 1.4.7 [-1,-1] --> <meta name="description" content="Technology, tutorials, science, news and social issues for geeks, by geeks! We make technology sexy."/> <meta name="keywords" content="technology, computers, science, news, sexy, geeks, software, tutorials, security"/> <!-- /all in one seo pack --> <script language="javascript" type="text/javascript"> <!-- function collapseThread( theId ) { var comment = document.getElementById(theId); if(!comment) { alert("ERROR:\nThe document structure is different\nfrom what Threaded Comments expects.\nYou are missing the element '"+theId+"'"); return; } var theBody = findBody(comment); if(comment.className.indexOf("collapsed") > -1) { comment.className = comment.className.replace(" collapsed", "");; } else { comment.className += " collapsed"; } } function expandThread( theId ) { var comment = document.getElementById(theId); if(!comment) { alert("ERROR:\nThe document structure is different\nfrom what Threaded Comments expects.\nYou are missing the element '"+theId+"'"); return; } var theBody = findBody(comment); if(comment.className.indexOf("collapsed") > -1) { comment.className = comment.className.replace(" collapsed", "");; } } function findBody(el) { var divs = el.getElementsByTagName("div"); var ret; for(var i = 0; i < divs.length; ++i) { if(divs.item(i).className.indexOf("body") > -1) return divs.item(i); } return false; } function onAddComment() { //checkDocumentIntegrity(); var el = document.getElementById("commentform"); // Future release: Check if form is filled correctly and mark the form fields. el.submit(); } function moveAddCommentBelow(theId, threadId, collapse) { expandThread( theId ); var addComment = document.getElementById("addcomment"); if(!addComment) { alert("ERROR:\nThreaded Comments can't find the 'addcomment' div.\nThis is probably because you have changed\nthe comments.php file.\nMake sure there is a tag around the form\nthat has the id 'addcomment'"); return } var comment = document.getElementById(theId); if(collapse) { for(var i = 0; i < comment.childNodes.length; ++i) { var c = comment.childNodes.item(i); if(typeof(c.className) == "string" && c.className.indexOf("collapsed")<0) { c.className += " collapsed"; } } } addComment.parentNode.removeChild(addComment); comment.appendChild(addComment); if(comment.className.indexOf("alt")>-1) { addComment.className = addComment.className.replace(" alt", ""); } else { addComment.className += " alt"; } var replyId = document.getElementById("comment_reply_ID"); if(replyId == null) { alert("Brians Threaded Comments Error:\nThere is no hidden form field called\n'comment_reply_ID'. This is probably because you\nchanged the comments.php file and forgot\nto include the field. Please take a look\nat the original comments.php and copy the\nform field over."); } replyId.value = threadId; var reRootElement = document.getElementById("reroot"); if(reRootElement == null) { alert("Brians Threaded Comments Error:\nThere is no anchor tag called 'reroot' where\nthe comment form starts.\nPlease compare your comments.php to the original\ncomments.php and copy the reroot anchor tag over."); } reRootElement.style.display = "block"; var aTags = comment.getElementsByTagName("A"); var anc = aTags.item(0).id; //document.location.href = "#"+anc; document.getElementById("comment").focus(); } function checkDocumentIntegrity() { str = ""; str += checkElement("reroot","div tag"); str += checkElement("addcomment", "div tag"); str += checkElement("comment_reply_ID", "hidden form field"); str += checkElement("content", "div tag"); str += checkElement("comment", "textfield"); str += checkElement("addcommentanchor", "anchor tag"); if(str != "") { str = "Brian's Threaded Comments are missing some of the elements that are required for it to function correctly.\nThis is probably the because you have changed the original comments.php that was included with the plugin.\n\nThese are the errors:\n" + str; str += "\nYou should compare your comments.php with the original comments.php and make sure the required elements have not been removed."; alert(str); } } function checkElement(theId, elDesc) { var el = document.getElementById(theId); if(!el) { if(elDesc == null) elDesc = "element"; return "- The "+elDesc+" with the ID '" +theId + "' is missing\n"; } else return ""; } function reRoot() { var addComment = document.getElementById("addcomment"); var reRootElement = document.getElementById("reroot"); reRootElement.style.display = "none"; var content = document.getElementById("content-main"); if( !content ) content = document.getElementById("content"); if( content ) { addComment.parentNode.removeChild(addComment); content.appendChild(addComment); } addComment.className = addComment.className.replace(" alt", ""); document.location.href = "#addcommentanchor"; document.getElementById("comment").focus(); document.getElementById("comment_reply_ID").value = "0"; } function changeCommentSize(d) { var el = document.getElementById("comment"); var height = parseInt(el.style.height); if(!height && el.offsetHeight) height = el.offsetHeight; height += d; if(height < 20) height = 20; el.style.height = height+"px"; } --> </script> <style type="text/css"> .comment { position: relative; margin: 3px; margin-top: 6px; /* border: 1px solid #666; */ padding: 4px 4px 4px 8px; background-color: #fff; } .odd { background-color: #f8f8f8; } .comment div { position: relative; } .comment .comment img { margin: 0px; } .comment .collapseicon { width: 13px; height: 13px; overflow: hidden; background-image: url(http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/plugins/briansthreadedcomments.php?image=subthread-open.png); } .collapsed .collapseicon { background-image: url(http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/plugins/briansthreadedcomments.php?image=subthread.png); } .comment .reply { text-align: right; font-size: 80%; padding: 0px 6px 6px 0px; } .comment { border: 1px solid #ddd; margin-top: 10px; } input#subscribe { width: auto; } .comment .body .content { padding: 0px 3px 0px 3px; /*width: 100%; */ overflow: auto; } .comment .title abbr { border: none; } .collapsed .body, .collapsed .comment { display: none; } #commentform textarea { width: 97%; } .btc_gravatar { float: right; margin: 3px 3px 4px 4px; } </style> <link rel="stylesheet" type="text/css" media="screen" href="http://web.archive.org/web/20090305083338cs_/http://www.geeksaresexy.net/wp-content/plugins/sociable/sociable.css"/> </head> <body> <div class="wrap"> <div id="header"> <ul id="menu"> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/">Home</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/about/" rel="nofollow">About</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/advertise/" rel="nofollow">Advertise</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/articles-and-reviews/">Articles</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/gas-cartoons/">Cartoons</a></li> <li><a href="http://web.archive.org/web/20090305083338/mailto:feedback@geeksaresexy.net?subject=[GAS] Feedback" rel="nofollow">Contact</a></li> </ul> <form method="get" id="searchform" action="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/"> <div> <span></span> <input type="text" value="" name="s" id="sfr"/> <input type="image" id="ss" alt="Submit" src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/themes/geek/images/geek_07.jpg" value="search"/> </div> </form> <div id="extras"> <h1><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/">[Geeks Are Sexy] Technology News<span></span></a></h1> <div id="des">tech, science, news and social issues for geeks</div> <a id="rss" href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"></a> <div class="extra"></div> <ul class="abox"> <div class="abf">Featured Articles</div> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/02/17/feature-audio-modulated-thunder-music-pleases-thor/">Audio Modulated Thunder Pleases Thor</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2008/04/01/10-must-read-books-for-geeks-part-i/">10 Must-Read Books for Geeks</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2008/11/15/sexy-green-geek-part-1-reduce/">Green Geek: Reduce - Reuse - Recycle</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2007/03/22/turning-your-blog-into-a-money-making-machine-a-simple-guide/">How to make money out of your blog</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/articles-and-reviews/">More Featured Articles...</a></li> </ul> <div class="bbox"> <a rel="nofollow" href="http://web.archive.org/web/20090305083338/http://feedproxy.google.com/geeksAreSexyTechnologyNews"><img src="http://web.archive.org/web/20090305083338im_/http://feedproxy.google.com/~fc/geeksAreSexyTechnologyNews?bg=ffc933&amp;fg=000000&amp;anim=1" height="26" width="88" style="border:0" alt=""/></a> <div class="abf"><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/themes/geek/images/rss.jpg" alt="rss"/> <a rel="nofollow" href="http://web.archive.org/web/20090305083338/http://feedproxy.google.com/geeksAreSexyTechnologyNews">Subscribe to Posts (RSS)</a></div> <div class="abf"><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/themes/geek/images/email_sm.jpg" alt="rss"/> Subscribe by Email</div> <p>Stay up-to-date with Geeks Are Sexy!</p> <form style="margin-left:15px;margin-right:10px;margin-top:15px" action="http://web.archive.org/web/20090305083338/http://www.feedburner.com/fb/a/emailverify" method="post" target="popupwindow" onsubmit="window.open('http://www.feedburner.com/fb/a/emailverifySubmit?feedId=195650', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><input type="text" style="margin-top:-7px;float:left;width:120px;height:15px;margin-bottom:0px" value="Enter Your Email" name="email"/><input type="hidden" value="http://feeds.feedburner.com/~e?ffid=195650" name="url"/><input type="hidden" value="John Chow dot Com" name="title"/><input type="hidden" name="loc" value="en_US"/><br/><input type="submit" id="subutton" value=""/></form> </div> </div> </div> <div id="separator"></div> <div id="main"> <div id="content"> <div class="apost"> <h2 id="post-11035"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/04/likaholix-new-recommendation-engine-enters-private-beta/" rel="bookmark" title="Permanent Link to Likaholix: new recommendation engine enters private beta">Likaholix: new recommendation engine enters private beta</a></h2> <span class="ptime">March 4, 2009 by Chip | <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/04/likaholix-new-recommendation-engine-enters-private-beta/#respond" title="Comment on Likaholix: new recommendation engine enters private beta">0 comments</a></span> <!-- spost --> <p><center><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2009/03/link.jpg" alt="" width="479" height="153"/></center></p> <p>Two former Google employees, Bindu Reddy and Arvind Sundararajan, have launched a <a href="http://web.archive.org/web/20090305083338/http://blog.likaholix.com/2009/03/announcing-private-beta-launch-of.html">private beta of a new recommendation site</a> named <a href="http://web.archive.org/web/20090305083338/http://likaholix.com/">likaholix</a>.  You can <a href="http://web.archive.org/web/20090305083338/http://likaholix.com/">request a beta account</a> from the site.  It took 14 minutes for my invitation to hit my GMail account.</p> <p>The sign up process was quick and easy, and the site is pretty responsive &#8212; much better than a lot of other beta releases I&#8217;ve seen, but then again &#8220;beta&#8221; seems to mean &#8220;production&#8221; in Googlespeak.</p> <p> <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/04/likaholix-new-recommendation-engine-enters-private-beta/#more-11035" class="more-link">Read the rest of this entry &raquo;</a></p> <!-- epost --> </div> <div class="pfoot"> <span class="pfl"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"><span class="pfrss"></span></a>Did you enjoy this post? If so, <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/">subscribe</a> to the geeks<span>are</span>sexy RSS feed.</span> <span class="pfr"></span> </div> <div class="apost"> <h2 id="post-11025"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/04/why-it-pros-always-seem-to-be-doing-nothing/" rel="bookmark" title="Permanent Link to Why IT Pros Always Seem to be Doing Nothing">Why IT Pros Always Seem to be Doing Nothing</a></h2> <span class="ptime">March 4, 2009 by admin | <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/04/why-it-pros-always-seem-to-be-doing-nothing/#comments" title="Comment on Why IT Pros Always Seem to be Doing Nothing">2 comments</a></span> <!-- spost --> <p><center><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2009/03/it-people2.jpg"></center></p> <p>[<a href="http://web.archive.org/web/20090305083338/http://eviljaymz.com/?q=node/33">eviljaymz.com</a> | Via <a href="http://web.archive.org/web/20090305083338/http://www.makeuseof.com/tech-fun/why-computer-pros-have-a-lot-of-spare-time/#comments">MUO</a>]</p> <!-- epost --> </div> <div class="pfoot"> <span class="pfl"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"><span class="pfrss"></span></a>Did you enjoy this post? If so, <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/">subscribe</a> to the geeks<span>are</span>sexy RSS feed.</span> <span class="pfr"></span> </div> <div class="apost"> <h2 id="post-10986"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/04/how-to-recovering-your-windows-password/" rel="bookmark" title="Permanent Link to HOW TO: Get back in Windows after losing your password">HOW TO: Get back in Windows after losing your password</a></h2> <span class="ptime">March 4, 2009 by Karl L. Gechlik | <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/04/how-to-recovering-your-windows-password/#comments" title="Comment on HOW TO: Get back in Windows after losing your password">13 comments</a></span> <!-- spost --> <p><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2009/03/forgot-password.jpg" align="right" style="margin-left:15px" alt="Lost your Windows Password?">Hey there GAS readers! <a href="http://web.archive.org/web/20090305083338/http://www.asktheadmin.com/">AskTheAdmin</a> here guest posting on how to recover YOUR Windows password. This is not meant as a how-to hack your friend, girlfriend, dog or lover’s computer, but as a way to get you back into your Windows machine as a last resort. If you have another username and password on this machine, use that. If you can have your administrator reset it for you – do that. But when all else fails there is always a back door!</p> <p> <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/04/how-to-recovering-your-windows-password/#more-10986" class="more-link">Read the rest of this entry &raquo;</a></p> <!-- epost --> </div> <div class="pfoot"> <span class="pfl"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"><span class="pfrss"></span></a>Did you enjoy this post? If so, <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/">subscribe</a> to the geeks<span>are</span>sexy RSS feed.</span> <span class="pfr"></span> </div> <div class="apost"> <h2 id="post-10990"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/04/new-awesome-terminator-salvation-trailer-hits-the-web/" rel="bookmark" title="Permanent Link to New Awesome Terminator Salvation Trailer Hits the Web">New Awesome Terminator Salvation Trailer Hits the Web</a></h2> <span class="ptime">March 4, 2009 by admin | <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/04/new-awesome-terminator-salvation-trailer-hits-the-web/#comments" title="Comment on New Awesome Terminator Salvation Trailer Hits the Web">4 comments</a></span> <!-- spost --> <p>With less than 3 months remaining until its release, Warner Bros. released a new full-length trailer for their upcoming blockbuster, Terminator Salvation. Enjoy!</p> <p><center><object width="510" height="270"><param name="movie" value="http://www.traileraddict.com/emd/9244"></param><param name="allowscriptaccess" value="always"><param name="wmode" value="transparent"></param><param name="allowFullScreen" value="true"></param><embed src="http://web.archive.org/web/20090305083338oe_/http://www.traileraddict.com/emd/9244" type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent" width="510" height="270" allowfullscreen="true"></embed></object></center></p> <p>[Via <a href="http://web.archive.org/web/20090305083338/http://i.gizmodo.com/5163590/new-full+length-terminator-salvation-trailer-hits-is-awesome">Gizmodo</a>]</p> <!-- epost --> </div> <div class="pfoot"> <span class="pfl"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"><span class="pfrss"></span></a>Did you enjoy this post? If so, <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/">subscribe</a> to the geeks<span>are</span>sexy RSS feed.</span> <span class="pfr"></span> </div> <div class="apost"> <h2 id="post-10987"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/04/the-other-side-of-jean-luc-picard/" rel="bookmark" title="Permanent Link to The Other Side of Jean-Luc Picard">The Other Side of Jean-Luc Picard</a></h2> <span class="ptime">March 4, 2009 by Miss Cellania | <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/04/the-other-side-of-jean-luc-picard/#respond" title="Comment on The Other Side of Jean-Luc Picard">0 comments</a></span> <!-- spost --> <p><center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/pf9oD_xl8mI&amp;hl=en&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://web.archive.org/web/20090305083338oe_/http://www.youtube.com/v/pf9oD_xl8mI&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></center></p> <p>I&#8217;ve seen a ton of these Star Trek: TNG remixes in the past few days, but this one stood out from the rest in that it a) made sense, and 2) made me laugh. You can see a lot more of these at <a href="http://web.archive.org/web/20090305083338/http://www.jandrewedits.com/" target="_blank">Jandrew Edits</a>.</p> <p>[via <a href="http://web.archive.org/web/20090305083338/http://www.mentalfloss.com/blogs/archives/22918" target="_blank">Mental Floss</a>]</p> <!-- epost --> </div> <div class="pfoot"> <span class="pfl"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"><span class="pfrss"></span></a>Did you enjoy this post? If so, <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/">subscribe</a> to the geeks<span>are</span>sexy RSS feed.</span> <span class="pfr"></span> </div> <div class="apost"> <h2 id="post-10971"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/03/feature-the-boiler-bar-like-thirsty-moths-to-a-flame/" rel="bookmark" title="Permanent Link to Feature: The Boiler Bar - Like Thirsty Moths to a Flame">Feature: The Boiler Bar - Like Thirsty Moths to a Flame</a></h2> <span class="ptime">March 3, 2009 by BrianBoyko | <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/03/feature-the-boiler-bar-like-thirsty-moths-to-a-flame/#respond" title="Comment on Feature: The Boiler Bar - Like Thirsty Moths to a Flame">0 comments</a></span> <!-- spost --> <p><center><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2009/03/boilerbar.jpg"></center></p> <p>By Brian Boyko<br/> <em>Contributing Writer, [GAS]</em></p> <p>They call it “oilpunk” – a sort of “post-Steampunk” aesthetic, championing the designs of the early modern era (around 1920s/1930s) rather than the Victorian attributes of the “steampunker.”</p> <p>And what better homage to the era of the speakeasy than a bar?</p> <p>Yes, the fireballs generated by the twin propane-fueled tanks on either side are impressive, but let’s not kid ourselves, what makes the “<strong>Boiler Bar</strong>” beautiful is that it serves alcohol. As inventor and blacksmith Jon Sarriugarte explains in the video below, you can pretty much set up anywhere, and draw in revelers by setting off a few fireblasts, and then when they get there, there’s a bar. It’s an “instant party” machine, really.</p> <p>If that wasn’t enough, when it’s too light during the day to really make impressive fireballs, the Boiler Bar also has a theatre with 1920’s vaudeville themed performances.</p> <p><center><object width="510" height="313"><param name="movie" value="http://www.youtube.com/v/iCHvJb1DiqM&amp;hl=en&amp;fs=1&amp;ap=%2526fmt%3D18"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://web.archive.org/web/20090305083338oe_/http://www.youtube.com/v/iCHvJb1DiqM&amp;hl=en&amp;fs=1&amp;ap=%2526fmt%3D18" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="510" height="313"></embed></object></center></p> <p>If you’d like to see the video in <strong>full HD resolution</strong>, just <a href="http://web.archive.org/web/20090305083338/http://www.youtube.com/watch?v=iCHvJb1DiqM&amp;fmt=22"><strong>hit this link</strong></a>, which will take you to the video’s high-def page on YouTube.</p> <p>Though it wasn’t available at the time this video was filmed, Sarriugarte also has a device that uses 15,000 volts of electrical current to instantly age whiskey thirty years. It does, however, have the side effect that the whiskey then catches on fire.</p> <p>If you’d like to get more information on Jon Sarriugarte’s other works, check out <a href="http://web.archive.org/web/20090305083338/http://formandreform.com/">formandreform.com</a>.</p> <p>Oh, one last thing. If you’ve got $1200, you can <a href="http://web.archive.org/web/20090305083338/http://www.formandreform.com/wordpress/?page_id=132">rent the Boiler Bar yourself</a> for a night…</p> <p><strong>Other installments of Crazy Inventions and Crazy Inventors:</strong></p> <ul> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/02/17/feature-audio-modulated-thunder-music-pleases-thor/">Audio Modulated Tesla Coil Music Pleases Thor</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/02/10/feature-the-ponginator-a-robotic-combination-of-king-kong-and-ping-pong/">The Ponginator - A Robotic Combination of King Kong and Ping Pong</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/01/27/feature-fire-art-fire-art/">Fire + Art = Fire Art</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/01/20/feature-have-fun-storming-the-castle-mongo-the-trebuchet/">Have fun storming the castle: Mongo the Trebuchet</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/01/13/fish-on-a-volvo-a-look-at-the-sashimi-tabernacle-choir/">Fish on a Volvo - A look at the Sashimi Tabernacle Choir</a></li> </ul> <p>[Picture Source: <a href="http://web.archive.org/web/20090305083338/http://blog.makezine.com/archive/2008/05/the_boiler_bar_at_maker_f.html">Make</a>]</p> <!-- epost --> </div> <div class="pfoot"> <span class="pfl"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"><span class="pfrss"></span></a>Did you enjoy this post? If so, <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/">subscribe</a> to the geeks<span>are</span>sexy RSS feed.</span> <span class="pfr"></span> </div> <div class="apost"> <h2 id="post-10965"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/03/lacie-releases-key-shaped-usb-keys/" rel="bookmark" title="Permanent Link to LaCie Releases Key-Shaped USB Keys">LaCie Releases Key-Shaped USB Keys</a></h2> <span class="ptime">March 3, 2009 by admin | <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/03/lacie-releases-key-shaped-usb-keys/#respond" title="Comment on LaCie Releases Key-Shaped USB Keys">0 comments</a></span> <!-- spost --> <p><center><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2009/03/lacieusbkeys.jpg"></center></p> <p>Finally, someone got the brilliant idea to create key-shaped USB keys, complete with little holes that work with your keychain. Simply brilliant. The three models, PassKey iamaKey and itsaKey, can accommodate microSD cards, with the last two adding 4 and 8GB of storage. Price and availability to be announced.</p> <p>[Via <a href="http://web.archive.org/web/20090305083338/http://www.engadget.com/2009/03/02/lacies-new-sally-struthers-approved-usb-key-drives/">Engadget</a>]</p> <!-- epost --> </div> <div class="pfoot"> <span class="pfl"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"><span class="pfrss"></span></a>Did you enjoy this post? If so, <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/">subscribe</a> to the geeks<span>are</span>sexy RSS feed.</span> <span class="pfr"></span> </div> <div class="apost"> <h2 id="post-10941"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/03/happy-square-root-day/" rel="bookmark" title="Permanent Link to Happy Square Root Day!">Happy Square Root Day!</a></h2> <span class="ptime">March 3, 2009 by Miss Cellania | <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/03/happy-square-root-day/#respond" title="Comment on Happy Square Root Day!">0 comments</a></span> <!-- spost --> <p><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2009/03/spongebob1.jpg" alt="spongebob-squareroot" align="right" style="margin-left:10px;margin-top:10px"/><a href="http://web.archive.org/web/20090305083338/http://en.wikipedia.org/wiki/Square_root_day" target="_blank">Square Root Day</a> occurs when the month and the day are the square root of the year. It only happens <a href="http://web.archive.org/web/20090305083338/http://www.sfgate.com/cgi-bin/article.cgi?f=/n/a/2009/03/02/state/n161221S74.DTL" target="_blank">nine times in a century</a>, and today is one of those days. The holiday is the brainchild of Sequoia High (Redwood City, California) driver education teacher Ron Gordon, who enjoys calendar quirks. What can you do to celebrate Square Root Day? Math teachers expect students to <a href="http://web.archive.org/web/20090305083338/http://www.spokane.net/fun_stuff/FunStuffContent.aspx?ContentCol=bjf" target="_blank">calculate square roots</a>.  That&#8217;s not nearly enough fun for a holiday, no matter how much of a math geek you are. See a list of <a href="http://web.archive.org/web/20090305083338/http://www.mentalfloss.com/blogs/archives/23231" target="_blank">ways to celebrate Square Root Day</a> at mental_floss, with food, games, and other activities based around squares and roots.</p> <!-- epost --> </div> <div class="pfoot"> <span class="pfl"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"><span class="pfrss"></span></a>Did you enjoy this post? If so, <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/">subscribe</a> to the geeks<span>are</span>sexy RSS feed.</span> <span class="pfr"></span> </div> <div class="apost"> <h2 id="post-10953"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/03/deal-of-the-day-canon-powershot-sd770is-10mp-digital-camera-14494-shipped/" rel="bookmark" title="Permanent Link to Deal of the Day: Canon PowerShot SD770IS 10MP Digital Camera - $144.94, Shipped">Deal of the Day: Canon PowerShot SD770IS 10MP Digital Camera - $144.94, Shipped</a></h2> <span class="ptime">March 3, 2009 by admin | <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/03/deal-of-the-day-canon-powershot-sd770is-10mp-digital-camera-14494-shipped/#comments" title="Comment on Deal of the Day: Canon PowerShot SD770IS 10MP Digital Camera - $144.94, Shipped">2 comments</a></span> <!-- spost --> <p><center><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2009/03/sd770is.jpg"></center></p> <p>For today&#8217;s edition of Deal of the Day, we&#8217;ve got the <a href="http://web.archive.org/web/20090305083338/http://www.amazon.com/gp/product/B0015DNIKU?ie=UTF8&amp;tag=geeksaresexyt-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0015DNIKU">Canon PowerShot SD770IS digital camera</a> priced at $144.94, shipping included. This is one of the best point and shoot cameras out there folks, so if you&#8217;re looking for a cheap, high quality camera, this one is worth checking out.</p> <blockquote><p>Canon&#8217;s PowerShot SD770IS digital camera has generated 4.5 stars reviews from over 300 Amazon.com customers and you can capture yours today for the lowest price ever from Amazon.com&#8211;only $144.94 plus FREE Super Saver Shipping. This sleek, slim head-turner is the perfect everyday camera. High-end specifications include 10.0-megapixel resolution and a 3x optical zoom lens. Spectacular images are easy to create thanks to advanced Canon technologies like Face Detection and Motion Detection Technologies that eliminate blur.</p></blockquote> <p><a href="http://web.archive.org/web/20090305083338/http://www.amazon.com/gp/product/B0015DNIKU?ie=UTF8&amp;tag=geeksaresexyt-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0015DNIKU">Canon PowerShot SD770IS 10MP Digital Camera with 3x Optical Image Stabilized Zoom - $144.94, Shipped.</a></p> <!-- epost --> </div> <div class="pfoot"> <span class="pfl"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"><span class="pfrss"></span></a>Did you enjoy this post? If so, <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/">subscribe</a> to the geeks<span>are</span>sexy RSS feed.</span> <span class="pfr"></span> </div> <div class="apost"> <h2 id="post-10944"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/03/a-vision-of-the-future-by-microsoft/" rel="bookmark" title="Permanent Link to A Vision of the Future by Microsoft">A Vision of the Future by Microsoft</a></h2> <span class="ptime">March 3, 2009 by admin | <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/03/a-vision-of-the-future-by-microsoft/#comments" title="Comment on A Vision of the Future by Microsoft">4 comments</a></span> <!-- spost --> <p><center><embed src="http://web.archive.org/web/20090305083338oe_/http://images.video.msn.com/flash/soapbox1_1.swf" width="432" height="364" id="bupjc3lk" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" pluginspage="http://macromedia.com/go/getflashplayer" flashvars="c=v&amp;v=a517b260-bb6b-48b9-87ac-8e2743a28ec5&amp;ifs=true&amp;fr=shared&amp;mkt=en-GB"></embed></center></p> <p>This video, which shows what Microsoft thinks await us in the next decade, was presented a few days ago by Microsoft’s Business Division president Stephen Elop at the Wharton Business Conference.</p> <p>Now a lot of you will probably think that the presentation is nothing but eye candy, but in this case, I disagree. I really do think that we will be seeing this kind of technology in the next 10 to 20 years. It may not exclusively be developed by our friends at Redmond, but I&#8217;m sure they&#8217;ll introduce several products that could fit in what you just saw. I mean, they&#8217;ve already started! Just look at what they&#8217;ve done with <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2008/06/12/high-tech-bar-tables-offer-virtual-flirting/">Surface</a>. Everything you&#8217;ve seen in the video was based around the same concept: A miniaturized version of a multi-touch table.</p> <p>[Via <a href="http://web.archive.org/web/20090305083338/http://venturebeat.com/2009/02/28/this-is-the-microsoft-i-want-to-see/">VentureBeat</a>]</p> <!-- epost --> </div> <div class="pfoot"> <span class="pfl"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"><span class="pfrss"></span></a>Did you enjoy this post? If so, <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/">subscribe</a> to the geeks<span>are</span>sexy RSS feed.</span> <span class="pfr"></span> </div> <div class="apost"> <h2 id="post-10934"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/02/ringtones-that-unblock-your-runny-nose/" rel="bookmark" title="Permanent Link to Ringtones that unblock your runny nose?">Ringtones that unblock your runny nose?</a></h2> <span class="ptime">March 2, 2009 by admin | <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/02/ringtones-that-unblock-your-runny-nose/#comments" title="Comment on Ringtones that unblock your runny nose?">1 comment</a></span> <!-- spost --> <p><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2009/03/ringtones-nose.jpg" align="right" style="margin-left:15px">A Japanese ringtone provider has recently started selling ringtones that, according to scientific studies, can unblock your stuffy, runny nose. The treatment, which is composed of various unmelodious sounds and vibrations, is applied by holding your mobile to the bridge of your nose for 30 seconds while it is ringing. These ringtones are apparently not only effective for people suffering from the flu, but also for those affected by various allergies.</p> <p>&#8220;We developed these ringtones based on scientific studies&#8221; claims its creator, who unsurprisingly, doesn&#8217;t point out his sources. He also adds that the ringtones will not work on everybody. Yes, of course! Why am I not surprised by this?</p> <p>The sound frequency effective on men apparently corresponds to a &#8220;La&#8221; (440 hertz), and the one on women, a &#8220;Do&#8221; (532 hertz).</p> <p>The ringtones can currently be downloaded on the portals of many popular Japanese cell phone providers supporting the Dwango platform (NTT Docomo (i-mode), AU/KDDI (EZWeb) and Softbank Mobile (Yahoo Keitai)).</p> <p>[Via <a href="http://web.archive.org/web/20090305083338/http://www.google.com/hostednews/afp/article/ALeqM5g7SqL7ve4CQyVM_OTisZdKUf6Riw">AFP</a>]</p> <!-- epost --> </div> <div class="pfoot"> <span class="pfl"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"><span class="pfrss"></span></a>Did you enjoy this post? If so, <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/">subscribe</a> to the geeks<span>are</span>sexy RSS feed.</span> <span class="pfr"></span> </div> <div class="apost"> <h2 id="post-10930"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/02/einstein-robotic-head-looks-almost-like-the-real-thing/" rel="bookmark" title="Permanent Link to Einstein Robotic Head Looks Almost Like the Real Thing">Einstein Robotic Head Looks Almost Like the Real Thing</a></h2> <span class="ptime">March 2, 2009 by admin | <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/2009/03/02/einstein-robotic-head-looks-almost-like-the-real-thing/#respond" title="Comment on Einstein Robotic Head Looks Almost Like the Real Thing">0 comments</a></span> <!-- spost --> <p><center><object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/pkpWCu1k0ZI&amp;hl=en&amp;fs=1&amp;ap=%2526fmt%3D18"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://web.archive.org/web/20090305083338oe_/http://www.youtube.com/v/pkpWCu1k0ZI&amp;hl=en&amp;fs=1&amp;ap=%2526fmt%3D18" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></center></p> <p>Even though the famous physicist has been dead for over 50 years, it seems that Einstein, or at least a part of him, has recently been reincarnated in the form of a very life-like looking robotic head. The head, which was designed by <a href="http://web.archive.org/web/20090305083338/http://www.hansonrobotics.com/">Hanson Robotics</a>, can interact with people in a relatively natural way, thanks to specialized software created by Scientists at <a href="http://web.archive.org/web/20090305083338/http://www.calit2.net/">Calit2</a>. As seen in the previous video, the robot can recognize and respond to various human facial expressions, potentially making it a great tool for purposes such as entertainment, teaching and even cognitive therapy.</p> <!-- epost --> </div> <div class="pfoot"> <span class="pfl"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/"><span class="pfrss"></span></a>Did you enjoy this post? If so, <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/">subscribe</a> to the geeks<span>are</span>sexy RSS feed.</span> <span class="pfr"></span> </div> </div> </div> <div id="sidebar-one"> <h2> </h2> <div class="cols1" style="padding-left: 4px;"> <!-- BEGIN STANDARD TAG - 300 x 250 - GeeksAreSexy: ROS - DO NOT MODIFY --> <script type="text/javascript" src="http://web.archive.org/web/20090305083338js_/http://ad.yieldmanager.com/st?ad_type=ad&amp;ad_size=300x250,300x600§ion=394588"></script> <!-- END TAG --> </div> <div style="clear:both"></div> <div class="sponsors secs"> <h2>Free Mags</h2> <!-- MAGAZINES --> <center><a href="http://web.archive.org/web/20090305083338/http://geeksaresexy.tradepub.com/free/ew/" border="0" rel="nofollow"><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2008/06/eweek.gif" border="0"></a> <a href="http://web.archive.org/web/20090305083338/http://geeksaresexy.tradepub.com/c/pubRD.mpl?sr=hm&amp;_t=hm:&amp;pc=webs" rel="nofollow"><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2008/06/website.gif" border="0"></a> <a href="http://web.archive.org/web/20090305083338/http://geeksaresexy.tradepub.com/c/pubRD.mpl?sr=hm&amp;_t=hm:&amp;pc=orm" rel="nofollow"><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2008/06/oracle.gif" border="0"></a> <a href="http://web.archive.org/web/20090305083338/http://geeksaresexy.tradepub.com/c/pubRD.mpl?sr=hm&amp;_t=hm:&amp;pc=ccen" rel="nofollow"><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2008/06/cisco3.gif" border="0"></a></center> </div> <div id="grey"> <div id="cat"> <h2>categories</h2> <ul> <li class="cat-item cat-item-5"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/gas/" title="View all posts filed under [GAS]">[GAS]</a> </li> <li class="cat-item cat-item-38"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/apple/" title="View all posts filed under Apple">Apple</a> </li> <li class="cat-item cat-item-40"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/blogging/" title="View all posts filed under Blogging">Blogging</a> </li> <li class="cat-item cat-item-42"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/business/" title="View all posts filed under Business">Business</a> </li> <li class="cat-item cat-item-44"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/culture/" title="View all posts filed under Culture">Culture</a> </li> <li class="cat-item cat-item-10"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/gadgets/" title="View all posts filed under Gadgets">Gadgets</a> </li> <li class="cat-item cat-item-35"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/games/" title="View all posts filed under Games">Games</a> </li> <li class="cat-item cat-item-2"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/hardware/" title="View all posts filed under Hardware">Hardware</a> </li> <li class="cat-item cat-item-13"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/humor/" title="View all posts filed under Humor">Humor</a> </li> <li class="cat-item cat-item-48"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/linux/" title="View all posts filed under Linux">Linux</a> </li> <li class="cat-item cat-item-39"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/microsoft/" title="View all posts filed under Microsoft">Microsoft</a> </li> <li class="cat-item cat-item-369"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/music-movies/" title="View all posts filed under Music &amp; Movies">Music &amp; Movies</a> </li> <li class="cat-item cat-item-4"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/operating-systems/" title="View all posts filed under Operating Systems">Operating Systems</a> </li> <li class="cat-item cat-item-46"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/science/" title="View all posts filed under Science">Science</a> </li> <li class="cat-item cat-item-6"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/security/" title="View all posts filed under Security">Security</a> </li> <li class="cat-item cat-item-114"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/sexy/" title="View all posts filed under Sexy">Sexy</a> </li> <li class="cat-item cat-item-3"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/software/" title="View all posts filed under Software">Software</a> </li> <li class="cat-item cat-item-36"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/technology/" title="View all posts filed under Technology">Technology</a> </li> <li class="cat-item cat-item-15"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/tips-and-hacks/" title="View all posts filed under Tips and Hacks">Tips and Hacks</a> </li> <li class="cat-item cat-item-1"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/uncategorized/" title="View all posts filed under Uncategorized">Uncategorized</a> </li> <li class="cat-item cat-item-47"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/web/" title="View all posts filed under Web">Web</a> </li> <li class="cat-item cat-item-45"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/category/wireless/" title="View all posts filed under Wireless">Wireless</a> </li> </ul> </div> <div class="cols1"> <h2>Search GAS</h2> <style> #lwp_main #lwp_sbf{ width:295px; } </style> <script type="text/javascript" src="http://web.archive.org/web/20090305083338js_/http://www.lijit.com/informers/wijits?username=geeksaresexy&amp;js=1"></script> </div> <!-- Remove Adphilia Video Ad. <div class="cols1"> <h2> </h2> <center> <script>var ve_publisher = "adphilia"; var ve_site = "geeksaresexy"; var ve_area = "geeksaresexy"; var ve_width = 300; var ve_height = 250; document.write("<script src='http://core.videoegg.com/eap/html/js/init.js?" + Math.random() + "'><\/script>"); </script> </center> </div> --> <div class="cols1"> <h2>Sponsors</h2> <center> <!-- BEGIN STANDARD TAG - 160 x 600 - GeeksAreSexy: ROS - DO NOT MODIFY --> <script type="text/javascript" src="http://web.archive.org/web/20090305083338js_/http://ad.yieldmanager.com/st?ad_type=ad&amp;ad_size=160x600§ion=394588"></script> <!-- END TAG --> </center> </div> </div> <!-- recent comment --> <div class="cols1"> <h2>Hot Deals</h2> <center> <script language="JavaScript" type="text/javascript"> <!-- var bordercolor="000000"; var bgcolor="F0F0F0"; var linkcolor="005EBF"; var hovercolor="005EBF"; var darkfont="000000"; var lightfont="666666"; var desctext="000000"; var pricefont="000000"; var userid="1055"; var adtype="multi"; var adsize = 32; var fontfamily = "verdana, tahoma"; var ttz = 0; var channel = 6279; var keyword= "digital camera, gps, ipod, mp3 players, lcd tv, camcorders, dvd players"; var PID= ""; var PID2= ""; var PID3= ""; var PID4 = ""; var altcontent = ""; --> </script> <script src="http://web.archive.org/web/20090305083338js_/http://www.ttzmedia.com/affiliate/ttz_ad.js" language="JavaScript"></script> </center> </div> <div class="cols1"> <h2>Media Networks</h2> <center><a href="http://web.archive.org/web/20090305083338/http://www.b5media.com/" rel="nofollow"><img src="http://web.archive.org/web/20090305083338im_/http://www.geeksaresexy.net/wp-content/uploads/2008/11/b5media4.gif" border="0"></a></center> <br><center><!-- Begin Adify tag for "Six Apart Media Badge" Ad Space (160x90) ID #4169707 --> <script type="text/javascript"> sr_adspace_id = 4169707; sr_adspace_width = 160; sr_adspace_height = 90; sr_adspace_type = "graphic"; sr_ad_new_window = true; </script> <script type="text/javascript" src="http://web.archive.org/web/20090305083338js_/http://ad.afy11.net/srad.js?azId=4169707"> </script> <!-- End Adify tag for "Six Apart Media Badge" Ad Space (160x90) ID #4169707 --></center> </div> <center><!-- Begin Adify tag for "160X600Sidebarmodule" Ad Space (160x600) ID #2135107 --> <script type="text/javascript"> sr_adspace_id = 2135107; sr_adspace_width = 160; sr_adspace_height = 600; sr_ad_new_window = true; sr_adspace_type = "graphic"; </script> <script type="text/javascript" src="http://web.archive.org/web/20090305083338js_/http://ad.afy11.net/srad.js?azId=2135107"> </script> <!-- End Adify tag for "160X600Sidebarmodule" Ad Space (160x600) ID #2135107 --></center> </div> </div> <div class="lead"> <span class="ppre"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/page/2/">Older Entries</a></span> <span class="pnex"></span> </div> <div class="wrap wrap2"> <div id="footer-bg"> <div id="widgets"> <div class="widgetd"> <ul> <h2 class="widgettitle">sexy geeks</h2> <br> <script type="text/javascript" src="http://web.archive.org/web/20090305083338js_/http://pub.mybloglog.com/comm2.php?mblID=2007011114164979&amp;c_width=176&amp;c_sn_opt=n&amp;c_rows=3&amp;c_img_size=f&amp;c_heading_text=&amp;c_color_heading_bg=CCCCCC&amp;c_color_heading=CCCCCC&amp;c_color_link_bg=CCCCCC&amp;c_color_link=CCCCCC&amp;c_color_bottom_bg=CCCCCC"></script> <center><!-- Site Meter --> <script type="text/javascript" src="http://web.archive.org/web/20090305083338js_/http://sm7.sitemeter.com/js/counter.js?site=sm7geeks"> </script> <noscript> <a href="http://web.archive.org/web/20090305083338/http://sm7.sitemeter.com/stats.asp?site=sm7geeks" target="_top" rel="nofollow"> <img src="http://web.archive.org/web/20090305083338im_/http://sm7.sitemeter.com/meter.asp?site=sm7geeks" alt="Site Meter" border="0"/></a> </noscript> <!-- Copyright (c)2006 Site Meter --></center> <script src="http://web.archive.org/web/20090305083338js_/http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "UA-276101-3"; urchinTracker(); </script> <!-- Start Technorati Media Pixel --> <div id="technoratimedia-pixel"> <script type="text/javascript" src="http://web.archive.org/web/20090305083338js_/http://triad.technorati.com/technoratimedia-pixel.js"></script> </div> <!-- End Technorati Media Pixel --> </ul> </div> <div class="widgetd dsec"> <ul> <li id="b" class="wg"><h2 class="widgettitle">blogroll</h2> <ul> <li><a href="http://web.archive.org/web/20090305083338/http://www.neatorama.com/" rel="nofollow">Neatorama</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.betterthantherapy.net/" rel="nofollow">Better Than Therapy</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.belch.com/blog/" rel="nofollow">BelchSpeak</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.chipsquips.com/" rel="nofollow" title="A tiny spark of wit for a highly flammable world">Chip's Quips</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://geeksaresexy.blogspot.com/" rel="nofollow" title="[GAS] old location">[GAS] on Blogspot</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://earthfirst.com/" rel="nofollow" title="EarthFirst">EarthFirst</a></li> </ul> </li> </ul> </div> <div class="widgetd dtrd"> <ul> <li id="c" class="wg"><h2 class="widgettitle">IT Tools</h2> <ul> </ul> </li> </ul> </div> <div class="widgetd dfrt"> <ul> <h2 class="Special Offers"></h2> </ul> </div> </div> </div> </div> <div id="footer"> <ul> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/">Home</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/about/" rel="nofollow">About</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/advertise/" rel="nofollow">Advertise</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/articles-and-reviews/">Articles</a></li> <li><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/donate/" rel="nofollow">Donate</a></li> <li><a href="http://web.archive.org/web/20090305083338/mailto:feedback@geeksaresexy.net?subject=[GAS] Feedback" rel="nofollow">Contact Us</a></li> <li id="subscribe"><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/feed/" rel="nofollow">Subscribe</a></li> </ul> </div> <center> <!-- begin ad tag <script language="JavaScript" src="http://a.collective-media.net/adj/idgt.geeksaresexynews/;sz=728x90;ord=[timestamp]?" type="text/javascript"></script> <noscript><a href="http://a.collective-media.net/jump/idgt.geeksaresexynews/;sz=728x90;ord=[timestamp]?" target="_blank"><img src="http://a.collective-media.net/ad/idgt.geeksaresexynews/;sz=728x90;ord=[timestamp]?" width="728" height="90" border="0" alt=""></a></noscript> End ad tag --> <!-- Begin Adify tag for "Geeks728" Ad Space (728x90) ID #2161107 --> <script type="text/javascript"> sr_adspace_id = 2161107; sr_adspace_width = 728; sr_adspace_height = 90; sr_ad_new_window = true; sr_adspace_type = "graphic"; </script> <script type="text/javascript" src="http://web.archive.org/web/20090305083338js_/http://ad.afy11.net/srad.js?azId=2161107"> </script> <!-- End Adify tag for "Geeks728" Ad Space (728x90) ID #2161107 --> <br>| <b>[Geeks are Sexy] <a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/privacy-policy-geeks-are-sexy-technology-news/" rel="nofollow">Privacy Policy</a></b> | <b><a href="http://web.archive.org/web/20090305083338/http://www.geeksaresexy.net/legal-disclaimer/" ref="nofollow">Legal Disclaimer</a></b> | </center><br> </body> </html><!-- FILE ARCHIVED ON 08:33:38 Mar 05, 2009 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 00:21:43 Nov 29, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.685 exclusion.robots: 0.031 exclusion.robots.policy: 0.019 esindex: 0.012 cdx.remote: 8.0 LoadShardBlock: 189.668 (6) PetaboxLoader3.datanode: 147.933 (7) PetaboxLoader3.resolve: 155.847 (2) load_resource: 177.172 -->

Pages: 1 2 3 4 5 6 7 8 9 10