<?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>TweetHacking.com - Twitter Hacks &#187; Twitter Apps</title>
	<atom:link href="http://tweethacking.com/category/twitter-apps/feed/" rel="self" type="application/rss+xml" />
	<link>http://tweethacking.com</link>
	<description>Twitter Hacks</description>
	<lastBuildDate>Thu, 17 Jun 2010 14:15:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Your Complete HOWTO Guide to Twitter API using PHP and Javascript/AJAX!</title>
		<link>http://tweethacking.com/twitter-hacks/your-complete-howto-guide-to-twitter-api-using-php-and-javascriptajax/</link>
		<comments>http://tweethacking.com/twitter-hacks/your-complete-howto-guide-to-twitter-api-using-php-and-javascriptajax/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 23:05:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Twitter Apps]]></category>
		<category><![CDATA[Twitter Hacks]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[complete]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[twitter api]]></category>

		<guid isPermaLink="false">http://tweethacking.com/?p=178</guid>
		<description><![CDATA[Recently, I&#8217;ve been developing a new Twitter app site and found some great resources on Twitter API.  Believe me, this isn&#8217;t my first Twitter app ever so I have some experience dealing with Twitter API.
I&#8217;ve begun to realize more and more that there&#8217;s a lot of great Twitter API resources out there but none are [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I&#8217;ve been developing a new Twitter app site and found some great resources on Twitter API.  Believe me, this isn&#8217;t my first Twitter app ever so I have some experience dealing with Twitter API.</p>
<p>I&#8217;ve begun to realize more and more that there&#8217;s a lot of great Twitter API resources out there but none are so &#8220;complete&#8221; for PHP/AJAX programmers out there.  It&#8217;s basically a big maze out there for someone who&#8217;s just testing out the Twitter API waters but let me give you some great sites and tips on how to get started with Twitter API using PHP and/or javascript/AJAX.</p>
<p>First off, you will want to start learning how to use the Twitter API via curl.  <a href="http://en.wikipedia.org/wiki/CURL">Curl</a> is basically a linux/PHP command that allows you to retrieve other web pages to the web server.  This would be way your web server actually communicates with Twitter API.</p>
<p>Simply put it, your web server ask for a webpage such as <strong>http://twitter.com/user/statuses</strong> and would get back some of of user statuses in the format of XML and JSON. (Btw, the webpage URL is just made up in this example.)</p>
<p><a href="http://en.wikipedia.org/wiki/XML">XML</a> and <a href="http://en.wikipedia.org/wiki/JSON">JSON</a> are simply how data are formatted so you can easily access it.  I have used both XML and JSON for receiving data and I would have to say to learn both but use JSON if you can as it&#8217;s faster.  (Plus Twitter team also recommends JSON over XML)</p>
<p>So the very first thing I want you to do (if you don&#8217;t know how already), is to learn how to use the Twitter API via Curl.  Try <a href="http://morethanseven.net/2007/01/20/posting-to-twitter-using-php/">this guide on MoreThanSeven.Net</a>.  It should only take you 15-30 minutes to try out the code and get somewhat familiar with how simply Twitter API is and how it works.</p>
<p><strong>Of course, don&#8217;t forget, you need &#8220;Curl&#8221; installed on your web server. </strong> From linux command line, simply do &#8220;yum install curl&#8221; for Fedora/CentOS and probably &#8220;sudo apt-get install curl&#8221; on Ubuntu/Debian.</p>
<p>Once you have mastered that Curl API method, you will want to learn about &#8220;caching&#8221;.  If you don&#8217;t &#8220;cache&#8221; your API requests, you will eventually run out of API requests very quickly and your Twitter app will come to a screeching halt.  You don&#8217;t want that so let&#8217;s learn to &#8220;cache&#8221; the API requests itself.  <a href="http://mark.koli.ch/2009/03/using-the-twitter-api-cache-your-tweets-in-php.html">Mark Kolich has a great guide Twitter Caching which comes with some of the basic API request functions</a>.  Somewhat different from the previous Curl guide but this will help you get some ideas on how to &#8220;cache&#8221; your API requests.</p>
<p>AND/OR you can setup a file caching system that will cache every PHP file in your web server.  This way, if a webpage gets more than 1 hit, it will load super-fast.   You can follow the <a href="http://zedomax.com/blog/2009/01/04/php-diy-how-to-add-caching-to-any-website/">PHP File Caching guide here</a>.  Also note that <em><strong>you can actually include the files cache.php and endcache.php on the header and footer of your file to cache</strong></em> if you don&#8217;t feel like using .htaccess or use non-Apache servers Nginx or Lighttpd like I do.</p>
<p>I am sure after trying all of the above, you will come up with a method to cache all your web pages efficiently as possible.  (This will save you a ton of money on servers if your Twitter app site gets HUGE.)</p>
<p>Another way you can also optimize your server for heavy traffic is to install Lighttpd or Nginx.  See <a href="http://webserverhacks.com/performance-tests/how-to-run-lighttpd-with-wordpress-on-plesk/">how to install Lighttpd here</a> and <a href="http://webserverhacks.com/web-server-hacks/how-to-install-nginx-on-a-wordpress-blog/">how to install Nginx here</a>.</p>
<p>Now you got the basics out of the way,  you will want to learn how to authenticate Twitter users using the OAuth Twitter API.  This is simply a method for authenticating your Twitter users without them typing in their Twitter username/password into your site.  Plus, by using OAuth, you have to benefits of adding &#8220;from MyTwitterAppSite.com&#8221; instead of the default &#8220;from web&#8221; or &#8220;from API&#8221; under tweet signatures.</p>
<p>I&#8217;ve tried a bunch of OAuth guides out there and the best one (that actually worked) is <a href="http://github.com/jmathai/twitter-async">Twitter-Async by Jaisen Mathai</a>.  Btw, don&#8217;t download the source code using the zipped file, download the &#8220;latest&#8221; files under source.  (Or copy and paste every file like I did)  The zipped file comes with older files that don&#8217;t work.</p>
<p>Also, there&#8217;s a PHP 5.2 requirement for Twitter Async.  If you are running PHP 5.1.6 or below, you might want to upgrade before trying.  Btw, PHP 5.2 runs JSON natively and runs like 20 times faster than PHP 5.1.6 so you have every reason to upgrade to PHP 5.2.  If you are running on CentOS, try <a href="http://webserverhacks.com/web-server-hacks/centos-hack-how-to-upgrade-from-php-5-1-6-to-5-2/">my guide on how to upgrade PHP 5.1.6 to 5.2 here</a>.</p>
<p>To check your PHP version, do &#8220;php -v&#8221; at linux command line.</p>
<p>Also, another note on OAuth in general.  You need to set your web server time correctly otherwise Twitter OAuth won&#8217;t communicate with you.  <strong>Make sure your web server has correct date and time!</strong> (I spent about 10 hours trying to figure out why I kept getting failed authentications and my web server time was too fast by 2 hours.)</p>
<p>Twitter-Async also comes with dynamic way of calling API plus ability to send API calls in &#8220;parallel&#8221; or asynchronously.  (This means you can do 5 API calls in 1 API call time, much faster than doing one by one.)  One thing that&#8217;s missing from the API is caching and I think it shouldn&#8217;t be too hard to hack one in.</p>
<p>My advice is to use the OAuth code separately only for logged in users and use simpler &#8220;cached&#8221; Curl library (I use the Mark Kolich&#8217;s Twitter Cacher code for non-users) for visitors that are not logged in.</p>
<p>One more thing, <strong>make sure you call for authorization tokens on OAuth in real-time using javascript</strong>, otherwise you will be requesting tokens from Twitter OAuth on every page load.  (and sometimes that will slow down your whole site.  Instead use something like onClick=&#8221;getTokens()&#8221;)</p>
<p>Whatever the case, you will want to learn the basic of Twitter API I have outlined here and practice it.  Once you get the hang of it, make a good plan of how you will make your overall Twitter app site.</p>
<p>Good luck and I have just provided you with some of the best Twitter API guides/tips so you got nothing to lose!  Feel free to ask me any questions on the comments line.</p>
<p><strong>Extras</strong></p>
<p>I find that you will need to use a lot of Javascript Regex to process twitter tweets and whatnot, here&#8217;s some good guides for that.</p>
<p><a href="http://www.webreference.com/js/column5/backreferences.html">Javascript Regex</a> &#8211; This could work well for matching/replacing strings.  SitePoint also has a great guide on <a href="http://articles.sitepoint.com/print/expressions-javascript">Javascript Regex</a></p>

	Tags: <a href="http://tweethacking.com/tag/ajax/" title="ajax" rel="tag">ajax</a>, <a href="http://tweethacking.com/tag/complete/" title="complete" rel="tag">complete</a>, <a href="http://tweethacking.com/tag/guide/" title="guide" rel="tag">guide</a>, <a href="http://tweethacking.com/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://tweethacking.com/tag/javascript/" title="javascript" rel="tag">javascript</a>, <a href="http://tweethacking.com/tag/php/" title="php" rel="tag">php</a>, <a href="http://tweethacking.com/tag/twitter-api/" title="twitter api" rel="tag">twitter api</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://tweethacking.com/twitter-hacks/how-to-make-a-twitter-webcam-security-system/" title="How to Make a Twitter Webcam Security System! (January 3, 2010)">How to Make a Twitter Webcam Security System!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-apps/how-to-back-up-your-tweets-on-google-calendar/" title="How to Back Up Your Tweets on Google Calendar! (December 6, 2009)">How to Back Up Your Tweets on Google Calendar!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/blog-diy-how-to-add-hashtags-to-your-blog-rss-feed-tweets/" title="Blog DIY &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets! (March 1, 2010)">Blog DIY &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets!</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://tweethacking.com/twitter-hacks/your-complete-howto-guide-to-twitter-api-using-php-and-javascriptajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Back Up Your Tweets on Google Calendar!</title>
		<link>http://tweethacking.com/twitter-apps/how-to-back-up-your-tweets-on-google-calendar/</link>
		<comments>http://tweethacking.com/twitter-apps/how-to-back-up-your-tweets-on-google-calendar/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 02:15:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Twitter Apps]]></category>
		<category><![CDATA[Twitter News]]></category>
		<category><![CDATA[back up]]></category>
		<category><![CDATA[google calendar]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://tweethacking.com/?p=168</guid>
		<description><![CDATA[Twistory, is a new Twitter-app site that lets you back-up your valuable tweets on Google Calendar through Google API.  It&#8217;s simple to use and all you have to do is enter your Twitter username to get started.  Of course, if you use your Google Calendar for other purposes, we suggest you to make a new [...]]]></description>
			<content:encoded><![CDATA[<p>Twistory, is a new Twitter-app site that lets you back-up your valuable tweets on Google Calendar through Google API.  It&#8217;s simple to use and all you have to do is enter your Twitter username to get started.  Of course, if you use your Google Calendar for other purposes, we suggest you to make a new Twitter-backup account for Google Calendar so it stays separate.</p>
<p>I find this the best way to back-up your tweets since Twitter itself doesn&#8217;t offer any kind of backups.</p>
<p>Best of all, it&#8217;s free so you can lose!</p>
<p><a href="http://www.twistory.net/">Try out Twistory here</a></p>

	Tags: <a href="http://tweethacking.com/tag/back-up/" title="back up" rel="tag">back up</a>, <a href="http://tweethacking.com/tag/google-calendar/" title="google calendar" rel="tag">google calendar</a>, <a href="http://tweethacking.com/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://tweethacking.com/tag/tweets/" title="tweets" rel="tag">tweets</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://tweethacking.com/twitter-hacks/blog-diy-how-to-add-hashtags-to-your-blog-rss-feed-tweets/" title="Blog DIY &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets! (March 1, 2010)">Blog DIY &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets!</a> (1)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/your-complete-howto-guide-to-twitter-api-using-php-and-javascriptajax/" title="Your Complete HOWTO Guide to Twitter API using PHP and Javascript/AJAX! (January 26, 2010)">Your Complete HOWTO Guide to Twitter API using PHP and Javascript/AJAX!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-office-chair-fart-detector-tweets/" title="Twitter Hack &#8211; Office Chair Fart Detector Tweets! (April 26, 2009)">Twitter Hack &#8211; Office Chair Fart Detector Tweets!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-how-to-make-a-twitter-typewriter/" title="Twitter Hack &#8211; How to Make a Twitter TypeWriter! (June 23, 2009)">Twitter Hack &#8211; How to Make a Twitter TypeWriter!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/how-to-make-a-twitter-webcam-security-system/" title="How to Make a Twitter Webcam Security System! (January 3, 2010)">How to Make a Twitter Webcam Security System!</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://tweethacking.com/twitter-apps/how-to-back-up-your-tweets-on-google-calendar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Hack &#8211; Twitter Watches Notifies you of Trending Topics!</title>
		<link>http://tweethacking.com/twitter-hacks/twitter-hack-twitter-watches-notifies-you-of-trending-topics/</link>
		<comments>http://tweethacking.com/twitter-hacks/twitter-hack-twitter-watches-notifies-you-of-trending-topics/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 20:45:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Twitter Gadgets]]></category>
		<category><![CDATA[Twitter Hacks]]></category>
		<category><![CDATA[Twitter Trends]]></category>
		<category><![CDATA[trending topics]]></category>
		<category><![CDATA[twatch]]></category>
		<category><![CDATA[twitter hack]]></category>
		<category><![CDATA[twitter watches]]></category>

		<guid isPermaLink="false">http://tweethacking.com/?p=161</guid>
		<description><![CDATA[For those of you twitter addicts out there who need to know what&#8217;s trending on Twitter, there&#8217;s a cool Twitter Hack that will update the latest trending topics on a small LCD screen.  This isn&#8217;t that hard to implement it looks like, check it out here.
The #twatch connects directly to Twitter and scrolls the latest [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you twitter addicts out there who need to know what&#8217;s trending on Twitter, there&#8217;s a cool Twitter Hack that will update the latest trending topics on a small LCD screen.  This isn&#8217;t that hard to implement it looks like, <a href="http://www.instructables.com/id/Twitter-Watcher-the-twatch/">check it out here</a>.</p>
<blockquote><p>The #twatch connects directly to Twitter and scrolls the latest trending topics and related tweets on an LCD screen. It&#8217;s a stand-alone network appliance that stays updated without a PC. It was awesome to watch #iranelection, Michael Jackson, and other historic events scroll by while we developed the #twatch.</p></blockquote>
<p><img class="alignnone size-full wp-image-162" title="twitter hac" src="http://tweethacking.com/wp-content/uploads/2009/09/twitter-hac.jpg" alt="twitter hac" width="450" height="294" /></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/2xm7Vo3xU3Q&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/2xm7Vo3xU3Q&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>

	Tags: <a href="http://tweethacking.com/tag/trending-topics/" title="trending topics" rel="tag">trending topics</a>, <a href="http://tweethacking.com/tag/twatch/" title="twatch" rel="tag">twatch</a>, <a href="http://tweethacking.com/tag/twitter-hack/" title="twitter hack" rel="tag">twitter hack</a>, <a href="http://tweethacking.com/tag/twitter-watches/" title="twitter watches" rel="tag">twitter watches</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-twitter-controlled-christmas-tree/" title="Twitter Hack &#8211; Twitter Controlled Christmas Tree! (December 22, 2009)">Twitter Hack &#8211; Twitter Controlled Christmas Tree!</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://tweethacking.com/twitter-hacks/twitter-hack-twitter-watches-notifies-you-of-trending-topics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter #hashtags Trend Tracking &#8211; #hashtags!</title>
		<link>http://tweethacking.com/twitter-apps/twitter-hashtags-trend-tracking-hashtags/</link>
		<comments>http://tweethacking.com/twitter-apps/twitter-hashtags-trend-tracking-hashtags/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 19:20:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Twitter Apps]]></category>
		<category><![CDATA[Twitter Trends]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[pound symbol]]></category>
		<category><![CDATA[twitters]]></category>

		<guid isPermaLink="false">http://tweethacking.com/?p=96</guid>
		<description><![CDATA[#hashtags is another cool Twitter Trend tracking app that lets you track and graph your favorite hashtags. (Hashtags are any words that begin with the pound(#) symbol)
This would be very useful for tracking which hashtags Twitters have been using the most in the last month or so.
You can also subscribe to your favorite hashtag trends [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://hashtags.org/">#hashtags</a> is another cool Twitter Trend tracking app that lets you track and graph your favorite hashtags. (Hashtags are any words that begin with the pound(#) symbol)</p>
<p>This would be very useful for tracking which hashtags Twitters have been using the most in the last month or so.</p>
<p>You can also subscribe to your favorite hashtag trends via RSS, another cool feature for tracking your online brand.</p>
<p><img class="alignnone size-full wp-image-97" title="hashtags" src="http://tweethacking.com/wp-content/uploads/2009/04/hashtags.jpg" alt="hashtags" width="500" height="376" /></p>

	Tags: <a href="http://tweethacking.com/tag/graph/" title="graph" rel="tag">graph</a>, <a href="http://tweethacking.com/tag/pound-symbol/" title="pound symbol" rel="tag">pound symbol</a>, <a href="http://tweethacking.com/tag/twitters/" title="twitters" rel="tag">twitters</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-how-to-make-your-twitter-profile-image-stand-out-using-diamond-shaped-faces/" title="Twitter Hack &#8211; How to Make Your Twitter Profile Image Stand Out Using Diamond-Shaped Faces! (April 26, 2009)">Twitter Hack &#8211; How to Make Your Twitter Profile Image Stand Out Using Diamond-Shaped Faces!</a> (1)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-how-to-deal-with-twitter-spammers/" title="Twitter Hack &#8211; How to Deal with Twitter Spammers! (April 7, 2009)">Twitter Hack &#8211; How to Deal with Twitter Spammers!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-apps/geo-location-twitter-trend-tracking-monitter/" title="Geo-Location Twitter Trend Tracking &#8211; Monitter! (April 25, 2009)">Geo-Location Twitter Trend Tracking &#8211; Monitter!</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://tweethacking.com/twitter-apps/twitter-hashtags-trend-tracking-hashtags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geo-Location Twitter Trend Tracking &#8211; Monitter!</title>
		<link>http://tweethacking.com/twitter-apps/geo-location-twitter-trend-tracking-monitter/</link>
		<comments>http://tweethacking.com/twitter-apps/geo-location-twitter-trend-tracking-monitter/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 19:11:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Twitter Apps]]></category>
		<category><![CDATA[Twitter News]]></category>
		<category><![CDATA[Twitter Trends]]></category>
		<category><![CDATA[plumber]]></category>
		<category><![CDATA[plumbers]]></category>
		<category><![CDATA[twitters]]></category>

		<guid isPermaLink="false">http://tweethacking.com/?p=93</guid>
		<description><![CDATA[
Monitter is another really cool Twitter Trend tracking tool that lets you only track a specified location such as 10 miles within San Francisco.
I find this very helpful in finding other new Twitters that might live close to me.
For example, if I am a local plumber, I might want to utilize this tool to network [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-94 aligncenter" title="monitter" src="http://tweethacking.com/wp-content/uploads/2009/04/monitter.jpg" alt="monitter" width="500" height="258" /></p>
<p><a href="http://monitter.com/">Monitter</a> is another really cool Twitter Trend tracking tool that lets you only track a specified location such as 10 miles within San Francisco.</p>
<p>I find this very helpful in finding other new Twitters that might live close to me.</p>
<p>For example, if I am a local plumber, I might want to utilize this tool to network with all the plumbers within 25 mile range of San Francisco.</p>

	Tags: <a href="http://tweethacking.com/tag/plumber/" title="plumber" rel="tag">plumber</a>, <a href="http://tweethacking.com/tag/plumbers/" title="plumbers" rel="tag">plumbers</a>, <a href="http://tweethacking.com/tag/twitters/" title="twitters" rel="tag">twitters</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-how-to-make-your-twitter-profile-image-stand-out-using-diamond-shaped-faces/" title="Twitter Hack &#8211; How to Make Your Twitter Profile Image Stand Out Using Diamond-Shaped Faces! (April 26, 2009)">Twitter Hack &#8211; How to Make Your Twitter Profile Image Stand Out Using Diamond-Shaped Faces!</a> (1)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-how-to-deal-with-twitter-spammers/" title="Twitter Hack &#8211; How to Deal with Twitter Spammers! (April 7, 2009)">Twitter Hack &#8211; How to Deal with Twitter Spammers!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-apps/twitter-hashtags-trend-tracking-hashtags/" title="Twitter #hashtags Trend Tracking &#8211; #hashtags! (April 25, 2009)">Twitter #hashtags Trend Tracking &#8211; #hashtags!</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://tweethacking.com/twitter-apps/geo-location-twitter-trend-tracking-monitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Long Term Twitter Trend Tracking &#8211; Twopular!</title>
		<link>http://tweethacking.com/twitter-apps/long-term-twitter-trend-tracking-twopular/</link>
		<comments>http://tweethacking.com/twitter-apps/long-term-twitter-trend-tracking-twopular/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 19:05:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Twitter Apps]]></category>
		<category><![CDATA[Twitter News]]></category>
		<category><![CDATA[Twitter Trends]]></category>
		<category><![CDATA[earth]]></category>
		<category><![CDATA[elephant]]></category>
		<category><![CDATA[oprah]]></category>
		<category><![CDATA[trendsetter]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wave project]]></category>

		<guid isPermaLink="false">http://tweethacking.com/?p=89</guid>
		<description><![CDATA[Twopular is another cool Twitter Trend tracking site that let&#8217;s you see which terms have been popular on Twitter in the last 2 hours, 8 hours, 24 hours, week, month, and total-ever.  I find Twopular very helpful in analyzing what has happened in the past.  For example, in the last 30 days, we can see [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://twopular.com/">Twopular</a> is another cool Twitter Trend tracking site that let&#8217;s you see which terms have been popular on Twitter in the last 2 hours, 8 hours, 24 hours, week, month, and total-ever.  I find Twopular very helpful in analyzing what has happened in the past.  For example, in the last 30 days, we can see that Easter, Earth Hour, and Oprah were pretty darn popular.</p>
<blockquote><p>Twopular started as a pure &#8220;let&#8217;s surf a bit on the twitter wave&#8221; project. And actually, this status hasn&#8217;t really changed yet and I am still not sure what&#8217;s the real use of it. Maybe its all about amusing people by listing them as top trendsetter &#8211; not too bad. In any case for now I will keep the elephant running, hope he makes some friends out there and he will let me know one day where he wants to go.</p></blockquote>
<p><img class="alignnone size-full wp-image-90" title="twopoular" src="http://tweethacking.com/wp-content/uploads/2009/04/twopoular.jpg" alt="twopoular" width="500" height="300" /></p>

	Tags: <a href="http://tweethacking.com/tag/earth/" title="earth" rel="tag">earth</a>, <a href="http://tweethacking.com/tag/elephant/" title="elephant" rel="tag">elephant</a>, <a href="http://tweethacking.com/tag/oprah/" title="oprah" rel="tag">oprah</a>, <a href="http://tweethacking.com/tag/trendsetter/" title="trendsetter" rel="tag">trendsetter</a>, <a href="http://tweethacking.com/tag/twitter/" title="twitter" rel="tag">twitter</a>, <a href="http://tweethacking.com/tag/wave-project/" title="wave project" rel="tag">wave project</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://tweethacking.com/twitter-apps/twitter-trend-tracking-twist/" title="Twitter Trend Tracking &#8211; Twist (April 25, 2009)">Twitter Trend Tracking &#8211; Twist</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-news/twitter-surpasses-digg-stumbleupon-and-new-york-times/" title="Twitter Surpasses Digg, Stumbleupon, and New York Times! (April 7, 2009)">Twitter Surpasses Digg, Stumbleupon, and New York Times!</a> (1)</li>
	<li><a href="http://tweethacking.com/twitter-news/twitter-soars-past-14-million-users/" title="Twitter Soars Past 14 Million Users! (April 7, 2009)">Twitter Soars Past 14 Million Users!</a> (2)</li>
	<li><a href="http://tweethacking.com/twitter-apps/twitter-iphone-app-tweetstack/" title="Twitter iPhone App &#8211; TweetStack! (April 11, 2009)">Twitter iPhone App &#8211; TweetStack!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-twitter-popcorn-robot/" title="Twitter Hack &#8211; Twitter Popcorn Robot! (April 10, 2009)">Twitter Hack &#8211; Twitter Popcorn Robot!</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://tweethacking.com/twitter-apps/long-term-twitter-trend-tracking-twopular/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Trend Tracking &#8211; Twist</title>
		<link>http://tweethacking.com/twitter-apps/twitter-trend-tracking-twist/</link>
		<comments>http://tweethacking.com/twitter-apps/twitter-trend-tracking-twist/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 19:00:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Twitter Apps]]></category>
		<category><![CDATA[Twitter News]]></category>
		<category><![CDATA[Twitter Trends]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[holidays]]></category>
		<category><![CDATA[internet marketing]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://tweethacking.com/?p=85</guid>
		<description><![CDATA[Twist is another great app for tracking Twitter trends via friendly graphs that will sorta tell you when Twitters are twittering about a certain topic the most during a period of 7 days or 30 days.
I personally found that Twist is great for tracking &#8220;major&#8221; Twitter trends, it&#8217;s not too helpful if you run a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://twist.flaptor.com/?tz=-7">Twist</a> is another great app for tracking Twitter trends via friendly graphs that will sorta tell you when Twitters are twittering about a certain topic the most during a period of 7 days or 30 days.</p>
<p>I personally found that Twist is great for tracking &#8220;major&#8221; Twitter trends, it&#8217;s not too helpful if you run a small-business or you need detailed graphs on your niche brand.</p>
<p>This is a great way to predict which Twitter trends will become popular in the next week so I think it will be very useful especially on holidays when people might tend to buy stuff for their loved ones. (Internet Marketing tip)</p>
<p><img class="alignnone size-full wp-image-86" title="twist" src="http://tweethacking.com/wp-content/uploads/2009/04/twist.jpg" alt="twist" width="500" height="320" /></p>

	Tags: <a href="http://tweethacking.com/tag/graphs/" title="graphs" rel="tag">graphs</a>, <a href="http://tweethacking.com/tag/holidays/" title="holidays" rel="tag">holidays</a>, <a href="http://tweethacking.com/tag/internet-marketing/" title="internet marketing" rel="tag">internet marketing</a>, <a href="http://tweethacking.com/tag/small-business/" title="small business" rel="tag">small business</a>, <a href="http://tweethacking.com/tag/twitter/" title="twitter" rel="tag">twitter</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://tweethacking.com/twitter-news/twitter-surpasses-digg-stumbleupon-and-new-york-times/" title="Twitter Surpasses Digg, Stumbleupon, and New York Times! (April 7, 2009)">Twitter Surpasses Digg, Stumbleupon, and New York Times!</a> (1)</li>
	<li><a href="http://tweethacking.com/twitter-news/twitter-soars-past-14-million-users/" title="Twitter Soars Past 14 Million Users! (April 7, 2009)">Twitter Soars Past 14 Million Users!</a> (2)</li>
	<li><a href="http://tweethacking.com/twitter-apps/twitter-iphone-app-tweetstack/" title="Twitter iPhone App &#8211; TweetStack! (April 11, 2009)">Twitter iPhone App &#8211; TweetStack!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-twitter-popcorn-robot/" title="Twitter Hack &#8211; Twitter Popcorn Robot! (April 10, 2009)">Twitter Hack &#8211; Twitter Popcorn Robot!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-how-to-tweet-your-palm-pres-gps-location/" title="Twitter Hack &#8211; How to Tweet Your Palm Pre&#8217;s GPS Location! (September 11, 2009)">Twitter Hack &#8211; How to Tweet Your Palm Pre&#8217;s GPS Location!</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://tweethacking.com/twitter-apps/twitter-trend-tracking-twist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Hack &#8211; How to Supersize Your Firefox with GreaseMonkey Twitter Script &#8211; Troys!</title>
		<link>http://tweethacking.com/twitter-hacks/twitter-hack-how-to-supersize-your-firefox-with-greasemonkey-twitter-script-troys/</link>
		<comments>http://tweethacking.com/twitter-hacks/twitter-hack-how-to-supersize-your-firefox-with-greasemonkey-twitter-script-troys/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 18:39:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Twitter Apps]]></category>
		<category><![CDATA[Twitter Hacks]]></category>
		<category><![CDATA[crunch]]></category>
		<category><![CDATA[firefox greasemonkey]]></category>
		<category><![CDATA[greasemonkey script]]></category>
		<category><![CDATA[greasemonkey scripts]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[rt]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[searchbox]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web version]]></category>
		<category><![CDATA[whole lot]]></category>

		<guid isPermaLink="false">http://tweethacking.com/?p=77</guid>
		<description><![CDATA[Here&#8217;s a really neat and helpful Firefox GreaseMonkey script that will allow you to enjoy the web version of Twitter more just like Twhirl or TweetDeck, it&#8217;s Troys Twitter Script.
Aside from being able to do most tedius things like RT faster, the Troys script allows you to follow your friends&#8217; tweets closer with functionalities like [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a really neat and helpful Firefox GreaseMonkey script that will allow you to enjoy the web version of Twitter more just like <a href="http://www.twhirl.org/">Twhirl</a> or <a href="http://www.tweetdeck.com/beta/">TweetDeck</a>, it&#8217;s Troys Twitter Script.</p>
<p>Aside from being able to do most tedius things like RT faster, the Troys script allows you to follow your friends&#8217; tweets closer with functionalities like name expansion, URL expansion, searchbox, and a whole lot more.</p>
<p>If you like to twitter via the web and Firefox, I highly suggest you <a href="http://userscripts.org/scripts/show/40617">give Troys Twitter Script a try</a>.</p>
<blockquote><p>Troy&#8217;s Twitter script, in our opinion, is crazy awesome. If you find yourself in a memory crunch and prefer not to use a standalone Twitter application, and use Firefox, this script is a must-have. In fact, it&#8217;s too bad that Greasemonkey scripts really only work well in Firefox, because it sure would be great to have all these features in every browser out there. To that end, you can try using Greasemetal (covered here) for Chrome, or GreaseKit for Safari on Mac OSX.</p></blockquote>
<p><a href="http://www.readwriteweb.com/archives/troys_one_twitter_script_to_rule_them_all.php">via readwriteweb</a></p>
<p><img class="alignnone size-full wp-image-78" title="troys" src="http://tweethacking.com/wp-content/uploads/2009/04/troys.png" alt="troys" width="600" height="401" /></p>

	Tags: <a href="http://tweethacking.com/tag/crunch/" title="crunch" rel="tag">crunch</a>, <a href="http://tweethacking.com/tag/firefox-greasemonkey/" title="firefox greasemonkey" rel="tag">firefox greasemonkey</a>, <a href="http://tweethacking.com/tag/greasemonkey-script/" title="greasemonkey script" rel="tag">greasemonkey script</a>, <a href="http://tweethacking.com/tag/greasemonkey-scripts/" title="greasemonkey scripts" rel="tag">greasemonkey scripts</a>, <a href="http://tweethacking.com/tag/mac-osx/" title="mac osx" rel="tag">mac osx</a>, <a href="http://tweethacking.com/tag/memory/" title="memory" rel="tag">memory</a>, <a href="http://tweethacking.com/tag/rt/" title="rt" rel="tag">rt</a>, <a href="http://tweethacking.com/tag/safari/" title="safari" rel="tag">safari</a>, <a href="http://tweethacking.com/tag/searchbox/" title="searchbox" rel="tag">searchbox</a>, <a href="http://tweethacking.com/tag/twitter/" title="twitter" rel="tag">twitter</a>, <a href="http://tweethacking.com/tag/web-version/" title="web version" rel="tag">web version</a>, <a href="http://tweethacking.com/tag/whole-lot/" title="whole lot" rel="tag">whole lot</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://tweethacking.com/twitter-apps/twitter-trend-tracking-twist/" title="Twitter Trend Tracking &#8211; Twist (April 25, 2009)">Twitter Trend Tracking &#8211; Twist</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-news/twitter-surpasses-digg-stumbleupon-and-new-york-times/" title="Twitter Surpasses Digg, Stumbleupon, and New York Times! (April 7, 2009)">Twitter Surpasses Digg, Stumbleupon, and New York Times!</a> (1)</li>
	<li><a href="http://tweethacking.com/twitter-news/twitter-soars-past-14-million-users/" title="Twitter Soars Past 14 Million Users! (April 7, 2009)">Twitter Soars Past 14 Million Users!</a> (2)</li>
	<li><a href="http://tweethacking.com/twitter-apps/twitter-iphone-app-tweetstack/" title="Twitter iPhone App &#8211; TweetStack! (April 11, 2009)">Twitter iPhone App &#8211; TweetStack!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-twitter-popcorn-robot/" title="Twitter Hack &#8211; Twitter Popcorn Robot! (April 10, 2009)">Twitter Hack &#8211; Twitter Popcorn Robot!</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://tweethacking.com/twitter-hacks/twitter-hack-how-to-supersize-your-firefox-with-greasemonkey-twitter-script-troys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter iPhone App &#8211; TweetStack!</title>
		<link>http://tweethacking.com/twitter-apps/twitter-iphone-app-tweetstack/</link>
		<comments>http://tweethacking.com/twitter-apps/twitter-iphone-app-tweetstack/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 01:52:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Twitter Apps]]></category>
		<category><![CDATA[avatar]]></category>
		<category><![CDATA[cool stuff]]></category>
		<category><![CDATA[dms]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[new application]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[reply]]></category>
		<category><![CDATA[rts]]></category>
		<category><![CDATA[search term]]></category>
		<category><![CDATA[sleek design]]></category>
		<category><![CDATA[stacks]]></category>
		<category><![CDATA[tweet]]></category>
		<category><![CDATA[tweetie]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://tweethacking.com/?p=65</guid>
		<description><![CDATA[For those of you twittering on an iPhone or iPod Touch, you might be interested to learn that there&#8217;s a new application you can use for speeding up relies, DMs, RTs, and more, it&#8217;s called TweetStack.
TweetStack also lets you import your TweetDeck settings, you can see how to do that here.

According to Mashable, the TweetStack [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you twittering on an iPhone or iPod Touch, you might be interested to learn that there&#8217;s a new application you can use for speeding up relies, DMs, RTs, and more, it&#8217;s called <a href="http://www.b1te.com/tweetstack/">TweetStack</a>.</p>
<p>TweetStack also lets you import your TweetDeck settings, you can see how to do that <a href="http://www.b1te.com/tweetstack/tweetdeck.html">here</a>.</p>
<p style="text-align: center;"><img class="size-full wp-image-66 aligncenter" title="tweetstack" src="http://tweethacking.com/wp-content/uploads/2009/04/tweetstack.png" alt="tweetstack" width="320" height="480" /></p>
<p>According to Mashable, the TweetStack can do other cool stuff like geo-tagging your photos:</p>
<blockquote><p>TweetStack lacks the beautiful and sleek design of Tweetie, but once you notice that you can create stacks (ie. groups) based on TwitPic (TwitPic reviews) tags, your current location, Twitter friends, and any search term that strikes your fancy, we think you’ll be impressed. Now throw in the fact that tapping a user’s avatar gives you the option to view that user’s profile, create a group, or add the user to an existing group. Oh, and tapping a tweet itself will let you send a reply or dm, retweet it, or add it as a favorite.</p></blockquote>
<p><a href="http://mashable.com/2009/04/10/tweetstack/">via mashable</a></p>

	Tags: <a href="http://tweethacking.com/tag/avatar/" title="avatar" rel="tag">avatar</a>, <a href="http://tweethacking.com/tag/cool-stuff/" title="cool stuff" rel="tag">cool stuff</a>, <a href="http://tweethacking.com/tag/dms/" title="dms" rel="tag">dms</a>, <a href="http://tweethacking.com/tag/iphone/" title="iphone" rel="tag">iphone</a>, <a href="http://tweethacking.com/tag/new-application/" title="new application" rel="tag">new application</a>, <a href="http://tweethacking.com/tag/photos/" title="photos" rel="tag">photos</a>, <a href="http://tweethacking.com/tag/reply/" title="reply" rel="tag">reply</a>, <a href="http://tweethacking.com/tag/rts/" title="rts" rel="tag">rts</a>, <a href="http://tweethacking.com/tag/search-term/" title="search term" rel="tag">search term</a>, <a href="http://tweethacking.com/tag/sleek-design/" title="sleek design" rel="tag">sleek design</a>, <a href="http://tweethacking.com/tag/stacks/" title="stacks" rel="tag">stacks</a>, <a href="http://tweethacking.com/tag/tweet/" title="tweet" rel="tag">tweet</a>, <a href="http://tweethacking.com/tag/tweetie/" title="tweetie" rel="tag">tweetie</a>, <a href="http://tweethacking.com/tag/twitter/" title="twitter" rel="tag">twitter</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-twitter-popcorn-robot/" title="Twitter Hack &#8211; Twitter Popcorn Robot! (April 10, 2009)">Twitter Hack &#8211; Twitter Popcorn Robot!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-office-chair-fart-detector-tweets/" title="Twitter Hack &#8211; Office Chair Fart Detector Tweets! (April 26, 2009)">Twitter Hack &#8211; Office Chair Fart Detector Tweets!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-hacks/twitter-hack-how-to-tweet-your-palm-pres-gps-location/" title="Twitter Hack &#8211; How to Tweet Your Palm Pre&#8217;s GPS Location! (September 11, 2009)">Twitter Hack &#8211; How to Tweet Your Palm Pre&#8217;s GPS Location!</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-apps/twitter-trend-tracking-twist/" title="Twitter Trend Tracking &#8211; Twist (April 25, 2009)">Twitter Trend Tracking &#8211; Twist</a> (0)</li>
	<li><a href="http://tweethacking.com/twitter-news/twitter-surpasses-digg-stumbleupon-and-new-york-times/" title="Twitter Surpasses Digg, Stumbleupon, and New York Times! (April 7, 2009)">Twitter Surpasses Digg, Stumbleupon, and New York Times!</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://tweethacking.com/twitter-apps/twitter-iphone-app-tweetstack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
