<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>beer planet &#187; twitter</title> <atom:link href="http://beerpla.net/tag/twitter/feed/" rel="self" type="application/rss+xml" /><link>http://beerpla.net</link> <description>where things have nothing to do with beer - tutorials, tips, how-tos, thoughts, hacks, and other techy nonsense</description> <lastBuildDate>Thu, 17 May 2012 22:50:53 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <atom:link rel='hub' href='http://beerpla.net/?pushpress=hub'/> <item><title>How *Not* To Implement A Web Application That Handles External Authentication, Using BeTwittered.com As An Example</title><link>http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/</link> <comments>http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/#comments</comments> <pubDate>Thu, 04 Feb 2010 02:29:04 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Security]]></category> <category><![CDATA[auth]]></category> <category><![CDATA[authentication]]></category> <category><![CDATA[betwittered]]></category> <category><![CDATA[breach]]></category> <category><![CDATA[clear text]]></category> <category><![CDATA[cookie]]></category> <category><![CDATA[http]]></category> <category><![CDATA[https]]></category> <category><![CDATA[oauth]]></category> <category><![CDATA[password]]></category> <category><![CDATA[sniffing]]></category> <category><![CDATA[ssl]]></category> <category><![CDATA[twitter]]></category> <category><![CDATA[username]]></category> <category><![CDATA[xss]]></category> <guid
isPermaLink="false">http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/</guid> <description><![CDATA[<p><img
style="margin: 0px 10px 10px 0px; display: inline" title="lock" alt="lock" align="left" src="http://beerpla.net/wp-content/uploads/HowNotToImplementAWebApplicationThatHand_F181/image.png" width="150" height="150" /> Today I&#039;m going to look at how not to handle user authentication in a web application, taking <a
href="http://www.betwittered.com" rel="nofollow">BeTwittered.com</a> authenticating with Twitter as an example (sorry, guys).</p><p>BeTwittered is a simple and comfortable gadget that you can add to your site, such as your iGoogle homepage.</p><p>Since BeTwittered is just a bridge between you and Twitter, it has to first log you into your account. Here is where things go horribly, horribly wrong.</p><h2>1. BeTwittered does not use SSL to secure requests to its servers</h2><p>All authentication information is transmitted to BeTwittered servers in plain text and is easily sniffable by an attacker, both on your own network and outside of it. You can read more about SSL encryption <a
href="http://en.wikipedia.org/wiki/Transport_Layer_Security" rel="nofollow">here</a>....<div
class=clear></div> <a
href="http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<p><img
style="margin: 0px 10px 10px 0px; display: inline" title="lock" alt="lock" align="left" src="http://beerpla.net/wp-content/uploads/HowNotToImplementAWebApplicationThatHand_F181/image.png" width="150" height="150" /> Today I&#039;m going to look at how not to handle user authentication in a web application, taking <a
href="http://www.betwittered.com" rel="nofollow">BeTwittered.com</a> authenticating with Twitter as an example (sorry, guys).</p><p>BeTwittered is a simple and comfortable gadget that you can add to your site, such as your iGoogle homepage.</p><p>Since BeTwittered is just a bridge between you and Twitter, it has to first log you into your account. Here is where things go horribly, horribly wrong.</p><h2>1. BeTwittered does not use SSL to secure requests to its servers</h2><p>All authentication information is transmitted to BeTwittered servers in plain text and is easily sniffable by an attacker, both on your own network and outside of it. You can read more about SSL encryption <a
href="http://en.wikipedia.org/wiki/Transport_Layer_Security" rel="nofollow">here</a>.</p><p>Since BeTwittered passes your Twitter username and password unencrypted as GET parameters, it may as well be serving them to potential attackers on a silver platter (note that passing this data in a POST request would change nothing, security-wise).</p><p>Here is an example request:</p><p><a
title="http://betwittered.com/api/?_=1265242511260&amp;req=verify_credentials&amp;username=foo&amp;password=bar" href="http://betwittered.com/api/?_=1265242511260&amp;req=verify_credentials&amp;username=foo&amp;password=bar">http://betwittered.com/api/?_=1265242511260&amp;req=verify_credentials<strong><em>&amp;username=foo&amp;password=bar</em></strong></a></p><p>Ugh…</p><h2>2. BeTwittered stores your username and password in unencrypted cookies</h2><p>Because BeTwittered tries to keep you logged into Twitter, it caches the username and password, unencrypted, inside browser cookies.</p><p>This means that an attacker needs to simply look at your cookies to steal this information. This can be done using these methods, among others:</p><ul><li>using an XSS vulnerability</li><li>sniffing the network traffic</li><li>walking up to your computer</li></ul><p><a
href="http://beerpla.net/wp-content/uploads/HowNotToImplementAWebApplicationThatHand_F181/image_3.png" class="lightview" rel="gallery['1412']" title="betwittered username and password in cookies"><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="betwittered username and password in cookies" alt="betwittered username and password in cookies" src="http://beerpla.net/wp-content/uploads/HowNotToImplementAWebApplicationThatHand_F181/image_thumb.png" width="700" height="512" /></a></p><h2>3. Because BeTwittered passes your authentication information to its servers, it&#039;s already insecure</h2><p>If someone gets access to BeTwittered servers, it&#039;s safe to assume at that time that all accounts are potentially compromised.</p><p>Smaller sites generally cannot dedicate appropriate resources to securing their servers, which can make breaching them easier for hackers. Even Twitter itself was <a
href="http://www.google.com/search?hl=en&amp;q=twitter+hacked" rel="nofollow">hacked numerous times</a>.</p><p>&#160;</p><h2>The Alternative Solution</h2><h3>oAuth</h3><p>If the endpoint application supports <a
href="http://oauth.net/" rel="nofollow">oAuth</a> (Twitter has for months), do us all a favor and use it. Please.</p><p>oAuth allows delegating authentication to Twitter itself and only giving the application easily revokable limited access.</p><p>If BeTwittered were using oAuth, the user would be redirected to Twitter, where he or she would login. Then, the user would be sent back to BeTwittered, but now bearing special tokens. Any requests to Twitter would then be accompanied by these tokens, which would be validated by Twitter every time they&#039;re used &#8211; all of this without ever passing your password around.</p><p>You can find a nice overview of the oAuth architecture <a
href="http://hueniverse.com/2008/10/beginners-guide-to-oauth-part-iii-security-architecture/" rel="nofollow">here</a>.</p><h3>Otherwise</h3><p>If the endpoint application doesn&#039;t support oAuth, then</p><ul><li>use SSL encryption (https)</li><li>store the authentication information on the server side instead of the client side in a cookie. Instead, use the cookie to store some sort of an internal ID pointing to this server-side data. Alternatively, encrypt the username and password via a secure salted two-way hash and only then store the encrypted version in a cookie</li><li>make sure to stay on top of securing your servers (and give your sysadmin a raise). It&#039;s a time-consuming commitment, please take it seriously</li></ul><h2>Conclusion</h2><p>What other secure authentication technique or tips do you know about? Feel free to share in the comments.</p><p>Oh, and this goes without saying &#8211; stop using BeTwittered, at least until they implement a more secure login option. I&#039;ve alerted the creators about the issue and also started these threads on <a
href="http://news.ycombinator.com/item?id=1099356" rel="nofollow">HN</a> and <a
href="http://www.reddit.com/r/reddit.com/comments/axs81/using_betwittered_did_you_know_it_sends_your/" rel="nofollow">Reddit</a>.</p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=How%20%2ANot%2A%20To%20Implement%20A%20Web%20Application%20That%20Handles%20External%20Authentication%2C%20Using%20BeTwittered.com%20As%20An%20Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2007/10/12/sysbench-linux-test-bench/" rel="bookmark" title="October 12, 2007">sysbench &#8211; Linux Test Bench</a></li><li><a
href="http://beerpla.net/2008/04/22/do-not-use-this-perl-module-passwdunix/" rel="bookmark" title="April 22, 2008">Do NOT Use This Perl Module: Passwd::Unix</a></li><li><a
href="http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/" rel="bookmark" title="February 12, 2009">How To Fight Clickjacking (Using The Recent Twitter Hijacking As An Example)</a></li><li><a
href="http://beerpla.net/2008/08/15/debugging-weird-sshd-connection-problems-what-happens-when-you-stop-sshd/" rel="bookmark" title="August 15, 2008">Debugging Weird sshd Connection Problems + What Happens When You Stop sshd</a></li><li><a
href="http://beerpla.net/2009/07/14/how-to-fix-palm-pres-error-sending-mail-problem-7/" rel="bookmark" title="July 14, 2009">How To Fix Palm Pre&#039;s &quot;Error Sending Mail&quot; Problem</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2010%2F02%2F03%2Fhow-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example%2F&amp;title=How%20%2ANot%2A%20To%20Implement%20A%20Web%20Application%20That%20Handles%20External%20Authentication%2C%20Using%20BeTwittered.com%20As%20An%20Example" id="wpa2a_2"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Enable A Twitter Retweet (RT) Button That Lets You Add Comments Before Retweeting</title><link>http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/</link> <comments>http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/#comments</comments> <pubDate>Mon, 21 Dec 2009 03:34:59 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Tips]]></category> <category><![CDATA[Twitter]]></category> <category><![CDATA[add]]></category> <category><![CDATA[button]]></category> <category><![CDATA[comment]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[greasemonkey]]></category> <category><![CDATA[retweet]]></category> <category><![CDATA[rt]]></category> <category><![CDATA[script]]></category> <category><![CDATA[troy]]></category> <category><![CDATA[twitter]]></category> <guid
isPermaLink="false">http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/</guid> <description><![CDATA[<p><img
style="margin: 0px 10px 10px 0px; display: inline" title="image" alt="image" align="left" src="http://beerpla.net/wp-content/uploads/EnableTheTwitterRetweetRTButtonThatAllow_109CF/image.png" width="150" height="150" /> Ever since the introduction of the official Retweet button, I&#039;ve wanted it to be a little more interactive. I usually want to add my 2 cents into the tweet I&#039;m about to retweet but the default RT button just doesn&#039;t allow for it &#8211; Yes is the only option:</p><p><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/EnableTheTwitterRetweetRTButtonThatAllow_109CF/image_3.png" width="324" height="44" /></p><h2>Troy&#039;s Twitter Script</h2><p>Enter <a
href="http://userscripts.org/scripts/show/40617" rel="nofollow">Troy&#039;s Twitter script</a> for Firefox that I <a
href="http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/">reviewed in detail</a> a few months ago.</p><p>Troy&#039;s script added the RT button to my stream (along with inline picture and video embed, auto url expander and shortener, name autocomplete, and other things) way before Twitter introduced it.</p><p>It also allowed me to add a couple of words or rephrase the retweet to make it more relevant to my followers....<div
class=clear></div> <a
href="http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<p><img
style="margin: 0px 10px 10px 0px; display: inline" title="image" alt="image" align="left" src="http://beerpla.net/wp-content/uploads/EnableTheTwitterRetweetRTButtonThatAllow_109CF/image.png" width="150" height="150" /> Ever since the introduction of the official Retweet button, I&#039;ve wanted it to be a little more interactive. I usually want to add my 2 cents into the tweet I&#039;m about to retweet but the default RT button just doesn&#039;t allow for it &#8211; Yes is the only option:</p><p><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/EnableTheTwitterRetweetRTButtonThatAllow_109CF/image_3.png" width="324" height="44" /></p><h2>Troy&#039;s Twitter Script</h2><p>Enter <a
href="http://userscripts.org/scripts/show/40617" rel="nofollow">Troy&#039;s Twitter script</a> for Firefox that I <a
href="http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/">reviewed in detail</a> a few months ago.</p><p>Troy&#039;s script added the RT button to my stream (along with inline picture and video embed, auto url expander and shortener, name autocomplete, and other things) way before Twitter introduced it.</p><p>It also allowed me to add a couple of words or rephrase the retweet to make it more relevant to my followers.</p><p>Here is what clicking on the Retweet button used to do after you installed the Twitter script:</p><p><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/EnableTheTwitterRetweetRTButtonThatAllow_109CF/image_4.png" width="536" height="122" /></p><h2>Twitter&#039;s Own Retweet</h2><p>After Twitter rolled out their own Retweet, it simply took over the Retweet button that Troy&#039;s script added and everyone was happy. Right?</p><p>Wrong. Many users, including myself, were left craving the old functionality back.</p><h2>The Newest Version Of Troy&#039;s Twitter Script</h2><p>About an hour ago, Troy <a
href="http://twitter.com/troynt/status/6879083812" rel="nofollow">announced</a> version 10.9 of his script which brings back the old functionality in the form of the &quot;Comment&quot; button. Here it is pictured below:</p><p><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/EnableTheTwitterRetweetRTButtonThatAllow_109CF/image_5.png" width="545" height="88" /></p><p>which yet again gives me the opportunity to edit the retweet:</p><p><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/EnableTheTwitterRetweetRTButtonThatAllow_109CF/image_4.png" width="536" height="122" /></p></p></p><p>Now we can have the best of both worlds &#8211; the new Comment button lets you retweet and edit while the Retweet button remains the same Twitter&#039;s own one-click Retweet.</p><h2>Download Troy&#039;s Twitter Script</h2><p>Again, here are the simple installation instructions to get Troy&#039;s Twitter script:</p><ol><li>Install <a
href="http://www.getfirefox.com/">Firefox</a> (you already have that, right?)</li><li>Install the <a
href="https://addons.mozilla.org/en-US/firefox/addon/748">Firefox greasemonkey extension</a></li><li>Install the <a
href="http://userscripts.org/scripts/show/40617">Troys Twitter script</a></li></ol><h2>Credit</h2><p>As before, all credit goes to the awesome <a
href="http://twitter.com/troynt" rel="nofollow">Troy</a>.</p><p><a
href="http://button.topsy.com/retweet?nick=ArtemR&amp;title=Enable+A%20Twitter%20Retweet%20%28RT%29%20Button%20That%20Lets%20You%20Add%20Comments%20Before%20Retweeting&amp;url=http%3A%2F%2Fbeerpla.net%2F2009%2F12%2F20%2Fenable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting%2F" rel="nofollow">Tweet</a> this post if you like it and let your friends know about this great twitter web tool.</p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=Enable+A+Twitter+Retweet+%28RT%29+Button+That+Lets+You+Add+Comments+Before+Retweeting&amp;link=http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/&amp;notes=%20Ever%20since%20the%20introduction%20of%20the%20official%20Retweet%20button%2C%20I%27ve%20wanted%20it%20to%20be%20a%20little%20more%20interactive.%20I%20usually%20want%20to%20add%20my%202%20cents%20into%20the%20tweet%20I%27m%20about%20to%20retweet%20but%20the%20default%20RT%20button%20just%20doesn%27t%20allow%20for%20it%20-%20Yes%20is%20the%20only%20option%3A%20%20%20%20%20Troy%27s%20Twitter%20Script%20%20Enter%20Troy%27s%20Twit&amp;short_link=http://bit.ly/bX8hPM&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=Enable+A+Twitter+Retweet+%28RT%29+Button+That+Lets+You+Add+Comments+Before+Retweeting&amp;link=http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/&amp;notes=%20Ever%20since%20the%20introduction%20of%20the%20official%20Retweet%20button%2C%20I%27ve%20wanted%20it%20to%20be%20a%20little%20more%20interactive.%20I%20usually%20want%20to%20add%20my%202%20cents%20into%20the%20tweet%20I%27m%20about%20to%20retweet%20but%20the%20default%20RT%20button%20just%20doesn%27t%20allow%20for%20it%20-%20Yes%20is%20the%20only%20option%3A%20%20%20%20%20Troy%27s%20Twitter%20Script%20%20Enter%20Troy%27s%20Twit&amp;short_link=http://bit.ly/bX8hPM&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=Enable+A+Twitter+Retweet+%28RT%29+Button+That+Lets+You+Add+Comments+Before+Retweeting&amp;link=http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/&amp;notes=%20Ever%20since%20the%20introduction%20of%20the%20official%20Retweet%20button%2C%20I%27ve%20wanted%20it%20to%20be%20a%20little%20more%20interactive.%20I%20usually%20want%20to%20add%20my%202%20cents%20into%20the%20tweet%20I%27m%20about%20to%20retweet%20but%20the%20default%20RT%20button%20just%20doesn%27t%20allow%20for%20it%20-%20Yes%20is%20the%20only%20option%3A%20%20%20%20%20Troy%27s%20Twitter%20Script%20%20Enter%20Troy%27s%20Twit&amp;short_link=http://bit.ly/bX8hPM&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=Enable+A+Twitter+Retweet+%28RT%29+Button+That+Lets+You+Add+Comments+Before+Retweeting&amp;link=http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/&amp;notes=%20Ever%20since%20the%20introduction%20of%20the%20official%20Retweet%20button%2C%20I%27ve%20wanted%20it%20to%20be%20a%20little%20more%20interactive.%20I%20usually%20want%20to%20add%20my%202%20cents%20into%20the%20tweet%20I%27m%20about%20to%20retweet%20but%20the%20default%20RT%20button%20just%20doesn%27t%20allow%20for%20it%20-%20Yes%20is%20the%20only%20option%3A%20%20%20%20%20Troy%27s%20Twitter%20Script%20%20Enter%20Troy%27s%20Twit&amp;short_link=http://bit.ly/bX8hPM&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=Enable+A+Twitter+Retweet+%28RT%29+Button+That+Lets+You+Add+Comments+Before+Retweeting&amp;link=http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/&amp;notes=%20Ever%20since%20the%20introduction%20of%20the%20official%20Retweet%20button%2C%20I%27ve%20wanted%20it%20to%20be%20a%20little%20more%20interactive.%20I%20usually%20want%20to%20add%20my%202%20cents%20into%20the%20tweet%20I%27m%20about%20to%20retweet%20but%20the%20default%20RT%20button%20just%20doesn%27t%20allow%20for%20it%20-%20Yes%20is%20the%20only%20option%3A%20%20%20%20%20Troy%27s%20Twitter%20Script%20%20Enter%20Troy%27s%20Twit&amp;short_link=http://bit.ly/bX8hPM&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=Enable+A+Twitter+Retweet+%28RT%29+Button+That+Lets+You+Add+Comments+Before+Retweeting&amp;link=http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/&amp;notes=%20Ever%20since%20the%20introduction%20of%20the%20official%20Retweet%20button%2C%20I%27ve%20wanted%20it%20to%20be%20a%20little%20more%20interactive.%20I%20usually%20want%20to%20add%20my%202%20cents%20into%20the%20tweet%20I%27m%20about%20to%20retweet%20but%20the%20default%20RT%20button%20just%20doesn%27t%20allow%20for%20it%20-%20Yes%20is%20the%20only%20option%3A%20%20%20%20%20Troy%27s%20Twitter%20Script%20%20Enter%20Troy%27s%20Twit&amp;short_link=http://bit.ly/bX8hPM&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=Enable+A+Twitter+Retweet+%28RT%29+Button+That+Lets+You+Add+Comments+Before+Retweeting&amp;link=http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/&amp;notes=%20Ever%20since%20the%20introduction%20of%20the%20official%20Retweet%20button%2C%20I%27ve%20wanted%20it%20to%20be%20a%20little%20more%20interactive.%20I%20usually%20want%20to%20add%20my%202%20cents%20into%20the%20tweet%20I%27m%20about%20to%20retweet%20but%20the%20default%20RT%20button%20just%20doesn%27t%20allow%20for%20it%20-%20Yes%20is%20the%20only%20option%3A%20%20%20%20%20Troy%27s%20Twitter%20Script%20%20Enter%20Troy%27s%20Twit&amp;short_link=http://bit.ly/bX8hPM&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=Enable%20A%20Twitter%20Retweet%20%28RT%29%20Button%20That%20Lets%20You%20Add%20Comments%20Before%20Retweeting&amp;link=http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/&amp;notes=%20Ever%20since%20the%20introduction%20of%20the%20official%20Retweet%20button%2C%20I%27ve%20wanted%20it%20to%20be%20a%20little%20more%20interactive.%20I%20usually%20want%20to%20add%20my%202%20cents%20into%20the%20tweet%20I%27m%20about%20to%20retweet%20but%20the%20default%20RT%20button%20just%20doesn%27t%20allow%20for%20it%20-%20Yes%20is%20the%20only%20option%3A%20%20%20%20%20Troy%27s%20Twitter%20Script%20%20Enter%20Troy%27s%20Twit&amp;short_link=http://bit.ly/bX8hPM&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/" rel="bookmark" title="March 17, 2009">Twitter.com Autocomplete, Auto URL Expansion, Auto URL Shortener, RT Button, Nested Replies, Inline Media Embed, Search Tabs, And More</a></li><li><a
href="http://beerpla.net/2009/10/24/are-you-a-stackoverflow-com-superuser-com-serverfault-com-fan-heres-a-greasemonkey-script-to-keep-track-of-your-accounts-on-all-of-them/" rel="bookmark" title="October 24, 2009">StackOverflow.com, SuperUser.com, ServerFault.com Fan? Here&#039;s A Greasemonkey Script To Keep Track Of All Your Accounts</a></li><li><a
href="http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/" rel="bookmark" title="February 12, 2009">How To Fight Clickjacking (Using The Recent Twitter Hijacking As An Example)</a></li><li><a
href="http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/" rel="bookmark" title="April 9, 2009">The Real Reasons To Use Twitter (Get Over Your Prejudice Already)</a></li><li><a
href="http://beerpla.net/2009/06/10/essential-firefox-extensions-plugins-add-ons-a-comprehensive-guide-part-2-pragmatic-extensions/" rel="bookmark" title="June 10, 2009">Essential Firefox Extensions (Plugins, Add-Ons) &ndash; A Comprehensive Guide :: Part 2 :: Pragmatic Extensions</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2009%2F12%2F20%2Fenable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting%2F&amp;title=Enable%20A%20Twitter%20Retweet%20%28RT%29%20Button%20That%20Lets%20You%20Add%20Comments%20Before%20Retweeting" id="wpa2a_4"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>[Twitter] The Most Useless Tweet To Date Discovered</title><link>http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/</link> <comments>http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/#comments</comments> <pubDate>Wed, 02 Dec 2009 10:23:11 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Twitter]]></category> <category><![CDATA[WTF?]]></category> <category><![CDATA[award]]></category> <category><![CDATA[stupid]]></category> <category><![CDATA[thesoftwarejedi]]></category> <category><![CDATA[tweet]]></category> <category><![CDATA[twitter]]></category> <category><![CDATA[useless]]></category> <guid
isPermaLink="false">http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/</guid> <description><![CDATA[<p><img
style="margin: 0px 10px 10px 0px; display: inline" title="image" alt="image" align="left" src="http://beerpla.net/wp-content/uploads/TheMostUselessTweetTODateDiscovered_1E82/image.png" width="150" height="84" /> And the winner is&#8230; the same guy who <a
href="http://www.techcrunch.com/2009/12/02/facebook-wedding/" rel="nofollow">made</a>&#160;<a
href="http://mashable.com/2009/12/01/groom-facebook-update/" rel="nofollow">headlines</a> today because he tweeted from the altar at his own wedding &#8211; Dana Hanna.</p><p>Are his other tweets just as original as &#34;Standing at the altar with @<a
href="http://twitter.com/TracyPage">TracyPage</a> where just a second ago, she became my wife! Gotta go, time to kiss my bride. <a
href="http://twitter.com/search?q=%23weddingday">#weddingday</a>&#34;?</p><p>Not so much… After looking at <a
href="http://twitter.com/thesoftwarejedi" rel="nofollow">TheSoftwareJedi</a>&#039;s (that&#039;s our Dana) timeline out of curiosity, I saw the following gem which definitely takes The Most Useless Tweet To Date award in my book. Here it is:</p><p><img
style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://beerpla.net/wp-content/uploads/TheMostUselessTweetTODateDiscovered_1E82/image_3.png" width="625" height="322" /></p><p>Yup, it&#039;s <a
rel="nofollow" href="http://twitter.com/TheSoftwareJedi/status/6186359936">real</a> and it was not rhetorical or followed up by some witty response. Nope. This was it.</p><p>Well, the answer is right there, Dana, ...<div
class=clear></div> <a
href="http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<p><img
style="margin: 0px 10px 10px 0px; display: inline" title="image" alt="image" align="left" src="http://beerpla.net/wp-content/uploads/TheMostUselessTweetTODateDiscovered_1E82/image.png" width="150" height="84" /> And the winner is&#8230; the same guy who <a
href="http://www.techcrunch.com/2009/12/02/facebook-wedding/" rel="nofollow">made</a>&#160;<a
href="http://mashable.com/2009/12/01/groom-facebook-update/" rel="nofollow">headlines</a> today because he tweeted from the altar at his own wedding &#8211; Dana Hanna.</p><p>Are his other tweets just as original as &quot;Standing at the altar with @<a
href="http://twitter.com/TracyPage">TracyPage</a> where just a second ago, she became my wife! Gotta go, time to kiss my bride. <a
href="http://twitter.com/search?q=%23weddingday">#weddingday</a>&quot;?</p><p>Not so much… After looking at <a
href="http://twitter.com/thesoftwarejedi" rel="nofollow">TheSoftwareJedi</a>&#039;s (that&#039;s our Dana) timeline out of curiosity, I saw the following gem which definitely takes The Most Useless Tweet To Date award in my book. Here it is:</p><p><img
style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://beerpla.net/wp-content/uploads/TheMostUselessTweetTODateDiscovered_1E82/image_3.png" width="625" height="322" /></p><p>Yup, it&#039;s <a
rel="nofollow" href="http://twitter.com/TheSoftwareJedi/status/6186359936">real</a> and it was not rhetorical or followed up by some witty response. Nope. This was it.</p><p>Well, the answer is right there, Dana, below the tweet. Also on your hand, in your car, house, and pretty much everywhere else. Oh, and since you posted from Twittelator, which is an iPhone client, my guess is your phone knew it too.</p><p>&#160;</p><p>/Sigh</p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=%5BTwitter%5D+The+Most+Useless+Tweet+To+Date+Discovered&amp;link=http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/&amp;notes=%20And%20the%20winner%20is...%20the%20same%20guy%20who%20made%26%23160%3Bheadlines%20today%20because%20he%20tweeted%20from%20the%20altar%20at%20his%20own%20wedding%20-%20Dana%20Hanna.%0D%0AAre%20his%20other%20tweets%20just%20as%20original%20as%20%26quot%3BStanding%20at%20the%20altar%20with%20%40TracyPage%20where%20just%20a%20second%20ago%2C%20she%20became%20my%20wife%21%20Gotta%20go%2C%20time%20to%20kiss%20my%20bride.%20%23wed&amp;short_link=http://bit.ly/aIrv8v&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=%5BTwitter%5D+The+Most+Useless+Tweet+To+Date+Discovered&amp;link=http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/&amp;notes=%20And%20the%20winner%20is...%20the%20same%20guy%20who%20made%26%23160%3Bheadlines%20today%20because%20he%20tweeted%20from%20the%20altar%20at%20his%20own%20wedding%20-%20Dana%20Hanna.%0D%0AAre%20his%20other%20tweets%20just%20as%20original%20as%20%26quot%3BStanding%20at%20the%20altar%20with%20%40TracyPage%20where%20just%20a%20second%20ago%2C%20she%20became%20my%20wife%21%20Gotta%20go%2C%20time%20to%20kiss%20my%20bride.%20%23wed&amp;short_link=http://bit.ly/aIrv8v&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=%5BTwitter%5D+The+Most+Useless+Tweet+To+Date+Discovered&amp;link=http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/&amp;notes=%20And%20the%20winner%20is...%20the%20same%20guy%20who%20made%26%23160%3Bheadlines%20today%20because%20he%20tweeted%20from%20the%20altar%20at%20his%20own%20wedding%20-%20Dana%20Hanna.%0D%0AAre%20his%20other%20tweets%20just%20as%20original%20as%20%26quot%3BStanding%20at%20the%20altar%20with%20%40TracyPage%20where%20just%20a%20second%20ago%2C%20she%20became%20my%20wife%21%20Gotta%20go%2C%20time%20to%20kiss%20my%20bride.%20%23wed&amp;short_link=http://bit.ly/aIrv8v&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=%5BTwitter%5D+The+Most+Useless+Tweet+To+Date+Discovered&amp;link=http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/&amp;notes=%20And%20the%20winner%20is...%20the%20same%20guy%20who%20made%26%23160%3Bheadlines%20today%20because%20he%20tweeted%20from%20the%20altar%20at%20his%20own%20wedding%20-%20Dana%20Hanna.%0D%0AAre%20his%20other%20tweets%20just%20as%20original%20as%20%26quot%3BStanding%20at%20the%20altar%20with%20%40TracyPage%20where%20just%20a%20second%20ago%2C%20she%20became%20my%20wife%21%20Gotta%20go%2C%20time%20to%20kiss%20my%20bride.%20%23wed&amp;short_link=http://bit.ly/aIrv8v&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=%5BTwitter%5D+The+Most+Useless+Tweet+To+Date+Discovered&amp;link=http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/&amp;notes=%20And%20the%20winner%20is...%20the%20same%20guy%20who%20made%26%23160%3Bheadlines%20today%20because%20he%20tweeted%20from%20the%20altar%20at%20his%20own%20wedding%20-%20Dana%20Hanna.%0D%0AAre%20his%20other%20tweets%20just%20as%20original%20as%20%26quot%3BStanding%20at%20the%20altar%20with%20%40TracyPage%20where%20just%20a%20second%20ago%2C%20she%20became%20my%20wife%21%20Gotta%20go%2C%20time%20to%20kiss%20my%20bride.%20%23wed&amp;short_link=http://bit.ly/aIrv8v&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=%5BTwitter%5D+The+Most+Useless+Tweet+To+Date+Discovered&amp;link=http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/&amp;notes=%20And%20the%20winner%20is...%20the%20same%20guy%20who%20made%26%23160%3Bheadlines%20today%20because%20he%20tweeted%20from%20the%20altar%20at%20his%20own%20wedding%20-%20Dana%20Hanna.%0D%0AAre%20his%20other%20tweets%20just%20as%20original%20as%20%26quot%3BStanding%20at%20the%20altar%20with%20%40TracyPage%20where%20just%20a%20second%20ago%2C%20she%20became%20my%20wife%21%20Gotta%20go%2C%20time%20to%20kiss%20my%20bride.%20%23wed&amp;short_link=http://bit.ly/aIrv8v&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=%5BTwitter%5D+The+Most+Useless+Tweet+To+Date+Discovered&amp;link=http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/&amp;notes=%20And%20the%20winner%20is...%20the%20same%20guy%20who%20made%26%23160%3Bheadlines%20today%20because%20he%20tweeted%20from%20the%20altar%20at%20his%20own%20wedding%20-%20Dana%20Hanna.%0D%0AAre%20his%20other%20tweets%20just%20as%20original%20as%20%26quot%3BStanding%20at%20the%20altar%20with%20%40TracyPage%20where%20just%20a%20second%20ago%2C%20she%20became%20my%20wife%21%20Gotta%20go%2C%20time%20to%20kiss%20my%20bride.%20%23wed&amp;short_link=http://bit.ly/aIrv8v&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=%5BTwitter%5D%20The%20Most%20Useless%20Tweet%20To%20Date%20Discovered&amp;link=http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/&amp;notes=%20And%20the%20winner%20is...%20the%20same%20guy%20who%20made%26%23160%3Bheadlines%20today%20because%20he%20tweeted%20from%20the%20altar%20at%20his%20own%20wedding%20-%20Dana%20Hanna.%0D%0AAre%20his%20other%20tweets%20just%20as%20original%20as%20%26quot%3BStanding%20at%20the%20altar%20with%20%40TracyPage%20where%20just%20a%20second%20ago%2C%20she%20became%20my%20wife%21%20Gotta%20go%2C%20time%20to%20kiss%20my%20bride.%20%23wed&amp;short_link=http://bit.ly/aIrv8v&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2009/11/21/meet-firefox-for-mobile-video-feature-highlights-more-info/" rel="bookmark" title="November 21, 2009">Meet Firefox For Mobile [Video + Feature Highlights + More Info]</a></li><li><a
href="http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/" rel="bookmark" title="April 9, 2009">The Real Reasons To Use Twitter (Get Over Your Prejudice Already)</a></li><li><a
href="http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/" rel="bookmark" title="March 4, 2009">Random Questions and Thoughts. Password Protected Garage Door Remotes, Twitter Security, MUNI Drivers, Burgers, etc</a></li><li><a
href="http://beerpla.net/2009/03/08/have-you-preordered-starcraft-2-yet-no-heres-what-you-need-to-know/" rel="bookmark" title="March 8, 2009">Have You Pre-Ordered Starcraft 2 Yet? No? Here&rsquo;s What You Need To Know</a></li><li><a
href="http://beerpla.net/2006/08/16/some-fun-at-work/" rel="bookmark" title="August 16, 2006">Some Fun At Work</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2009%2F12%2F02%2Fthe-most-useless-tweet-to-date-discovered%2F&amp;title=%5BTwitter%5D%20The%20Most%20Useless%20Tweet%20To%20Date%20Discovered" id="wpa2a_6"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>The Real Reasons To Use Twitter (Get Over Your Prejudice Already)</title><link>http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/</link> <comments>http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/#comments</comments> <pubDate>Thu, 09 Apr 2009 16:49:56 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Technology]]></category> <category><![CDATA[Twitter]]></category> <category><![CDATA[blows]]></category> <category><![CDATA[prejudice]]></category> <category><![CDATA[reasons]]></category> <category><![CDATA[stupid]]></category> <category><![CDATA[sucks]]></category> <category><![CDATA[twitter]]></category> <category><![CDATA[usage]]></category> <guid
isPermaLink="false">http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/</guid> <description><![CDATA[<p><img
style="display: inline; margin: 0px 15px 10px 0px" height="183" alt="http://www.fly4change.com/wp-content/uploads/2009/02/twitter.jpg" src="http://www.fly4change.com/wp-content/uploads/2009/02/twitter.jpg" width="274" align="left" /><br
/><h2>Introduction</h2></p><p>Let’s face it – the majority of the population doesn’t understand twitter. They don’t get its true value &#8211; all they see is an obnoxious social network full of exhibitionists tweeting about millions of mundane things of every minute of their lives.</p><p>Except, twitter is much, much more than that. In addition to all the wankers talking about themselves 24/7, of course. Twitter is what you make it to be. You can follow boring, uninteresting people with interests in growing cactuses (cacti?) and collecting fur balls. But you can also follow people sharing piles of interesting and useful information (see bullet points below). Just do me one favor and repeat after me: twitter is not only for publishing your ...<div
class=clear></div> <a
href="http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<p><img
style="display: inline; margin: 0px 15px 10px 0px" height="183" alt="http://www.fly4change.com/wp-content/uploads/2009/02/twitter.jpg" src="http://www.fly4change.com/wp-content/uploads/2009/02/twitter.jpg" width="274" align="left" /><br
/><h2>Introduction</h2><p>Let’s face it – the majority of the population doesn’t understand twitter. They don’t get its true value &#8211; all they see is an obnoxious social network full of exhibitionists tweeting about millions of mundane things of every minute of their lives.</p><p>Except, twitter is much, much more than that. In addition to all the wankers talking about themselves 24/7, of course. Twitter is what you make it to be. You can follow boring, uninteresting people with interests in growing cactuses (cacti?) and collecting fur balls. But you can also follow people sharing piles of interesting and useful information (see bullet points below). Just do me one favor and repeat after me: twitter is not only for publishing your detailed crapping schedule. Get over it, step over your prejudice, delay arriving to conclusions until after trying it yourself.</p><p>Don’t get me wrong – I was one of those people before and resisted joining twitter for many months, even years. I didn’t understand it either and didn’t want to voluntarily sign up for just another source of distraction. Here are my findings after joining twitter 2 months ago.</p><h2>Real Reasons To Use Twitter</h2><h3>1. Most up-to-the-second updated search engine on things going on now</h3><p>This is invaluable. Plane crash? Digg,com down? Searching twitter would yield instantaneous results because somebody somewhere is tweeting about it. And I’m not talking about biased and edited media – just real people.</p><p>Here is the perfect example of something that happened while I was writing this article. I was sleeping happily when some shaking woke me up. I couldn&#039;t figure out if I had just dreamt about an earthquake or one just actually happened. There was no more shaking, so I stumbled to my computer and did a quick twitter search for “earthquake”. Within seconds I knew it was indeed an earthquake, and within minutes what the magnitude was. Do you see value in this? I do.</p><p><a
href="http://beerpla.net/wp-content/uploads/149151ffadcf_75B6/image.png" class="lightview" rel="gallery['906']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="558" alt="image" src="http://beerpla.net/wp-content/uploads/149151ffadcf_75B6/image_thumb.png" width="639" /></a></p><h3>2. Following important people in your field</h3><p>Whatever your field is &#8211; web development, brain surgery, economics – anything, you will find colleagues whose ideas are interesting to you. You can also just follow plain geniuses, like <a
href="http://twitter.com/mattcutts" rel="nofollow">Matt Cutts</a> of Google or <a
href="http://twitter.com/om" rel="nofollow">Om Malik</a> of GigaOM. Believe me, a smart and interesting person makes sure to be interesting and smart on twitter as well, otherwise their audience drops off. Either way – you are in control. X and Y too boring for you? Stop following them and start following Z.</p><h3>3. Keeping up with the latest news and updates</h3><p>You can use twitter as pseudo-RSS by following, say, <a
href="http://twitter.com/cnnbrk" rel="nofollow">@cnnbrk</a> (CNN Breaking News), new posts on FML <a
href="http://twitter.com/fxxxmylife" rel="nofollow">@fxxxmylife</a>, or jQuery updates at <a
href="http://twitter.com/jquery" rel="nofollow">@jquery</a>. As events occur, you get instant notifications in your twitter feed.</p><h3>4. You can talk to companies directly, in a public, open way</h3><p>For example, I’ve gotten personal replies from Comcast (<a
href="http://www.twitter.com/comcastcares" rel="nofollow">@comcastcares</a>) and Hulu (<a
href="http://www.twitter.com/hulu" rel="nofollow">@hulu</a>) within minutes of tweeting to them. Because the tweets are public rather than private the way emails would be, there is more pressure to respond to everyone and do it faster. Got a problem? Chances are twitter can help. I also noticed that everyone is inherently polite on twitter – there are no dumb flame wars.</p><h3>5. In my experience, you will actually get a lot fewer “taking a dump” messages on twitter than on Facebook</h3><p>… especially with Facebook’s new design. Let me tell you a little secret about your friends – they are not all geniuses and their comment rate seems to be inversely proportional to their brilliance. So before you say that twitter is useless, think about your Facebook account.</p><h3>6. I’m not one to care much for following celebrities or famous people</h3><p>… however I still think it’s fascinating that more and more celebrities and prominent people get on twitter, seemingly bridging the difference gap between themselves and regular folks. For example, Ashton Kutcher <a
href="http://twitter.com/aplusk" rel="nofollow">@aplusk</a> constantly tweets and takes pictures with his phone (mostly of his wife Demi Moore, who is also an avid twitterer <a
href="http://twitter.com/mrskutcher" rel="nofollow">@mrskutcher</a>). The fact that you can tweet @ Ashton and he’ll undoubtedly read your message and maybe even respond is kind of cool if you think about it. What kind of a fan club gives you such proximity to your favorite celebrity? What kind of fanclub is better than twitter for celebrities themselves?</p><p>Twitter is what you want it to be. Twitter is what you make of it.</p><h2>140 Characters</h2><p>Twitter’s 140 message limit, is it a curse or a blessing? My opinion is that it was an absolutely crucial element in site’s appeal and remarkable growth – an average person wants to skim through headlines and read in detail only what seems interesting. Too much information = information overload, even if it’s only a few more characters. I don’t think twitter would have picked up, had it not had this harsh character limit.</p><p>What do you think? Did you even have enough attention span to read the above 3 sentences?</p><h2>Want To Make Twitter More Fun?</h2><p>Check out my cleverly named <a
href="http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/">Twitter.com Autocomplete, Auto URL Expansion, Auto URL Shortener, RT Button, Nested Replies, Inline Media Embed, Search Tabs, And More</a> article.</p><p>Use <a
href="http://www.digsby.com" rel="nofollow">Digsby</a>, <a
href="http://www.tweetdeck.com" rel="nofollow">Tweetdeck</a>, and other apps to take twitter with you to your desktop. See <a
href="http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/">Top 10 Reasons Why Digsby ROCKS</a> for more info on Digsby.</p><p>Check out <a
href="http://userscripts.org/scripts/show/43451" rel="nofollow">this greasemonkey script</a> that augments your google search results with Twitter ones:</p><p><a
href="http://beerpla.net/wp-content/uploads/149151ffadcf_75B6/image_3.png" class="lightview" rel="gallery['906']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="527" alt="image" src="http://beerpla.net/wp-content/uploads/149151ffadcf_75B6/image_thumb_3.png" width="539" /></a></p><h2>Twitter Prediction?</h2><p>Will my twitter predictions come true by the end of 2009? Read them <a
href="http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/">here</a> (hint: they already have, see below).</p><p><a
href="http://www.alexa.com/siteinfo/twitter.com" rel="nofollow"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="566" alt="image" src="http://beerpla.net/wp-content/uploads/149151ffadcf_75B6/image_4.png" width="698" /></a></p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=The+Real+Reasons+To+Use+Twitter+%28Get+Over+Your+Prejudice+Already%29&amp;link=http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/&amp;notes=%20%20%20Introduction%20%20Let%E2%80%99s%20face%20it%20%E2%80%93%20the%20majority%20of%20the%20population%20doesn%E2%80%99t%20understand%20twitter.%20They%20don%E2%80%99t%20get%20its%20true%20value%20-%20all%20they%20see%20is%20an%20obnoxious%20social%20network%20full%20of%20exhibitionists%20tweeting%20about%20millions%20of%20mundane%20things%20of%20every%20minute%20of%20their%20lives.%20%20Except%2C%20twitter%20is%20much%2C%20m&amp;short_link=http://bit.ly/cP73xO&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=The+Real+Reasons+To+Use+Twitter+%28Get+Over+Your+Prejudice+Already%29&amp;link=http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/&amp;notes=%20%20%20Introduction%20%20Let%E2%80%99s%20face%20it%20%E2%80%93%20the%20majority%20of%20the%20population%20doesn%E2%80%99t%20understand%20twitter.%20They%20don%E2%80%99t%20get%20its%20true%20value%20-%20all%20they%20see%20is%20an%20obnoxious%20social%20network%20full%20of%20exhibitionists%20tweeting%20about%20millions%20of%20mundane%20things%20of%20every%20minute%20of%20their%20lives.%20%20Except%2C%20twitter%20is%20much%2C%20m&amp;short_link=http://bit.ly/cP73xO&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=The+Real+Reasons+To+Use+Twitter+%28Get+Over+Your+Prejudice+Already%29&amp;link=http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/&amp;notes=%20%20%20Introduction%20%20Let%E2%80%99s%20face%20it%20%E2%80%93%20the%20majority%20of%20the%20population%20doesn%E2%80%99t%20understand%20twitter.%20They%20don%E2%80%99t%20get%20its%20true%20value%20-%20all%20they%20see%20is%20an%20obnoxious%20social%20network%20full%20of%20exhibitionists%20tweeting%20about%20millions%20of%20mundane%20things%20of%20every%20minute%20of%20their%20lives.%20%20Except%2C%20twitter%20is%20much%2C%20m&amp;short_link=http://bit.ly/cP73xO&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=The+Real+Reasons+To+Use+Twitter+%28Get+Over+Your+Prejudice+Already%29&amp;link=http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/&amp;notes=%20%20%20Introduction%20%20Let%E2%80%99s%20face%20it%20%E2%80%93%20the%20majority%20of%20the%20population%20doesn%E2%80%99t%20understand%20twitter.%20They%20don%E2%80%99t%20get%20its%20true%20value%20-%20all%20they%20see%20is%20an%20obnoxious%20social%20network%20full%20of%20exhibitionists%20tweeting%20about%20millions%20of%20mundane%20things%20of%20every%20minute%20of%20their%20lives.%20%20Except%2C%20twitter%20is%20much%2C%20m&amp;short_link=http://bit.ly/cP73xO&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=The+Real+Reasons+To+Use+Twitter+%28Get+Over+Your+Prejudice+Already%29&amp;link=http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/&amp;notes=%20%20%20Introduction%20%20Let%E2%80%99s%20face%20it%20%E2%80%93%20the%20majority%20of%20the%20population%20doesn%E2%80%99t%20understand%20twitter.%20They%20don%E2%80%99t%20get%20its%20true%20value%20-%20all%20they%20see%20is%20an%20obnoxious%20social%20network%20full%20of%20exhibitionists%20tweeting%20about%20millions%20of%20mundane%20things%20of%20every%20minute%20of%20their%20lives.%20%20Except%2C%20twitter%20is%20much%2C%20m&amp;short_link=http://bit.ly/cP73xO&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=The+Real+Reasons+To+Use+Twitter+%28Get+Over+Your+Prejudice+Already%29&amp;link=http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/&amp;notes=%20%20%20Introduction%20%20Let%E2%80%99s%20face%20it%20%E2%80%93%20the%20majority%20of%20the%20population%20doesn%E2%80%99t%20understand%20twitter.%20They%20don%E2%80%99t%20get%20its%20true%20value%20-%20all%20they%20see%20is%20an%20obnoxious%20social%20network%20full%20of%20exhibitionists%20tweeting%20about%20millions%20of%20mundane%20things%20of%20every%20minute%20of%20their%20lives.%20%20Except%2C%20twitter%20is%20much%2C%20m&amp;short_link=http://bit.ly/cP73xO&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=The+Real+Reasons+To+Use+Twitter+%28Get+Over+Your+Prejudice+Already%29&amp;link=http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/&amp;notes=%20%20%20Introduction%20%20Let%E2%80%99s%20face%20it%20%E2%80%93%20the%20majority%20of%20the%20population%20doesn%E2%80%99t%20understand%20twitter.%20They%20don%E2%80%99t%20get%20its%20true%20value%20-%20all%20they%20see%20is%20an%20obnoxious%20social%20network%20full%20of%20exhibitionists%20tweeting%20about%20millions%20of%20mundane%20things%20of%20every%20minute%20of%20their%20lives.%20%20Except%2C%20twitter%20is%20much%2C%20m&amp;short_link=http://bit.ly/cP73xO&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=The%20Real%20Reasons%20To%20Use%20Twitter%20%28Get%20Over%20Your%20Prejudice%20Already%29&amp;link=http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/&amp;notes=%20%20%20Introduction%20%20Let%E2%80%99s%20face%20it%20%E2%80%93%20the%20majority%20of%20the%20population%20doesn%E2%80%99t%20understand%20twitter.%20They%20don%E2%80%99t%20get%20its%20true%20value%20-%20all%20they%20see%20is%20an%20obnoxious%20social%20network%20full%20of%20exhibitionists%20tweeting%20about%20millions%20of%20mundane%20things%20of%20every%20minute%20of%20their%20lives.%20%20Except%2C%20twitter%20is%20much%2C%20m&amp;short_link=http://bit.ly/cP73xO&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/" rel="bookmark" title="June 14, 2008">Top 10 Reasons Why Digsby ROCKS</a></li><li><a
href="http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/" rel="bookmark" title="March 17, 2009">Twitter.com Autocomplete, Auto URL Expansion, Auto URL Shortener, RT Button, Nested Replies, Inline Media Embed, Search Tabs, And More</a></li><li><a
href="http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/" rel="bookmark" title="December 20, 2009">Enable A Twitter Retweet (RT) Button That Lets You Add Comments Before Retweeting</a></li><li><a
href="http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/" rel="bookmark" title="March 4, 2009">Random Questions and Thoughts. Password Protected Garage Door Remotes, Twitter Security, MUNI Drivers, Burgers, etc</a></li><li><a
href="http://beerpla.net/2009/06/11/proof-that-god-does-exist-you-can-finally-block-those-insanely-annoying-facebook-quizzes-for-good/" rel="bookmark" title="June 11, 2009">Proof That God Does Exist &#8211; You Can Finally Block Those Insanely Annoying Facebook Quizzes For Good</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2009%2F04%2F09%2Fthe-real-reasons-to-use-twitter-get-over-your-prejudice-already%2F&amp;title=The%20Real%20Reasons%20To%20Use%20Twitter%20%28Get%20Over%20Your%20Prejudice%20Already%29" id="wpa2a_8"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Twitter.com Autocomplete, Auto URL Expansion, Auto URL Shortener, RT Button, Nested Replies, Inline Media Embed, Search Tabs, And More</title><link>http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/</link> <comments>http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/#comments</comments> <pubDate>Tue, 17 Mar 2009 20:14:36 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Awesomeness]]></category> <category><![CDATA[My Favorites]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Twitter]]></category> <category><![CDATA[autocomplete]]></category> <category><![CDATA[embed]]></category> <category><![CDATA[expand]]></category> <category><![CDATA[greasemonkey]]></category> <category><![CDATA[hash tags]]></category> <category><![CDATA[media]]></category> <category><![CDATA[mention]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[retweet button]]></category> <category><![CDATA[script]]></category> <category><![CDATA[search]]></category> <category><![CDATA[shorten]]></category> <category><![CDATA[suggest]]></category> <category><![CDATA[tool]]></category> <category><![CDATA[twitter]]></category> <guid
isPermaLink="false">http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/</guid> <description><![CDATA[<p>Recently I read <a
href="http://sixrevisions.com/web_design/10-features-that-will-make-twitter-better/" rel="nofollow">an article</a> on the Six Revisions blog that discussed 10 seemingly simple improvements to the twitter interface. They included such things as nick autocomplete, mentions, groups, and more.</p><p>You could only dream about such twitter improvements&#8230; that is until you use the Troys Twitter script. Just perform the following steps and you will have the features I describe in this article. Here we go:</p><ol><li>Install <a
href="http://www.getfirefox.com/" rel="nofollow">Firefox</a> (you already have that, right?)</li><li>Install the <a
href="https://addons.mozilla.org/en-US/firefox/addon/748" rel="nofollow">Firefox greasemonkey extension</a></li><li>Install the <a
href="http://userscripts.org/scripts/show/40617">Troys Twitter script</a></li></ol><p><div
class="note"><div
class="notehelp"><strong><em>Greasemonkey</em></strong> is the most versatile extension available for Firefox, as it’s essentially a whole framework for scripts that can manipulate any aspect of any page. Head over to <a
href="http://userscripts.org">userscripts.org</a> and take a look at the myriads</div></div>...<div
class=clear></div> <a
href="http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<p>Recently I read <a
href="http://sixrevisions.com/web_design/10-features-that-will-make-twitter-better/" rel="nofollow">an article</a> on the Six Revisions blog that discussed 10 seemingly simple improvements to the twitter interface. They included such things as nick autocomplete, mentions, groups, and more.</p><p>You could only dream about such twitter improvements&#8230; that is until you use the Troys Twitter script. Just perform the following steps and you will have the features I describe in this article. Here we go:</p><ol><li>Install <a
href="http://www.getfirefox.com/" rel="nofollow">Firefox</a> (you already have that, right?)</li><li>Install the <a
href="https://addons.mozilla.org/en-US/firefox/addon/748" rel="nofollow">Firefox greasemonkey extension</a></li><li>Install the <a
href="http://userscripts.org/scripts/show/40617">Troys Twitter script</a></li></ol><p><div
class="note"><div
class="notehelp"><strong><em>Greasemonkey</em></strong> is the most versatile extension available for Firefox, as it’s essentially a whole framework for scripts that can manipulate any aspect of any page. Head over to <a
href="http://userscripts.org">userscripts.org</a> and take a look at the myriads of scripts written and submitted by other Greasemonkey users.</div></div></p><p>Once you are done with the above steps, head over to <a
href="http://twitter.com" rel="nofollow">twitter.com</a> (there’s no need to restart Firefox). You will then be able to enjoy the following enhancements, which I ordered here in terms of usefulness to me:</p><h2>Autocomplete</h2><p>Do you have a few friends with names so complicated, you can’t type them out by hand? Troys script autocompletes your friends’ names – just type @ and a few letters of their name. This is my favorite feature.</p><p>Before:</p><p>&#160;</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_4.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="163" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_4.png" width="581" /></a></p><p>After:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_5.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="166" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_5.png" width="568" /></a></p><p>&#160;</p><h2>Search Bar And Favorite Searches Saved</h2><p>A search box is added to the sidebar. You can make a number of favorite searches, which then also remain sticky on the sidebar above the search box. When you click on a search term, the current page is updated without reloading the whole thing. Note that the favorite search terms are saved locally in your browser and won’t show up on your other computers.</p><p>Before:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_6.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="219" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_6.png" width="214" /></a></p><p>After:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_7.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="422" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_7.png" width="217" /></a></p><h2>Auto Expander Of Shortened URLs</h2><p>Automatically expands url shorteners, so instead of seeing a load of tinyurls and bit.lys, you see proper urls and their native page titles (neat!).</p><p>Before:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_8.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="90" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_8.png" width="558" /></a></p><p>After:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_9.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="120" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_9.png" width="540" /></a></p><h2>Auto URL Shortener</h2><p><strong>Updated:</strong> The URL shortener auto shortens urls as you type them but only if they will overflow the 140 character limit, otherwise they stay as they are (it now works flawlessly).</p><p>Before:</p><p><a
href="http://beerpla.net/wp-content/uploads/Twi.comAutocompleteAutoURLExpansionAutoU_B355/image.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="101" alt="image" src="http://beerpla.net/wp-content/uploads/Twi.comAutocompleteAutoURLExpansionAutoU_B355/image_thumb.png" width="538" /></a></p><p>After:</p><p><a
href="http://beerpla.net/wp-content/uploads/Twi.comAutocompleteAutoURLExpansionAutoU_B355/image_3.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="151" alt="image" src="http://beerpla.net/wp-content/uploads/Twi.comAutocompleteAutoURLExpansionAutoU_B355/image_thumb_3.png" width="556" /></a></p><h2>Auto Pagination</h2><p>As you reach the bottom of the page, more earlier updates are automatically loaded after a few seconds. This means you don’t need to click or leave the page in order to see earlier updates. It could get a bit annoying, so I <a
href="http://userscripts.org/topics/23340" rel="nofollow">requested an ability to turn off certain script features</a>. <strong>Update: </strong>you can now turn off every feature of the script individually.</p><h2>Auto Media Embed Expander</h2><p>Pictures and videos are automatically embedded.</p><p>Before:</p><p
align="center"><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_10.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="212" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_10.png" width="550" /></a>(Uhmm, I don’t know why I highlighted “sack” but I don’t feel like retaking the screenshot… Yeah…)</p><p>After:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_11.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="712" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_11.png" width="583" /></a></p><h2>Retweet (RT) Button</h2><p>Adds the missing RT button to each update.</p><p>Before:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_12.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="74" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_12.png" width="556" /></a></p><p>After:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_13.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="82" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_13.png" width="563" /></a></p><h2>Autopopulate Bios on User Listings</h2><p><strong>Updated:</strong> This function will save you hundreds of clicks – when viewing someone&#039;s followers, rather than just seeing their names, the script adds their bios.</p><p>Before:</p><p><a
href="http://beerpla.net/wp-content/uploads/Twi.comAutocompleteAutoURLExpansionAutoU_B355/image_4.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="254" alt="image" src="http://beerpla.net/wp-content/uploads/Twi.comAutocompleteAutoURLExpansionAutoU_B355/image_thumb_4.png" width="576" /></a></p><p>After:</p><p><a
href="http://beerpla.net/wp-content/uploads/Twi.comAutocompleteAutoURLExpansionAutoU_B355/image_5.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="246" alt="image" src="http://beerpla.net/wp-content/uploads/Twi.comAutocompleteAutoURLExpansionAutoU_B355/image_thumb_5.png" width="595" /></a></p><h2>Hyperlinked Hash Tags</h2><p>Hash tags are now hyperlinked to the twitter search page. Seriously, twitter can’t do that by default?</p><p>Before:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_14.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="89" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_14.png" width="223" /></a></p><p>After:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_15.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="121" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_15.png" width="334" /></a></p><h2>User’s Local Time</h2><p>The script adds a user’s local time. See the example below using the profile of a lovely <a
href="http://twitter.com/kamikazekitty" rel="nofollow">Kamikazekitty</a>. This feature seems unpublished and I found it by accident.</p><p>Before:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_16.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="208" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_16.png" width="214" /></a></p><p>After:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_17.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="221" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_17.png" width="216" /></a></p><h2>Nested Replies</h2><p>This is a great feature – it gives context to @ replies. For example, <a
href="http://twitter.com/ev" rel="nofollow">@ev</a>’s reply to kevin is boring and out of context until you see what they’re talking about, all without looking up @kevin’s updates.</p><p>Before:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_20.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="94" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_20.png" width="523" /></a></p><p>After:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_21.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="114" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_21.png" width="476" /></a></p><h2>Mutual Friends Marked</h2><p><strong>Updated:</strong> This is a new feature. People who you follow and who also follow you back (mutual friendship) are marked with a little smiley face.</p><p>Before:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_22.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="233" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_22.png" width="544" /></a></p><p>After:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_23.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="243" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_23.png" width="508" /></a></p><h2>Auto <a
href="http://twitter.com/fxxxmylife" rel="nofollow">@fxxxmylife</a> Expansion</h2><p><strong>Updated:</strong> Woot! Following the infamous <a
href="http://twitter.com/fxxxmylife" rel="nofollow">@fxxxmylife</a> is no longer annoying: all posts get auto-expanded. Brilliant. For those who don&#039;t know, FML is a site collecting short stories that all start with &quot;Today,&quot; and end with &quot;FML&quot;. <a
href="http://www.fmylife.com/top" rel="nofollow">Here</a> are the top FMLs to get you started [hooked].</p><p>Before:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_24.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="465" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_24.png" width="479" /></a> After:</p><p><a
href="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_25.png" class="lightview" rel="gallery['872']" title="image"><img
title="image" style="display: block; float: none; margin-left: auto; margin-right: auto" height="645" alt="image" src="http://beerpla.net/wp-content/uploads/TwitterAutocompleteAutoURLExpansionAutoU_108E8/image_thumb_25.png" width="507" /></a></p><p>That’s it for now in the current script version (6.5) but what a world of difference, isn’t it? <a
href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fbeerpla.net%2F2009%2F03%2F17%2Ftwitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more%2F&amp;type=page&amp;linkname=%3C!--enpts--%3ETwitter.com%20Autocomplete%2C%20Auto%20URL%20Expansion%2C%20Auto%20URL%20Shortener%2C%20RT%20Button%2C%20Nested%20Replies%2C%20Inline%20Media%20Embed%2C%20Search%20Tabs%2C%20And%20More%3C!--enpte--%3E&amp;linknote=Recently%20I%20read%20an%20article%20on%20the%20Six%20Revisions%20blog%20that%20discussed%2010%20seemingly%20simple%20improvements%20to%20the%20twitter%20interface.%20They%20included%20such%20things%20as%20nick" rel="nofollow">Tweet</a> this post if you like it and let your friends know about this great twitter web tool.</p><div
class='post_blob_1'>If thinking of how to pass <a
href="http://www.test-king.com/exams/642-845.htm">642-845</a> then <a
href="http://www.test-king.com/exams/642-825.htm">642-825</a> online training is best option to achieve your goal in days and get <a
href="http://www.test-king.com/exams/650-177.htm">650-177</a> certified.</div><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=Twitter.com+Autocomplete%2C+Auto+URL+Expansion%2C+Auto+URL+Shortener%2C+RT+Button%2C+Nested+Replies%2C+Inline+Media+Embed%2C+Search+Tabs%2C+And+More&amp;link=http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/&amp;notes=Recently%20I%20read%20an%20article%20on%20the%20Six%20Revisions%20blog%20that%20discussed%2010%20seemingly%20simple%20improvements%20to%20the%20twitter%20interface.%20They%20included%20such%20things%20as%20nick%20autocomplete%2C%20mentions%2C%20groups%2C%20and%20more.%0D%0AYou%20could%20only%20dream%20about%20such%20twitter%20improvements...%20that%20is%20until%20you%20use%20the%20Troys%20Twitter%20&amp;short_link=http://bit.ly/a8MzRA&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=Twitter.com+Autocomplete%2C+Auto+URL+Expansion%2C+Auto+URL+Shortener%2C+RT+Button%2C+Nested+Replies%2C+Inline+Media+Embed%2C+Search+Tabs%2C+And+More&amp;link=http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/&amp;notes=Recently%20I%20read%20an%20article%20on%20the%20Six%20Revisions%20blog%20that%20discussed%2010%20seemingly%20simple%20improvements%20to%20the%20twitter%20interface.%20They%20included%20such%20things%20as%20nick%20autocomplete%2C%20mentions%2C%20groups%2C%20and%20more.%0D%0AYou%20could%20only%20dream%20about%20such%20twitter%20improvements...%20that%20is%20until%20you%20use%20the%20Troys%20Twitter%20&amp;short_link=http://bit.ly/a8MzRA&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=Twitter.com+Autocomplete%2C+Auto+URL+Expansion%2C+Auto+URL+Shortener%2C+RT+Button%2C+Nested+Replies%2C+Inline+Media+Embed%2C+Search+Tabs%2C+And+More&amp;link=http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/&amp;notes=Recently%20I%20read%20an%20article%20on%20the%20Six%20Revisions%20blog%20that%20discussed%2010%20seemingly%20simple%20improvements%20to%20the%20twitter%20interface.%20They%20included%20such%20things%20as%20nick%20autocomplete%2C%20mentions%2C%20groups%2C%20and%20more.%0D%0AYou%20could%20only%20dream%20about%20such%20twitter%20improvements...%20that%20is%20until%20you%20use%20the%20Troys%20Twitter%20&amp;short_link=http://bit.ly/a8MzRA&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=Twitter.com+Autocomplete%2C+Auto+URL+Expansion%2C+Auto+URL+Shortener%2C+RT+Button%2C+Nested+Replies%2C+Inline+Media+Embed%2C+Search+Tabs%2C+And+More&amp;link=http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/&amp;notes=Recently%20I%20read%20an%20article%20on%20the%20Six%20Revisions%20blog%20that%20discussed%2010%20seemingly%20simple%20improvements%20to%20the%20twitter%20interface.%20They%20included%20such%20things%20as%20nick%20autocomplete%2C%20mentions%2C%20groups%2C%20and%20more.%0D%0AYou%20could%20only%20dream%20about%20such%20twitter%20improvements...%20that%20is%20until%20you%20use%20the%20Troys%20Twitter%20&amp;short_link=http://bit.ly/a8MzRA&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=Twitter.com+Autocomplete%2C+Auto+URL+Expansion%2C+Auto+URL+Shortener%2C+RT+Button%2C+Nested+Replies%2C+Inline+Media+Embed%2C+Search+Tabs%2C+And+More&amp;link=http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/&amp;notes=Recently%20I%20read%20an%20article%20on%20the%20Six%20Revisions%20blog%20that%20discussed%2010%20seemingly%20simple%20improvements%20to%20the%20twitter%20interface.%20They%20included%20such%20things%20as%20nick%20autocomplete%2C%20mentions%2C%20groups%2C%20and%20more.%0D%0AYou%20could%20only%20dream%20about%20such%20twitter%20improvements...%20that%20is%20until%20you%20use%20the%20Troys%20Twitter%20&amp;short_link=http://bit.ly/a8MzRA&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=Twitter.com+Autocomplete%2C+Auto+URL+Expansion%2C+Auto+URL+Shortener%2C+RT+Button%2C+Nested+Replies%2C+Inline+Media+Embed%2C+Search+Tabs%2C+And+More&amp;link=http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/&amp;notes=Recently%20I%20read%20an%20article%20on%20the%20Six%20Revisions%20blog%20that%20discussed%2010%20seemingly%20simple%20improvements%20to%20the%20twitter%20interface.%20They%20included%20such%20things%20as%20nick%20autocomplete%2C%20mentions%2C%20groups%2C%20and%20more.%0D%0AYou%20could%20only%20dream%20about%20such%20twitter%20improvements...%20that%20is%20until%20you%20use%20the%20Troys%20Twitter%20&amp;short_link=http://bit.ly/a8MzRA&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=Twitter.com+Autocomplete%2C+Auto+URL+Expansion%2C+Auto+URL+Shortener%2C+RT+Button%2C+Nested+Replies%2C+Inline+Media+Embed%2C+Search+Tabs%2C+And+More&amp;link=http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/&amp;notes=Recently%20I%20read%20an%20article%20on%20the%20Six%20Revisions%20blog%20that%20discussed%2010%20seemingly%20simple%20improvements%20to%20the%20twitter%20interface.%20They%20included%20such%20things%20as%20nick%20autocomplete%2C%20mentions%2C%20groups%2C%20and%20more.%0D%0AYou%20could%20only%20dream%20about%20such%20twitter%20improvements...%20that%20is%20until%20you%20use%20the%20Troys%20Twitter%20&amp;short_link=http://bit.ly/a8MzRA&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=Twitter.com%20Autocomplete%2C%20Auto%20URL%20Expansion%2C%20Auto%20URL%20Shortener%2C%20RT%20Button%2C%20Nested%20Replies%2C%20Inline%20Media%20Embed%2C%20Search%20Tabs%2C%20And%20More&amp;link=http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/&amp;notes=Recently%20I%20read%20an%20article%20on%20the%20Six%20Revisions%20blog%20that%20discussed%2010%20seemingly%20simple%20improvements%20to%20the%20twitter%20interface.%20They%20included%20such%20things%20as%20nick%20autocomplete%2C%20mentions%2C%20groups%2C%20and%20more.%0D%0AYou%20could%20only%20dream%20about%20such%20twitter%20improvements...%20that%20is%20until%20you%20use%20the%20Troys%20Twitter%20&amp;short_link=http://bit.ly/a8MzRA&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/" rel="bookmark" title="December 20, 2009">Enable A Twitter Retweet (RT) Button That Lets You Add Comments Before Retweeting</a></li><li><a
href="http://beerpla.net/2009/10/24/are-you-a-stackoverflow-com-superuser-com-serverfault-com-fan-heres-a-greasemonkey-script-to-keep-track-of-your-accounts-on-all-of-them/" rel="bookmark" title="October 24, 2009">StackOverflow.com, SuperUser.com, ServerFault.com Fan? Here&#039;s A Greasemonkey Script To Keep Track Of All Your Accounts</a></li><li><a
href="http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/" rel="bookmark" title="February 12, 2009">How To Fight Clickjacking (Using The Recent Twitter Hijacking As An Example)</a></li><li><a
href="http://beerpla.net/2009/06/10/essential-firefox-extensions-plugins-add-ons-a-comprehensive-guide-part-2-pragmatic-extensions/" rel="bookmark" title="June 10, 2009">Essential Firefox Extensions (Plugins, Add-Ons) &ndash; A Comprehensive Guide :: Part 2 :: Pragmatic Extensions</a></li><li><a
href="http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/" rel="bookmark" title="April 9, 2009">The Real Reasons To Use Twitter (Get Over Your Prejudice Already)</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2009%2F03%2F17%2Ftwitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more%2F&amp;title=Twitter.com%20Autocomplete%2C%20Auto%20URL%20Expansion%2C%20Auto%20URL%20Shortener%2C%20RT%20Button%2C%20Nested%20Replies%2C%20Inline%20Media%20Embed%2C%20Search%20Tabs%2C%20And%20More" id="wpa2a_10"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/feed/</wfw:commentRss> <slash:comments>27</slash:comments> </item> <item><title>Random Questions and Thoughts. Password Protected Garage Door Remotes, Twitter Security, MUNI Drivers, Burgers, etc</title><link>http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/</link> <comments>http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/#comments</comments> <pubDate>Wed, 04 Mar 2009 13:00:00 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Beer Planet]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[Stuff]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[WTF?]]></category> <category><![CDATA[answer]]></category> <category><![CDATA[burger]]></category> <category><![CDATA[buses]]></category> <category><![CDATA[dilbert]]></category> <category><![CDATA[door]]></category> <category><![CDATA[garage]]></category> <category><![CDATA[muni]]></category> <category><![CDATA[musing]]></category> <category><![CDATA[password]]></category> <category><![CDATA[question]]></category> <category><![CDATA[random]]></category> <category><![CDATA[thought]]></category> <category><![CDATA[train]]></category> <category><![CDATA[twitter]]></category> <guid
isPermaLink="false">http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/</guid> <description><![CDATA[<p><a
href="http://beerpla.net/wp-content/uploads/Ran.PasswordProtectedGarageDoorOpenersTw_1079F/image.png" class="lightview" rel="gallery['826']" title="image"><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="159" alt="image" src="http://beerpla.net/wp-content/uploads/Ran.PasswordProtectedGarageDoorOpenersTw_1079F/image_thumb.png" width="240" align="left" /></a> From time to time my, still curious, mind accumulates a variety of questions and concerns which it has to spill onto the pages of this blog. How random are these? Pretty damn random, and I need to see some answers, quick. Oh, and I’m deliberately not searching Google, as I want to facilitate discussion. What fun would it be if I just looked up all these?</p><h2><strong>Password Protected Garage Door Remotes</strong></h2><p>As a paranoid person and a recent homeowner, I started to wonder how safe I actually am in my house. Consider this likely scenario that nobody seems to be concerned with:</p><blockquote><p>I park my car outside for one night and don’t take out my portable garage door remote, the</p>...<div
class=clear></div> <a
href="http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></blockquote>]]></description> <content:encoded><![CDATA[<p><a
href="http://beerpla.net/wp-content/uploads/Ran.PasswordProtectedGarageDoorOpenersTw_1079F/image.png" class="lightview" rel="gallery['826']" title="image"><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="159" alt="image" src="http://beerpla.net/wp-content/uploads/Ran.PasswordProtectedGarageDoorOpenersTw_1079F/image_thumb.png" width="240" align="left" /></a> From time to time my, still curious, mind accumulates a variety of questions and concerns which it has to spill onto the pages of this blog. How random are these? Pretty damn random, and I need to see some answers, quick. Oh, and I’m deliberately not searching Google, as I want to facilitate discussion. What fun would it be if I just looked up all these?</p><h2><strong>Password Protected Garage Door Remotes</strong></h2><p>As a paranoid person and a recent homeowner, I started to wonder how safe I actually am in my house. Consider this likely scenario that nobody seems to be concerned with:</p><blockquote><p>I park my car outside for one night and don’t take out my portable garage door remote, the one with a single open/close button. Or, even worse, the remote code is programmed into one of those garage opener buttons built into the car. A car burglar comes along, breaks the window, and trashes my car. Wow, an added bonus – a free entrance into the house!</p></blockquote><p>Needless to say, this is bad already. How many of you lock the door between the house and the garage? What if you forget to do that as well? Is there a spare house key laying around in the garage? You may say “but I’ll hear the garage door open” but does it actually make you feel better? You will be present with an intruder in your house, which will scare the living shit out of you non-governator types.</p><p>So here’s my question to you, Internet, is there a garage door remote I can buy that has a programmable keypad, so that a password is needed for the button to work? In fact, it would be almost the same as the one that mounts next to the garage door. And can it not cost $100?</p><h2><strong>Twitter Security</strong></h2><p>This part is not about computer security, as you may have thought at first, although I did recently discuss it in the <a
href="http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/">Clickjacking article</a>. I also know that I’m not the first one to bring this issue up but I think it’s worth discussing some more. Consider this scenario:</p><blockquote><p>You’re a cheerful, outgoing snowboarding enthusiast with 3000 twitter (plurk, facebook, or another social network but twitter is the most relevant example) followers. Or maybe you have 3 followers. There’s a 99.9% chance that your profile and updates are public (if you have 3000 followers with a private profile, you must be some sort of a chump. And yes, I did just make the stats up, want fight about it?).</p><p>So, on Friday night, you send the following tweet: “Gone snowboarding for the whole weekend. But not before getting piss trashed Friday night at the casino. Wooooo”.</p></blockquote><p>Since anybody can watch your tweets absolutely anonymously and it’s extremely easy to dig up an address knowing very little about a person, what you just said was “If you are a burglar looking for the next opportunity, just drop everything and come on by Friday night. I will be far-far away but my house (located at 123 Main St) will be available for your robbing pleasures. You only have 2 days before anyone is home, so feel free to crash on the couch and eat my food. Don’t forget to feed the cat. Kthx.”</p><p>Is this a likely scenario? Not really, unless twitter raises the tweet length to more than 140 characters, but otherwise you see where I’m going with this. Don’t be stupid – avoid advertising exact details of your whereabouts, vacation plans, etc. There are plenty of uses for Twitter without giving up most of your privacy. Ask yourself: would you post a note with your whereabouts on your door every time you leave the house for a while?</p><h2><strong>How Do Trains And Buses Know Where They Are?</strong></h2><p>If you live in a relatively large city, you have seen relatively accurate bus and train arrival predictions and, in some cases, almost exact locations of each vehicle. For example, here in San Francisco we have MUNI stations with live maps of trains’ whereabouts and bus stops with bus predictions on small electronic displays.</p><p>What is the technology behind it? It cannot be just GPS, because trains go underground where there is no reception. If it’s a combination of externally mounted sensors, are they also placed outside, once the train gets out into the street? Or is it some sort of a 2-way GPS (a conventional GPS device is just a receiver) underground that switches to sensors above ground? I don’t know but I want to.</p><h2><strong>Train/Bus Drivers And Bathrooms</strong></h2><p>While I’m on the public transportation subject, here’s what I want to know: if you are a train/bus/trolleybus driver, what do you do if you NEED to go somewhere when you are half way down your route? All of us had such moments at least once, and sometimes you just HAVE TO drop the bomb, sink some submarines, drop the kids off at the pool, release the chocolate hostage, plant some potatoes, give birth to a VB programmer, down the proctoscope, bake some brownies, you know what I mean (if you don’t, you’re a senile muppet, what are you doing on the Internet?).</p><p>They can’t just leave the train in the middle of the street, can they? Have you ever seen one run out in the middle of the street? I’m really curious here.</p><h2><strong>All Of Dilbert</strong></h2><p><strike>Is there a Dilbert collection somewhere that has every Dilbert comic in an easily browseable manner, ideally with ratings I can sort by? 100 Dilberts per page would be ideal.</strike> Ah, looks like the new <a
href="http://dilbert.com">Dilbert.com</a> finally made it a reality: <a
href="http://dilbert.com/strips/?F=1&amp;CharIDs=&amp;ViewType=Full&amp;After=04%2F17%2F1989&amp;Order=s.Rating+DESC&amp;PerPage=49&amp;x=15&amp;y=21&amp;CharFilter=Any">all Dilbert comics sorted by votes, 49 per page</a>.</p><h2><strong>Where Can I Buy A Circus Tent?</strong></h2><p>Who sells them? The ones where elephants and clowns could fit. It could also double as a portable office.</p><h2><strong>Who Gets To Eat The Most Delicious Burger In Burger Commercials?</strong></h2><p>And where do I sign up? I’m serious.</p><p
align="center">● ● ●</p><p>Yeah, so that’s pretty much what’s on my mind right now. What’s on yours?</p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=Random%20Questions%20and%20Thoughts.%20Password%20Protected%20Garage%20Door%20Remotes%2C%20Twitter%20Security%2C%20MUNI%20Drivers%2C%20Burgers%2C%20etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/" rel="bookmark" title="December 20, 2009">Enable A Twitter Retweet (RT) Button That Lets You Add Comments Before Retweeting</a></li><li><a
href="http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/" rel="bookmark" title="December 2, 2009">[Twitter] The Most Useless Tweet To Date Discovered</a></li><li><a
href="http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/" rel="bookmark" title="March 17, 2009">Twitter.com Autocomplete, Auto URL Expansion, Auto URL Shortener, RT Button, Nested Replies, Inline Media Embed, Search Tabs, And More</a></li><li><a
href="http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/" rel="bookmark" title="April 9, 2009">The Real Reasons To Use Twitter (Get Over Your Prejudice Already)</a></li><li><a
href="http://beerpla.net/2009/12/04/amazon-posts-the-deal-of-the-century-ultimate-ears-triplefi-10-10vi-earphones-99-down-from-399-amazing-value-perfect-for-mobile-phones/" rel="bookmark" title="December 4, 2009">Amazon Posts The Deal Of The Century: Ultimate Ears TripleFi 10 &amp; 10vi Earphones &#8211; $99, Down From $399 &#8211; Amazing Value, Perfect For Mobile Phones</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2009%2F03%2F04%2Frandom-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc%2F&amp;title=Random%20Questions%20and%20Thoughts.%20Password%20Protected%20Garage%20Door%20Remotes%2C%20Twitter%20Security%2C%20MUNI%20Drivers%2C%20Burgers%2C%20etc" id="wpa2a_12"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>How To Fight Clickjacking (Using The Recent Twitter Hijacking As An Example)</title><link>http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/</link> <comments>http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/#comments</comments> <pubDate>Thu, 12 Feb 2009 19:43:53 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Twitter]]></category> <category><![CDATA[attack]]></category> <category><![CDATA[click]]></category> <category><![CDATA[clickjacking]]></category> <category><![CDATA[combat]]></category> <category><![CDATA[fight]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[ie]]></category> <category><![CDATA[injection]]></category> <category><![CDATA[internet explorer]]></category> <category><![CDATA[jacking]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[noscript]]></category> <category><![CDATA[protect]]></category> <category><![CDATA[twitter]]></category> <category><![CDATA[xss]]></category> <guid
isPermaLink="false">http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/</guid> <description><![CDATA[<h2><img
style="margin: 0px 10px 10px 0px; display: inline" title="image" alt="image" align="left" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image.png" width="150" height="138" /> Introduction</h2><p><a
href="http://en.wikipedia.org/wiki/Clickjacking">Clickjacking</a> is a malicious technique of tricking web users into revealing confidential information or taking control of their computer while clicking on seemingly innocuous web pages. A vulnerability across a variety of browsers and platforms, a clickjacking takes the form of embedded code or script that can execute without the user&#039;s knowledge, such as clicking on a button that appears to perform another function (credit: Wikipedia).</p><p>Clickjacking is hard to combat. From a technical standpoint, the attack is executed using a combination of <a
href="http://en.wikipedia.org/wiki/Css">CSS</a> and <a
href="http://en.wikipedia.org/wiki/IFrame">iFrames</a>, which are both harmless web technologies, and relies mostly on tricking users by means of social engineering. Additionally, the only server side technique against clickjacking known to me is “<a
href="http://en.wikipedia.org/wiki/Framekiller">frame breaking</a>...<div
class=clear></div> <a
href="http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<h2><img
style="margin: 0px 10px 10px 0px; display: inline" title="image" alt="image" align="left" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image.png" width="150" height="138" /> Introduction</h2><p><a
href="http://en.wikipedia.org/wiki/Clickjacking">Clickjacking</a> is a malicious technique of tricking web users into revealing confidential information or taking control of their computer while clicking on seemingly innocuous web pages. A vulnerability across a variety of browsers and platforms, a clickjacking takes the form of embedded code or script that can execute without the user&#039;s knowledge, such as clicking on a button that appears to perform another function (credit: Wikipedia).</p><p>Clickjacking is hard to combat. From a technical standpoint, the attack is executed using a combination of <a
href="http://en.wikipedia.org/wiki/Css">CSS</a> and <a
href="http://en.wikipedia.org/wiki/IFrame">iFrames</a>, which are both harmless web technologies, and relies mostly on tricking users by means of social engineering. Additionally, the only server side technique against clickjacking known to me is “<a
href="http://en.wikipedia.org/wiki/Framekiller">frame breaking</a>”, which would cause a legitemate site to break out of any iFrames it may be embedded in. This is not always the desired behavior and is generally frowned upon.</p><p><div
class="note"><div
class="noteclassic"><a
href="http://en.wikipedia.org/wiki/Cross-site_scripting">XSS</a> and <a
href="http://www.codinghorror.com/blog/archives/001171.html">CSRF</a> are examples of similar malicious web attacks.</div></div></p><h2>Generic Example</h2><p>In laymen’s terms, clickjacking means that it is quite possible for websites to trick you into, for example, clicking a button to show a cute kitty while in reality prompting a deletion of all your hotmail email. A malicious site uses an iFrame (which essentially allows embedding sites within other sites) with hotmail loaded inside and hidden using CSS (which is a web language for styling HTML elements). A button named “Show Me The Next Awwww Kitty” is then placed by the malicious site and positioned below the iFrame layer (manipulated by CSS, yet again). However, because the iFrame is hidden, it looks like the “Aww” button is all you’re clicking. Wrong!</p><p><a
href="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_3.png" class="lightview" rel="gallery['774']" title="image"><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_thumb.png" width="351" height="92" /></a>&#160;</p><h2>Latest Example: Twitter</h2><p>This morning a new, though harmless, epidemic hit twitter. Hundreds and thousands of messages saying “Don’t Click: <a
href="http://tinyurl.com/amgzs6" rel="nofollow">http://tinyurl.com/amgzs6</a>” started showing up. Clicking the link shows a simple page with 1 button:</p><p><a
href="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_4.png" class="lightview" rel="gallery['774']" title="image"><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_thumb_3.png" width="183" height="129" /></a> Clicking (which I of course did) uses clickjacking to repost the message to your own twitter account. Take a look yourself: <a
title="http://search.twitter.com/search?q=don%27t+click" href="http://search.twitter.com/search?q=don%27t+click" rel="nofollow">http://search.twitter.com/search?q=don%27t+click</a>.</p><p><a
href="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_5.png" class="lightview" rel="gallery['774']" title="image"><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_thumb_4.png" width="504" height="492" /></a></p><p>All of these are a result of an experiment by <a
href="http://www.korben.info/petit-cours-de-twitt-jacking.html" rel="nofollow">some French guys</a> to mess around with twitter and show the effects of clickjacking. Thank you for that, French guys. Creating awareness via the most social platform on the web is the best thing they could do for us.</p><p><div
class="note"><div
class="notetip">Twitter rolled out a quick fix, using the very “frame breaking” technique I mentioned earlier. Now any site trying to embed twitter in an iFrame will redirect to it.</div></div></p><h2>Fight Clickjacking</h2><p><img
style="margin: 0px 10px 0px 0px; display: inline" title="image" alt="image" align="left" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_6.png" width="150" height="150" /> James Padolsey recently wrote an excellent <a
href="http://james.padolsey.com/general/clickjacking-twitter/">blog post about clickjacking</a> and mentioned Twitter specifically. Because clickjacking relies mostly on social hacking (i.e. tricking people into clicking malicious links and buttons), Twitter is nothing but a perfect platform. James gives some nice background info and code examples. He correctly highlights, as I did earlier, that clickjacking is not a software bug – it’s a malicious technique exploiting harmless technologies.</p><h4>So how does one fight clickjacking?</h4><p>At this point the most reliable way is to use Firefox and the <a
href="http://noscript.net/">NoScript extension</a>. NoScript provides a simple, yet amazingly effective feature, called <a
href="http://noscript.net/faq#qa7_4">ClearClick</a>. From their site:</p><p>“…it&#039;s enabled by default, protecting NoScript users from Clickjacking everywhere: it even remains active if you switch NoScript in the less safe <em>Allow scripts globally</em> mode. How does it work? Clickjacking hides or displaces or partially covers something you wouldn&#039;t want to click, if you could see it in its original context. ClearClick does the opposite: whenever you click a plugin object or a framed page, it takes a screenshot of it alone and opaque (i.e. an image of it with no transparencies and no overlaying objects), then compares it with a screenshot of the parent page as you can see it. If the two images differ, a clickjacking attack is probably happening and NoScript raises a &quot;ClearClick warning&quot;, showing you the contextualized and &quot;clear&quot; object you were about to click, so you can evaluate by yourself if that was really something you wanted to do.”</p><p>Did ClearClick work in the earlier twitter attack? Sure did! After I clicked the “Don’t click” button Noscript promptly popped up a warning showing the hidden iFrame (since the original malicious page has been removed, I found <a
href="http://www.korben.info/twitter/ohoh.html" rel="nofollow">another similar page</a> from the same author for screenshot purposes).</p><p><a
href="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_7.png" class="lightview" rel="gallery['774']" title="image"><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_thumb_5.png" width="426" height="426" /></a>&#160;</p><p>So, even if you don’t want to enable NoScript globally, install it anyway, just for ClearClick.</p><p><div
class="note"><div
class="noteclassic">Using a browser other than Firefox? The best technique you should use is, as a general rule, don’t click on suspicious buttons and links on pages you are not familiar with. Remember: you’re on the Internet and it is full of traps.</div></div></p><p>That about covers what I had to say about clickjacking. Stay safe, folks!</p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=How%20To%20Fight%20Clickjacking%20%28Using%20The%20Recent%20Twitter%20Hijacking%20As%20An%20Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/" rel="bookmark" title="October 29, 2009">Modern-Day Frame Busting With X-FRAME-OPTIONS And &quot;This content cannot be displayed in a frame&quot; Warnings</a></li><li><a
href="http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/" rel="bookmark" title="December 20, 2009">Enable A Twitter Retweet (RT) Button That Lets You Add Comments Before Retweeting</a></li><li><a
href="http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/" rel="bookmark" title="February 3, 2010">How *Not* To Implement A Web Application That Handles External Authentication, Using BeTwittered.com As An Example</a></li><li><a
href="http://beerpla.net/2009/10/24/are-you-a-stackoverflow-com-superuser-com-serverfault-com-fan-heres-a-greasemonkey-script-to-keep-track-of-your-accounts-on-all-of-them/" rel="bookmark" title="October 24, 2009">StackOverflow.com, SuperUser.com, ServerFault.com Fan? Here&#039;s A Greasemonkey Script To Keep Track Of All Your Accounts</a></li><li><a
href="http://beerpla.net/2009/06/21/hidden-features-of-perl-php-javascript-c-c-c-java-ruby-python-and-others-collection-of-incredibly-useful-lists/" rel="bookmark" title="June 21, 2009">Hidden Features Of Perl, PHP, Javascript, C, C++, C#, Java, Ruby, Python, And Others [Collection Of Incredibly Useful Lists]</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2009%2F02%2F12%2Fhow-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example%2F&amp;title=How%20To%20Fight%20Clickjacking%20%28Using%20The%20Recent%20Twitter%20Hijacking%20As%20An%20Example%29" id="wpa2a_14"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Artem&#8217;s Top 10 Tech Predictions And Ideas For 2009 And Beyond</title><link>http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/</link> <comments>http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/#comments</comments> <pubDate>Sat, 10 Jan 2009 08:05:39 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Awesomeness]]></category> <category><![CDATA[Databases]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Stuff]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[2009]]></category> <category><![CDATA[2010]]></category> <category><![CDATA[geek]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[open source]]></category> <category><![CDATA[predictions]]></category> <category><![CDATA[tech]]></category> <category><![CDATA[twitter]]></category> <category><![CDATA[youtube]]></category> <guid
isPermaLink="false">http://beerpla.net/?p=699</guid> <description><![CDATA[<p><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="105" alt="image" src="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_8.png" width="115" align="left" />Everyone and their mother are throwing out their predictions for 2009 nowadays, it’s a new fad. It’s like you’re not cool anymore if you don’t have twitter, a Mac, and a set of random predictions for the next 12 joyous months.</p><p>So I decided to throw in a few ideas of my own to be part of the cool crowd again (how much cooler can I be already, you might think, and I wouldn’t blame you).</p><p>&#160;</p><h3 align="center"><strong></strong></h3><h2 align="center"><strong>Disclaimer (read it, tough guy)</strong></h2><p>What this post is:</p><ul><li>about the future of technology and the Internet, 2009 and beyond.</li><li><strong><u>my</u></strong> ideas on what is going to happen or should happen. If they happen to match someone else’s ideas – it doesn’t mean</li>...<div
class=clear></div> <a
href="http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></ul>]]></description> <content:encoded><![CDATA[</p><p><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="105" alt="image" src="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_8.png" width="115" align="left" />Everyone and their mother are throwing out their predictions for 2009 nowadays, it’s a new fad. It’s like you’re not cool anymore if you don’t have twitter, a Mac, and a set of random predictions for the next 12 joyous months.</p><p>So I decided to throw in a few ideas of my own to be part of the cool crowd again (how much cooler can I be already, you might think, and I wouldn’t blame you).</p><p>&#160;</p><h3 align="center"><strong></strong></h3><h2 align="center"><strong>Disclaimer (read it, tough guy)</strong></h2><p>What this post is:</p><ul><li>about the future of technology and the Internet, 2009 and beyond.</li><li><strong><u>my</u></strong> ideas on what is going to happen or should happen. If they happen to match someone else’s ideas – it doesn’t mean I ripped them off, it just means we share the same opinions and they’re more likely to come true.</li><li>awesome.</li></ul><p>What this post is not:</p><ul><li>predictions I pulled out of my ass, like “the market will bounce in August 2009” because some random douche said so.</li><li>a collection of stolen ideas. I have reserved a separate post for that purpose.</li><li><a
href="http://xkcd.com/526/">a raptor on hoverboard</a>.</li></ul><p>&#160;</p><h2 align="center"><strong>Things That Need To Happen</strong></h2><p><strong><font
size="4">1. Socially Editable Maps</font></strong></p><p><a
href="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image.png" class="lightview" rel="gallery['699']" title="image"><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="150" alt="image" src="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_thumb.png" width="150" align="left" /></a>With the advent of the GPS technology in the last couple of years and GPS prices falling (my originally $800 <a
href="http://www.amazon.com/dp/B000H49LXQ/?tag=beepla-20">Garmin Nuvi 660</a> now costs about $200), the biggest frustration I have now is the accuracy of information. In the world of Google Maps and Wikipedia, why is it that I have to wait a whole year for map updates that are obsolete by the time they come out? The Bay Bridge repairs change the roads on an almost monthly basis, for example.</p><p><strong>I want to know about road changes as soon as they occur.</strong></p><p>The next big thing will be a company, either existing, like Google, or a startup, that will introduce the social aspect into the mapping technology. It will do for maps and GPS what Wikipedia did for text, using the same approach. The details are of course to be worked out.</p><p>After this concept becomes successful, GPS companies, will need to support such updates over the air, with a push of a button. This ties in closely with prediction #2 and #4.</p><p>&#160;</p><p><font
size="4"><strong>2. Open Source GPS Goes Mainstream</strong></font></p><p><a
href="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_9.png" class="lightview" rel="gallery['699']" title="image"><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="150" alt="image" src="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_thumb_6.png" width="150" align="left" /></a>Google, the father of Android, needs to get behind this one as well. In fact, an open source GPS device would really be a subset of Android’s functionality, in a dedicated device, so it shouldn’t be that hard. In the far future, it will be built into automobile dashboards but I don’t foresee that happening in the near future.</p><p>Combined with prediction #1, this will be a killer device. I really believe that free, open source software is the wave of the future, the natural direction of where software development is heading. Look at Linux in the past few years. Look at Android now. Release one and I’m be #1 in line for one. Those who know me IRL know that I can’t go anywhere without a GPS anymore. I once forgot a GPS at home and ended up in Chili.</p><p>&#160;</p><p><strong><font
size="4">3. Photo and Video Cameras Will Go Wireless, Anywhere You Go</font></strong></p><p><a
href="http://www.amazon.com/dp/B000B8UOV6/?tag=beepla-20"><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="112" alt="image" src="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_4.png" width="150" align="left" /></a>Photo and video cameras will be able to post pictures and videos to your home computer, sites like Flickr and YouTube, or email themselves directly to your friends… as soon as you record them, over cellular and Wifi networks.</p><p>Cell phones with cameras? Think cameras with cell phones. Some Wifi enabled cameras already came out, like this <a
href="http://www.amazon.com/dp/B000B8UOV6/?tag=beepla-20">Canon SD430</a> (DP review <a
href="http://www.dpreview.com/news/0510/05102501canonsd430wifi.asp">here</a>), and this freshly announced at CES 2009 <a
href="http://i.gizmodo.com/5126097/sony-cybershot-g3-worlds-first-camera-you-can-surf-the-web-on">Sony G3</a>, and now it’s time to go cellular.</p><p>The next prediction is a generalization of this concept.</p><p>&#160;</p><p><strong><font
size="4">4. Wireless Connectivity Everywhere, In Every Device, Anywhere You Go</font></strong></p><p><a
href="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_5.png" class="lightview" rel="gallery['699']" title="image"><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="101" alt="image" src="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_thumb_4.png" width="150" align="left" /></a>Cell phone carriers will sign an increasing amount of deals with companies that want to build devices which connect to the Internet or private networks anywhere you go: GPSes, cameras, digital picture frames, cars, fridges.</p><p>The future is completely wireless. People are sick and tired of cords, clutter, and Rick Astley – I know that for a fact and digg says so.</p><p>&#160;</p><p><strong><font
size="4">5. Android Will Become Hugely Successful</font></strong></p><p><strong><font
size="4"><a
href="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_6.png" class="lightview" rel="gallery['699']" title="image"><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="150" alt="image" src="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_thumb_5.png" width="150" align="left" /></a></font></strong>Alright, I’m dead tired of <a
href="http://www.google.com/search?q=android+flop&amp;sourceid=navclient-ff&amp;ie=UTF-8&amp;rlz=1B3GGGL_en___US269">all the posts</a> about how <a
href="http://www.android.com/">Google’s Android</a> is going to <strong>flop</strong> in 2009. I sincerely feel that people with that point of view have never experienced Google and open source, played with Android itself, or realized what exactly an open source phone OS means to developers, manufacturers, and consumers.</p><p>Android will become a platform of choice in the next couple of years as everyone starts to realize its limitless possibilities, the OS matures, thousands of new apps get written for it, and new Android phones flood the market. The only Android phone released so far, HTC’s G1, has already <a
href="http://reviews.cnet.com/smartphones/t-mobile-g1-black/4505-6452_7-33283585.html">received praise from consumers</a>, as well as my friends (even the females ones are excited. And yes, I have female friends).</p><p>Motorola <a
href="http://www.redherring.com/Home/25383">announced</a> a few months ago that its new phones are going to run Android and Windows Mobile exclusively. If a company with an R&amp;D department as big as Moto’s stands behind something, you bet your ass they’ve done they’re homework. And what’s not to like? They can now:</p><ul><li>take something that’s supported by the biggest Internet company in the world and the community, for free.</li><li>stop worrying about writing and maintaining their own OS – BAM, tons of money saved.</li><li>concentrate R&amp;D on the hardware.</li><li>if need be, freely develop the features they want that Android doesn’t support yet and contribute them back. Everyone wins, except maybe Symbian developers that don’t have a job anymore.</li></ul><p>Android is going to be a revolution. Apple and Android fighting it out will be the best thing that happened to us since the invention of sushi.</p><p><div
class="note"><div
class="notetip"><strong>Update:</strong> An <a
href="http://www.intomobile.com/2009/01/09/ces-2009-nimble-android-desktop-phone.html">Android desktop phone</a> was just released at CES. By end of 2009 we will be flooded with Androidness.</div></div></p><p>&#160;</p><p><strong><font
size="4">6. Open Source HDTVs</font></strong></p><p><a
href="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_11.png" class="lightview" rel="gallery['699']" title="image"><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="109" alt="image" src="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_thumb_8.png" width="150" align="left" /></a> The open source revolution will continue and start penetrating the HDTV market.</p><p>Personally, I think set top boxes are a waste of effort, time, and money but give me an HDTV that can run Youtube, Vimeo, LastFM, Pandora, and any other site through some sort of a plugin or browser, with a build in Media Center that connects to my computers and goes Wifi, that uses open source, upgradeable software (most likely Linux based), and I will buy it in a heartbeat.</p><p>Yes, what I’m saying is if my TV and HTPC did something dirty, I would totally dig their offspring, and so would millions of other people who don’t want/need/care/understand HTPC. TV in general holds a special place in my heart, and make it an even better experience, people.</p><p><div
class="note"><div
class="notetip"><strong>Update: </strong>In fact, Vizio just made <a
href="http://www.engadget.com/2009/01/07/vizio-takes-the-cover-off-connected-hdtv-netflix-blockbuster/">an announcement</a> at CES 2009 that their TVs will have built-in support for <a
href="http://www.engadgethd.com/2009/01/07/vizio-connected-hdtv-directly-streams-netflix-movies/">Netflix</a>, Blockbuster, Amazon, Yahoo, and more.</div></div></p><p>&#160;</p><p><strong><font
size="4">7. Twitter’s Popularity Will Explode</font></strong></p><p><a
href="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_10.png" class="lightview" rel="gallery['699']" title="image"><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="119" alt="image" src="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_thumb_7.png" width="150" align="left" /></a>Now for some social media. Twitter will continue dominating the microblogging arena, similar to YouTube dominating the video space. The site will grow extremely fast, much faster than now.</p><p>Competitors, like <a
href="http://plurk.com/ArtemR">plurk</a>, will probably secure certain small niches but nobody will be close to touch twitter.</p><p><div
class="note"><div
class="notetip">Twitter’s Google PageRank (PR) today is <strong>8</strong> out of <strong>10</strong>, which is considered very high.</p><p>It has the Alexa 3 month average rank of <strong>599</strong>, 1 week average of <strong>414</strong>, and 1 day average of <strong>351</strong>.</p><p><em>I predict that by the end of <strong>2009</strong>, Twitter will move into the <strong>top 50 </strong>Alexa.</em></div></div></p><p>Twitter’s significance in the business world for will be revolutionary. It will become second nature for every company to have one or many twitter accounts as means of connecting to consumers on a personal level. Think an opportunity for mini press releases, many of them, daily, not boring ones, the ones people are actually going to read.</p><p><div
class="note"><div
class="noteclassic">Twitter is already being used by some companies, like Comcast (<a
href="http://twitter.com/comcastcares">@comcastcares</a>), for monitoring and responding to customer comments.</div></div></p><p>&#160;</p><p><strong><font
size="4">8. Social Media Jobs Will Be In Increasing Demand</font></strong></p><p> <a
href="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_12.png" class="lightview" rel="gallery['699']" title="image"><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="115" alt="image" src="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_thumb_9.png" width="150" align="left" /></a> SEO, social marketing, and viral campaigns are very cost effective ways of brand promotion, and every company will want to jump on board.<p>As more and more of them realize this, they will start needing more people with marketing skills of <a
href="http://www.johnchow.com">John Chow</a>, <a
href="http://www.chrisbrogan.com/">Chris Brogan</a>, <a
href="http://www.nickycakes.com">Nicky Cakes</a> (this dude is hilarious), <a
href="http://www.shoemoney.com/">Jeremy Schoemaker</a>, and the like.</p><p>&#160;</p><p><strong><font
size="4">9. YouTube Will Continue To Dominate</font></strong></p><p><a
href="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_13.png" class="lightview" rel="gallery['699']" title="image"><img
title="image" style="display: inline; margin: 0px 20px 10px 0px" height="112" alt="image" src="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_thumb_10.png" width="150" align="left" /></a> This one is easy:</p><ul><li>Biggest user base.</li><li>HD. My favorite greasemonkey plugin <a
href="http://userscripts.org/scripts/show/13333">YousableTubeFix</a> exposes hi/lo FLVs, MP4, and HD MP4 options. Better quality equals better user experience.</li><li>Chromeless player. YouTube is the only company I know of that has a Javascript controlled chromeless player, which can be embedded in any other flash player. Combined with already existing millions of embeds all over the Internet, YouTube’s popularity isn’t going anywhere any time soon.</li><li>Google backed. Anything is possible when you Google owns you. Competition releases a good feature? YouTube has the resources to one-up it in no time. Need for more servers? YouTube will just buy a few thousand more with the $1.65Bln Google gave it. Traffic explosion? No problem &#8211; YouTube has been mooching off the Google CDN for months now.</li></ul><p>At the end of 2007, I predicted that in a year we will experience unprecedented HD quality online video. This prediction came true when <a
href="http://www.hulu.com">Hulu</a> and fueled by its success CBS, ABC, NBC, and pretty much every other TV network released their free online TV sites. YouTube <a
href="http://news.cnet.com/8301-1023_3-10126837-93.html">launched HD</a> a few months later.</p><p>So, my YouTube prediction for 2009 is it will sign deals with major TV and movie networks to finally start showing legal TV episodes and movies. It will become the biggest legal TV and movie hub on the Internet.</p><p>&#160;</p><p><strong><font
size="4">10. PostgreSQL Will Gain Popularity</font></strong></p><p><a
href="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_14.png" class="lightview" rel="gallery['699']" title="image"><img
title="image" style="display: inline; margin: 0px 20px 10px 0px" height="119" alt="image" src="http://beerpla.net/wp-content/uploads/TechIdeasPredictions_B3A8/image_thumb_11.png" width="150" align="left" /></a> Sun’s buyout of MySQL in 2008 surely sent some shockwaves around. However, I predict that the following factors will contribute to <a
href="http://www.postgresql.org/">PostgreSQL</a> gaining momentum:</p><ul><li>certain features of MySQL were moved to Enterprise only. Open source enthusiasts don’t appreciate an open source project going partially closed source, so they will be looking for alternative software, like PostgreSQL.</li><li>having spent years with MySQL, I am incredibly frustrated with certain quirks that should have been worked out a long time ago. As software architects look for stable, mature, cost effective, and easy to maintain databases, they will find PostgreSQL increasingly attractive.</li></ul><p>Don’t take my word for it. I highly suggest taking a look at <a
href="http://downloads.enterprisedb.com/whitepapers/PGvsMySQL_LowRes.pdf">this whitepaper comparing MySQL and PostgreSQL</a>. here are some highlights:</p><ul><li>Online operations and reorganization. This is my biggest beef with MySQL. Almost any ALTER table command will prevent writes to the table while it’s being altered. This operation requires double the table size because an ALTER simply makes a copy of the table, a rename, and then drop of the old one. This takes FOREVERRRR. PostgreSQL, on the other hand, supports <a
href="http://www.postgresql.org/docs/8.0/interactive/sql-altertable.html">a lot more</a> online operations that will not take down the table. MySQL promised to support <a
href="http://beerpla.net/2008/04/15/mysql-conference-liveblogging-the-future-of-mysql-tuesday-1155am-2/">online ALTER TABLE by 2009</a>. Will they keep their word? I highly doubt it.</li><li>PostgreSQL supports function based and partial indexes.</li><li>PostgreSQL supports nested triggers.</li><li>PostgreSQL supports user defined datatypes.</li><li>PostgreSQL has an IP address datatype (woot!).</li><li>MySQL’s default engine doesn’t support online backup and recovery (*cough*, MyISAM, *cough*). Don’t even get me started on MyISAM, which doesn’t support referential integrity, transactions, of any other ACID properties. Yes, I know, there&#039;s InnoDB. It’s a lot better. But it’s still not good enough.</li></ul><p>If you have spent time interfacing with both MySQL and PostgreSQL, I’d like to hear from you. Everyone I talked to so far who had used both, preferred PostgreSQL.</p><p>For all the MySQL fanboys, I was and still am one of you, I use MySQL every day. I’m only trying to open your eyes so you can see the rest of the world.</p><p><div
class="note"><div
class="noteclassic">Did you know PostgreSQL was a lot more mature than MySQL? Postgres <a
href="http://www.postgresql.org/about/history">was started in 1986</a> (or 1977 if you count its predecessor Ingres), while MySQL was initially released in 1995.</div></div></p><p>In fact, I think the only reason MySQL is so much more popular than Postgresql nowadays is luck and marketing by MySQL AB (hey, it sure paid off, I’m not saying anything).</p><p>So, here’s to PostgreSQL having a bright future.</p><p>&#160;</p></p></p><h2 align="center"><strong>Bonus</strong></h2><p>As a bonus, here is a collection of links to other interesting predictions for 2009:</p><ul><li><a
title="http://www.pr-squared.com/2008/12/social_media_predictions_2009.html" href="http://www.pr-squared.com/2008/12/social_media_predictions_2009.html">http://www.pr-squared.com/2008/12/social_media_predictions_2009.html</a> – a great list of social media predictions.</li><li><a
title="http://battellemedia.com/archives/004772.php" href="http://battellemedia.com/archives/004772.php">http://battellemedia.com/archives/004772.php</a> – 14 online predictions as well as analysis of past years’ predictions.</li><li><a
title="http://news.cnet.com/5-predictions-for-2009/" href="http://news.cnet.com/5-predictions-for-2009/">http://news.cnet.com/5-predictions-for-2009/</a> – 5 CNET Digital Home predictions.</li><li><a
title="http://www.engadget.com/2009/01/01/predictions-for-2009/" href="http://www.engadget.com/2009/01/01/predictions-for-2009/">http://www.engadget.com/2009/01/01/predictions-for-2009/</a> – Engadget’s predictions.</li><li><a
title="http://www.freedom-to-tinker.com/blog/felten/predictions-2009" href="http://www.freedom-to-tinker.com/blog/felten/predictions-2009">http://www.freedom-to-tinker.com/blog/felten/predictions-2009</a> – 38 predictions freedom and technology related predictions.</li><li><a
title="http://www.readwriteweb.com/archives/2009_predictions_across_the_we.php" href="http://www.readwriteweb.com/archives/2009_predictions_across_the_we.php">http://www.readwriteweb.com/archives/2009_predictions_across_the_we.php</a> – ReadWriteWeb’s predictions across the web.</li></ul><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=Artem%26rsquo%3Bs+Top+10+Tech+Predictions+And+Ideas+For+2009+And+Beyond&amp;link=http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/&amp;notes=%20%20%20%20Everyone%20and%20their%20mother%20are%20throwing%20out%20their%20predictions%20for%202009%20nowadays%2C%20it%E2%80%99s%20a%20new%20fad.%20It%E2%80%99s%20like%20you%E2%80%99re%20not%20cool%20anymore%20if%20you%20don%E2%80%99t%20have%20twitter%2C%20a%20Mac%2C%20and%20a%20set%20of%20random%20predictions%20for%20the%20next%2012%20joyous%20months.%20%20So%20I%20decided%20to%20throw%20in%20a%20few%20ideas%20of%20my%20own%20to%20be%20part%20of&amp;short_link=http://bit.ly/9Xlipo&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=Artem%26rsquo%3Bs+Top+10+Tech+Predictions+And+Ideas+For+2009+And+Beyond&amp;link=http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/&amp;notes=%20%20%20%20Everyone%20and%20their%20mother%20are%20throwing%20out%20their%20predictions%20for%202009%20nowadays%2C%20it%E2%80%99s%20a%20new%20fad.%20It%E2%80%99s%20like%20you%E2%80%99re%20not%20cool%20anymore%20if%20you%20don%E2%80%99t%20have%20twitter%2C%20a%20Mac%2C%20and%20a%20set%20of%20random%20predictions%20for%20the%20next%2012%20joyous%20months.%20%20So%20I%20decided%20to%20throw%20in%20a%20few%20ideas%20of%20my%20own%20to%20be%20part%20of&amp;short_link=http://bit.ly/9Xlipo&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=Artem%26rsquo%3Bs+Top+10+Tech+Predictions+And+Ideas+For+2009+And+Beyond&amp;link=http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/&amp;notes=%20%20%20%20Everyone%20and%20their%20mother%20are%20throwing%20out%20their%20predictions%20for%202009%20nowadays%2C%20it%E2%80%99s%20a%20new%20fad.%20It%E2%80%99s%20like%20you%E2%80%99re%20not%20cool%20anymore%20if%20you%20don%E2%80%99t%20have%20twitter%2C%20a%20Mac%2C%20and%20a%20set%20of%20random%20predictions%20for%20the%20next%2012%20joyous%20months.%20%20So%20I%20decided%20to%20throw%20in%20a%20few%20ideas%20of%20my%20own%20to%20be%20part%20of&amp;short_link=http://bit.ly/9Xlipo&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=Artem%26rsquo%3Bs+Top+10+Tech+Predictions+And+Ideas+For+2009+And+Beyond&amp;link=http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/&amp;notes=%20%20%20%20Everyone%20and%20their%20mother%20are%20throwing%20out%20their%20predictions%20for%202009%20nowadays%2C%20it%E2%80%99s%20a%20new%20fad.%20It%E2%80%99s%20like%20you%E2%80%99re%20not%20cool%20anymore%20if%20you%20don%E2%80%99t%20have%20twitter%2C%20a%20Mac%2C%20and%20a%20set%20of%20random%20predictions%20for%20the%20next%2012%20joyous%20months.%20%20So%20I%20decided%20to%20throw%20in%20a%20few%20ideas%20of%20my%20own%20to%20be%20part%20of&amp;short_link=http://bit.ly/9Xlipo&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=Artem%26rsquo%3Bs+Top+10+Tech+Predictions+And+Ideas+For+2009+And+Beyond&amp;link=http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/&amp;notes=%20%20%20%20Everyone%20and%20their%20mother%20are%20throwing%20out%20their%20predictions%20for%202009%20nowadays%2C%20it%E2%80%99s%20a%20new%20fad.%20It%E2%80%99s%20like%20you%E2%80%99re%20not%20cool%20anymore%20if%20you%20don%E2%80%99t%20have%20twitter%2C%20a%20Mac%2C%20and%20a%20set%20of%20random%20predictions%20for%20the%20next%2012%20joyous%20months.%20%20So%20I%20decided%20to%20throw%20in%20a%20few%20ideas%20of%20my%20own%20to%20be%20part%20of&amp;short_link=http://bit.ly/9Xlipo&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=Artem%26rsquo%3Bs+Top+10+Tech+Predictions+And+Ideas+For+2009+And+Beyond&amp;link=http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/&amp;notes=%20%20%20%20Everyone%20and%20their%20mother%20are%20throwing%20out%20their%20predictions%20for%202009%20nowadays%2C%20it%E2%80%99s%20a%20new%20fad.%20It%E2%80%99s%20like%20you%E2%80%99re%20not%20cool%20anymore%20if%20you%20don%E2%80%99t%20have%20twitter%2C%20a%20Mac%2C%20and%20a%20set%20of%20random%20predictions%20for%20the%20next%2012%20joyous%20months.%20%20So%20I%20decided%20to%20throw%20in%20a%20few%20ideas%20of%20my%20own%20to%20be%20part%20of&amp;short_link=http://bit.ly/9Xlipo&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=Artem%26rsquo%3Bs+Top+10+Tech+Predictions+And+Ideas+For+2009+And+Beyond&amp;link=http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/&amp;notes=%20%20%20%20Everyone%20and%20their%20mother%20are%20throwing%20out%20their%20predictions%20for%202009%20nowadays%2C%20it%E2%80%99s%20a%20new%20fad.%20It%E2%80%99s%20like%20you%E2%80%99re%20not%20cool%20anymore%20if%20you%20don%E2%80%99t%20have%20twitter%2C%20a%20Mac%2C%20and%20a%20set%20of%20random%20predictions%20for%20the%20next%2012%20joyous%20months.%20%20So%20I%20decided%20to%20throw%20in%20a%20few%20ideas%20of%20my%20own%20to%20be%20part%20of&amp;short_link=http://bit.ly/9Xlipo&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=Artem%26rsquo%3Bs%20Top%2010%20Tech%20Predictions%20And%20Ideas%20For%202009%20And%20Beyond&amp;link=http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/&amp;notes=%20%20%20%20Everyone%20and%20their%20mother%20are%20throwing%20out%20their%20predictions%20for%202009%20nowadays%2C%20it%E2%80%99s%20a%20new%20fad.%20It%E2%80%99s%20like%20you%E2%80%99re%20not%20cool%20anymore%20if%20you%20don%E2%80%99t%20have%20twitter%2C%20a%20Mac%2C%20and%20a%20set%20of%20random%20predictions%20for%20the%20next%2012%20joyous%20months.%20%20So%20I%20decided%20to%20throw%20in%20a%20few%20ideas%20of%20my%20own%20to%20be%20part%20of&amp;short_link=http://bit.ly/9Xlipo&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2009/09/03/htc-hero-coming-to-sprint-october-11th-179-99-powerful-and-sexy-here-is-why-you-need-to-own-it/" rel="bookmark" title="September 3, 2009">HTC Hero Coming To Sprint October 11th! $179.99, Powerful, And Sexy. Here Is Why You Need To Own It</a></li><li><a
href="http://beerpla.net/2008/04/21/sun-definitely-developing-a-phone/" rel="bookmark" title="April 21, 2008">Sun Definitely Developing A Phone This Year</a></li><li><a
href="http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/" rel="bookmark" title="April 9, 2009">The Real Reasons To Use Twitter (Get Over Your Prejudice Already)</a></li><li><a
href="http://beerpla.net/2010/01/18/wordpress-developers-how-do-you-make-a-living-poll-discussion/" rel="bookmark" title="January 18, 2010">WordPress Developers &#8211; How Do You Make A Living [Poll + Discussion]?</a></li><li><a
href="http://beerpla.net/2009/11/21/meet-firefox-for-mobile-video-feature-highlights-more-info/" rel="bookmark" title="November 21, 2009">Meet Firefox For Mobile [Video + Feature Highlights + More Info]</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2009%2F01%2F10%2Fartems-top-10-tech-predictions-and-ideas-for-2009-and-beyond%2F&amp;title=Artem%26rsquo%3Bs%20Top%2010%20Tech%20Predictions%20And%20Ideas%20For%202009%20And%20Beyond" id="wpa2a_16"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2009/01/10/artems-top-10-tech-predictions-and-ideas-for-2009-and-beyond/feed/</wfw:commentRss> <slash:comments>17</slash:comments> </item> <item><title>Top 10 Reasons Why Digsby ROCKS</title><link>http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/</link> <comments>http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/#comments</comments> <pubDate>Sat, 14 Jun 2008 19:42:42 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Awesomeness]]></category> <category><![CDATA[My Favorites]]></category> <category><![CDATA[Stuff]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Twitter]]></category> <category><![CDATA[AIM]]></category> <category><![CDATA[application]]></category> <category><![CDATA[chat]]></category> <category><![CDATA[client]]></category> <category><![CDATA[digsby]]></category> <category><![CDATA[email]]></category> <category><![CDATA[facebook]]></category> <category><![CDATA[google talk]]></category> <category><![CDATA[gtalk]]></category> <category><![CDATA[hotmail]]></category> <category><![CDATA[IM]]></category> <category><![CDATA[IMAP]]></category> <category><![CDATA[instant message]]></category> <category><![CDATA[linked in]]></category> <category><![CDATA[linkedin]]></category> <category><![CDATA[messenger]]></category> <category><![CDATA[MSN]]></category> <category><![CDATA[myspace]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[new]]></category> <category><![CDATA[POP]]></category> <category><![CDATA[twitter]]></category> <category><![CDATA[Yahoo]]></category> <guid
isPermaLink="false">http://beerpla.net/?p=354</guid> <description><![CDATA[<p>If you haven&#039;t heard of <a
href="http://kvors.com/click/?s=105057&#38;c=89568&#38;subid=digsby_10_reasons">Digsby</a> yet, you have probably been living in some kind of a virtual cave or have no friends. Digsby is a multi-network instant messenger application, similar to Trillian, Pidgin (GAIM), or Miranda. I said &#039;similar&#039;, so what makes Digsy special? Reviews I read so far don&#039;t give the real reasons and don&#039;t dive into the features in depth. Instead, you get a standard load of marketing BS and in the end to you, the user, Digsby may end up being &#34;yet another IM program.&#34; Some reviews describe certain features, but so far I haven&#039;t seen one that highlighted THE MAIN REASON why Digsby is different. And may I preface it with: finally somebody got a ...<div
class=clear></div> <a
href="http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<p>If you haven&#039;t heard of <a
href="http://kvors.com/click/?s=105057&amp;c=89568&amp;subid=digsby_10_reasons">Digsby</a> yet, you have probably been living in some kind of a virtual cave or have no friends. Digsby is a multi-network instant messenger application, similar to Trillian, Pidgin (GAIM), or Miranda. I said &#039;similar&#039;, so what makes Digsy special? Reviews I read so far don&#039;t give the real reasons and don&#039;t dive into the features in depth. Instead, you get a standard load of marketing BS and in the end to you, the user, Digsby may end up being &quot;yet another IM program.&quot; Some reviews describe certain features, but so far I haven&#039;t seen one that highlighted THE MAIN REASON why Digsby is different. And may I preface it with: finally somebody got a clue. I never before wanted to write about any other IM client, which already indicates that on the &quot;this is the most awesome meter ever&quot; meter, Digsby is floating somewhere at the top.</p><h3>The main reason to use Digsby</h3><p><strong><font
size="5">1.</font> </strong><a
href="http://kvors.com/click/?s=105057&amp;c=89568&amp;subid=digsby_10_reasons"><strong>Digsby</strong></a> <strong>saves all information, including IM names, groups, nicks, its own client settings, themes, etc (of course this excludes the password). If I&#039;m logged in from two places, Digsby shows both away messages (at least in the widget). It just god damn works. Remember Trillian or Pidgin? You make 10 groups on your home PC, stick 50 people in each, then go to your laptop at work and nothing is the same as it is at home! Digsby to the rescue.</strong></p><p
align="center"><a
href="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_3.png" class="lightview" rel="gallery['354']"><img
alt="image" src="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_thumb_3.png" width="206" height="417" /></a></p><p>Notice how I&#039;m logging into a Digsby account, which will be used to retrieve and sync all of my settings.</p><h3>Other reasons (everyone on Digg loves top 10 lists, right?)</h3><p><font
size="4">2.</font> Digsby seems to have great fast developers <em>really</em> <a
href="http://forum.digsby.com/index.php">in touch with the community</a>. Any time there is a problem, they push a message to all users that comes in a form of a Digsby announcement popup. They try to fix problems and usually do it fast. There are bugs here and there but they&#039;re nothing critical. If you tried Digsby a few months ago and didn&#039;t like it for some reason, I encourage you to give it another try &#8211; they really do develop fast. From revision numbers, it seems Digsby developers use SVN in the 15,000 revision number range (that sounds pretty active) &#8211; hooray! I can monitor how relatively active Digsby is by comparing this number from time to time. When was the last time Trillian released anything that wasn&#039;t a miniscule bug fix? <a
href="http://www.trillian.im/">Trillian Astra</a> reminds me of Perl 6 (ha ha, programmer joke).</p><p
align="center"><a
href="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_4.png" class="lightview" rel="gallery['354']"><img
alt="image" src="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_thumb_4.png" width="196" height="267" /></a></p><p><font
size="4">3.</font> For the first time ever I feel comfortable combining the same people that have multiple IM accounts into one entity (and renaming them whatever I want). I don&#039;t really care what IM pops up on their side as long as it reaches the destination. I can also arrange the IM accounts for that person in the order of IM preference, so if AIM is on top and MSN is on the bottom, Digsby will show the AIM icon next to their name, and if they&#039;re not on AIM, then MSN. You get the point. I can always pick which account to send from and to at any point during the conversation.</p><p
align="center"><a
href="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_5.png" class="lightview" rel="gallery['354']"><img
alt="image" src="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_thumb_5.png" width="311" height="407" /></a></p><p>Thaya, you&#039;re now popular (Sorry!). And a freak, with so many accounts. Do I give a crap which of his 7 accounts Thaya is logged into? That&#039;s right, I don&#039;t.</p><p><font
size="4">4.</font> Digsby supports Facebook chat just as if it were AIM or MSN (except people sign on and off a lot more often and you can&#039;t delete them from the list). It also supports Facebook, twitter, and MySpace (ugh) mini-feed-like updates straight to my desktop. In fact, I get to actually see every Facebook update, which is not the case with the mini-feed (it filters way too much). Additionally, I can set my current status without logging into facebook.com.</p><p
align="center"><a
href="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_7.png" class="lightview" rel="gallery['354']"><img
alt="image" src="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_thumb_6.png" width="613" height="425" /></a></p><p><font
size="4">5.</font> The Digsby widget, yeah, check it out on the right. There&#039;s no need for you to be logged into anything to send me a message. And the cool part is that all visitors show up right in my list the moment they enter the site and disappear the moment they leave, so I know how many people are online at any given time. Feel free to try it out. I already had a few interesting discussions with visitors who are complete strangers and I&#039;m loving it. You can even consider it a mini live tech support.</p><p
align="center"><a
href="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image.png" class="lightview" rel="gallery['354']"><img
alt="image" src="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_thumb.png" width="473" height="188" /></a></p><p><font
size="4">6.</font> I LOVE how you can customize where and which icons show up in your IM list. Online status, IM network, and a mini buddy icon, left, right, any combination. Such a fine grained seemingly small feature but a very nice touch.</p><p
align="center"><a
href="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_8.png" class="lightview" rel="gallery['354']"><img
alt="image" src="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_thumb_7.png" width="696" height="521" /></a></p><p><font
size="4">7.</font> Reply box in IM popups. I just type my short answer in there if I don&#039;t want to bother popping the main chat window back up. Now if only there was a keyboard shortcut to activate that little box (who wants to mouse any more?)&#8230;</p><p
align="center"><a
href="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_9.png" class="lightview" rel="gallery['354']"><img
alt="image" src="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_thumb_8.png" width="361" height="92" /></a></p><p><font
size="4">8.</font> The first client where updating my <a
href="http://www.winamp.com/">Winamp</a> status to all the networks actually works. Yes, others may have it too but so far everything I&#039;ve tried was buggy. For example, Google talk updates once, and then forgets about it. Digsby never forgets.</p><p
align="center">&#160;<a
href="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_10.png" class="lightview" rel="gallery['354']"><img
alt="image" src="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_thumb_9.png" width="183" height="504" /></a></p><p><font
size="4">9.</font> Skin support with many customizations. <a
title="http://digsbies.org/site/project/Skins" href="http://digsbies.org/site/project/Skins">http://digsbies.org/site/project/Skins</a> is a good place to start.</p><p
align="center"><a
href="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_11.png" class="lightview" rel="gallery['354']"><img
alt="image" src="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_thumb_10.png" width="698" height="522" /></a></p><p><font
size="4">10.</font> New email notifications support for Gmail, Hotmail, Yahoo, AOL, <strong>IMAP, and POP3</strong>. The last 2 are of special interest.</p><p
align="center"><a
href="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_12.png" class="lightview" rel="gallery['354']"><img
alt="image" src="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_thumb_11.png" width="307" height="75" /></a></p><h3>Now my wishlist</h3><p>Come on Digsby, you can do it!</p><ul><li>a Linux client. It&#039;s supposedly coming soon, but how soon? Windows is the only platform supported today.</li><li><strong>Edit:<em> </em>steve from digsby messaged me with this:<em> MSN reconnect bug is fixed and will be pushed in the next update.</em> </strong><strike>Reconnect doesn&#039;t always work when I get my network back or come back from sleep mode. Just make it work, Digsby. Especially bad is MSN, it just never wants to reconnect (but hey, that was my main complain with Trillian for the past 3 years). I see this a lot</strike>:</li></ul><p
align="center"><img
alt="image" src="http://beerpla.net/wp-content/uploads/645e819202d2_A3FA/image_6.png" width="234" height="201" /></p><ul><li>RSS feed integration, similar to how Facebook integration works. I want to read <a
href="http://www.planetmysql.org">planetmysql.org</a> posts as soon as they get there.</li><li>transparency. What&#039;s up with that? I want everyone to at least squint trying to read my messages behind my back. Ideally, a window would solidify when it gets focus and go transparent again when it loses it (put it all into settings, though, let me control it).</li><li>I can&#039;t italicize, bold, etc a word or a selection. It just does it to all the text I&#039;m typing. That should be common sense.</li><li><strong>Added 06/15/08</strong>: off the record mode + encrypted conversations would be really sweet.</li><li>sometimes the contact list changes don&#039;t sync fast enough, so if I close Digsby and reopen it, they won&#039;t be there. I&#039;d like to see a live save status, something that turns green once everything is synced.</li><li><strike>minimize to tray. I can already close to tray, but I want to minimize to it too &#8211; hey, I&#039;m used to it from AIM. Wanna fight about it?</strike> Fixed a long time ago.</li><li><strike>I&#039;d like to have a setting to not show Digsby in the task bar, like Trillian.</strike> There’s a setting for this already that I missed, it’s under ‘Buddy List’, thanks steve from digsby.</li><li>It&#039;s not always obvious inside the chat window when a friend goes offline, for instance for AIM. It&#039;s also not always obvious if you&#039;re IMing someone who is not available (there should be a warning back in response to an IM).</li><li>it&#039;s not clear if a person who IMed me is in my contact list. I&#039;d like to know that, as well as which group they belong to.</li><li>the close button that suddenly shows up on each tab when I hover is very annoying and sometimes I close IM windows by mistake.</li></ul><p>So <a
href="http://kvors.com/click/?s=105057&amp;c=89568&amp;subid=digsby_10_reasons">take Digsby out for a spin</a>, I guarantee you&#039;ll like at least something about it.</p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=Top+10+Reasons+Why+Digsby+ROCKS&amp;link=http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/&amp;notes=If%20you%20haven%27t%20heard%20of%20Digsby%20yet%2C%20you%20have%20probably%20been%20living%20in%20some%20kind%20of%20a%20virtual%20cave%20or%20have%20no%20friends.%20Digsby%20is%20a%20multi-network%20instant%20messenger%20application%2C%20similar%20to%20Trillian%2C%20Pidgin%20%28GAIM%29%2C%20or%20Miranda.%20I%20said%20%27similar%27%2C%20so%20what%20makes%20Digsy%20special%3F%20Reviews%20I%20read%20so%20far%20don%27t%20giv&amp;short_link=http://bit.ly/dq7Sjb&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=Top+10+Reasons+Why+Digsby+ROCKS&amp;link=http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/&amp;notes=If%20you%20haven%27t%20heard%20of%20Digsby%20yet%2C%20you%20have%20probably%20been%20living%20in%20some%20kind%20of%20a%20virtual%20cave%20or%20have%20no%20friends.%20Digsby%20is%20a%20multi-network%20instant%20messenger%20application%2C%20similar%20to%20Trillian%2C%20Pidgin%20%28GAIM%29%2C%20or%20Miranda.%20I%20said%20%27similar%27%2C%20so%20what%20makes%20Digsy%20special%3F%20Reviews%20I%20read%20so%20far%20don%27t%20giv&amp;short_link=http://bit.ly/dq7Sjb&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=Top+10+Reasons+Why+Digsby+ROCKS&amp;link=http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/&amp;notes=If%20you%20haven%27t%20heard%20of%20Digsby%20yet%2C%20you%20have%20probably%20been%20living%20in%20some%20kind%20of%20a%20virtual%20cave%20or%20have%20no%20friends.%20Digsby%20is%20a%20multi-network%20instant%20messenger%20application%2C%20similar%20to%20Trillian%2C%20Pidgin%20%28GAIM%29%2C%20or%20Miranda.%20I%20said%20%27similar%27%2C%20so%20what%20makes%20Digsy%20special%3F%20Reviews%20I%20read%20so%20far%20don%27t%20giv&amp;short_link=http://bit.ly/dq7Sjb&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=Top+10+Reasons+Why+Digsby+ROCKS&amp;link=http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/&amp;notes=If%20you%20haven%27t%20heard%20of%20Digsby%20yet%2C%20you%20have%20probably%20been%20living%20in%20some%20kind%20of%20a%20virtual%20cave%20or%20have%20no%20friends.%20Digsby%20is%20a%20multi-network%20instant%20messenger%20application%2C%20similar%20to%20Trillian%2C%20Pidgin%20%28GAIM%29%2C%20or%20Miranda.%20I%20said%20%27similar%27%2C%20so%20what%20makes%20Digsy%20special%3F%20Reviews%20I%20read%20so%20far%20don%27t%20giv&amp;short_link=http://bit.ly/dq7Sjb&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=Top+10+Reasons+Why+Digsby+ROCKS&amp;link=http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/&amp;notes=If%20you%20haven%27t%20heard%20of%20Digsby%20yet%2C%20you%20have%20probably%20been%20living%20in%20some%20kind%20of%20a%20virtual%20cave%20or%20have%20no%20friends.%20Digsby%20is%20a%20multi-network%20instant%20messenger%20application%2C%20similar%20to%20Trillian%2C%20Pidgin%20%28GAIM%29%2C%20or%20Miranda.%20I%20said%20%27similar%27%2C%20so%20what%20makes%20Digsy%20special%3F%20Reviews%20I%20read%20so%20far%20don%27t%20giv&amp;short_link=http://bit.ly/dq7Sjb&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=Top+10+Reasons+Why+Digsby+ROCKS&amp;link=http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/&amp;notes=If%20you%20haven%27t%20heard%20of%20Digsby%20yet%2C%20you%20have%20probably%20been%20living%20in%20some%20kind%20of%20a%20virtual%20cave%20or%20have%20no%20friends.%20Digsby%20is%20a%20multi-network%20instant%20messenger%20application%2C%20similar%20to%20Trillian%2C%20Pidgin%20%28GAIM%29%2C%20or%20Miranda.%20I%20said%20%27similar%27%2C%20so%20what%20makes%20Digsy%20special%3F%20Reviews%20I%20read%20so%20far%20don%27t%20giv&amp;short_link=http://bit.ly/dq7Sjb&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=Top+10+Reasons+Why+Digsby+ROCKS&amp;link=http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/&amp;notes=If%20you%20haven%27t%20heard%20of%20Digsby%20yet%2C%20you%20have%20probably%20been%20living%20in%20some%20kind%20of%20a%20virtual%20cave%20or%20have%20no%20friends.%20Digsby%20is%20a%20multi-network%20instant%20messenger%20application%2C%20similar%20to%20Trillian%2C%20Pidgin%20%28GAIM%29%2C%20or%20Miranda.%20I%20said%20%27similar%27%2C%20so%20what%20makes%20Digsy%20special%3F%20Reviews%20I%20read%20so%20far%20don%27t%20giv&amp;short_link=http://bit.ly/dq7Sjb&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=Top%2010%20Reasons%20Why%20Digsby%20ROCKS&amp;link=http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/&amp;notes=If%20you%20haven%27t%20heard%20of%20Digsby%20yet%2C%20you%20have%20probably%20been%20living%20in%20some%20kind%20of%20a%20virtual%20cave%20or%20have%20no%20friends.%20Digsby%20is%20a%20multi-network%20instant%20messenger%20application%2C%20similar%20to%20Trillian%2C%20Pidgin%20%28GAIM%29%2C%20or%20Miranda.%20I%20said%20%27similar%27%2C%20so%20what%20makes%20Digsy%20special%3F%20Reviews%20I%20read%20so%20far%20don%27t%20giv&amp;short_link=http://bit.ly/dq7Sjb&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2009/07/14/how-to-fix-palm-pres-error-sending-mail-problem-7/" rel="bookmark" title="July 14, 2009">How To Fix Palm Pre&#039;s &quot;Error Sending Mail&quot; Problem</a></li><li><a
href="http://beerpla.net/2011/06/13/goodbye-outlook-i-dont-need-you-anymore-gmail-now-lets-you-paste-images-directly-from-clipboard/" rel="bookmark" title="June 13, 2011">[Updated x3] Goodbye Outlook, I Don&#039;t Need You Anymore &#8211; Gmail Now Lets You Paste Images Directly From Clipboard</a></li><li><a
href="http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/" rel="bookmark" title="April 9, 2009">The Real Reasons To Use Twitter (Get Over Your Prejudice Already)</a></li><li><a
href="http://beerpla.net/2009/11/26/how-i-doubled-my-android-phones-htc-hero-battery-life-or-just-how-much-email-polling-affects-your-battery/" rel="bookmark" title="November 26, 2009">How I Doubled My Android Phone&#039;s (HTC Hero) Battery Life or Just How Much Email Polling Affects Your Battery</a></li><li><a
href="http://beerpla.net/2009/11/18/sprint-and-htc-release-the-first-htc-hero-firmware-update-1-56-fixes-major-bugs-adds-small-tweaks/" rel="bookmark" title="November 18, 2009">Sprint And HTC Release The First HTC Hero Firmware Update 1.56: Fixes Major Bugs, Adds Small Tweaks</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2008%2F06%2F14%2Ftop-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now%2F&amp;title=Top%2010%20Reasons%20Why%20Digsby%20ROCKS" id="wpa2a_18"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2008/06/14/top-10-reasons-why-digsby-rocks-or-why-you-should-try-digsby-right-now/feed/</wfw:commentRss> <slash:comments>17</slash:comments> </item> </channel> </rss>
