<?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>SMM Guru - The Social Media Marketing Guru &#187; Resources</title>
	<atom:link href="http://www.smmguru.com/category/resources/feed" rel="self" type="application/rss+xml" />
	<link>http://www.smmguru.com</link>
	<description></description>
	<lastBuildDate>Tue, 22 Dec 2009 19:48:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress WXR File Splitter</title>
		<link>http://www.smmguru.com/2009/04/14/wordpress-wxr-file-splitter</link>
		<comments>http://www.smmguru.com/2009/04/14/wordpress-wxr-file-splitter#comments</comments>
		<pubDate>Tue, 14 Apr 2009 14:54:23 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[SMM Guru]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WXR]]></category>

		<guid isPermaLink="false">http://www.smmguru.com/?p=561</guid>
		<description><![CDATA[The other day I was setting up a Wordpress sandbox to do some theme testing and I ran into a small snag. I wanted to populate the blog with data from smmguru.com and the Wordpress export feature is a bit flawed. For many reasons (mainly security) I did not want the sandbox blog running off [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-327" style="float:left; margin:0px 10px 0px 0px;" title="monkey" src="http://www.smmguru.com/wp-content/uploads/2008/10/monkey.gif" alt="monkey" width="299" height="267" />The other day I was setting up a Wordpress sandbox to do some theme testing and I ran into a small snag. I wanted to populate the blog with data from smmguru.com and the Wordpress export feature is a bit flawed. For many reasons (mainly security) I did not want the sandbox blog running off the same database so a backup/import was the way to go. Unless you can upload a 6mb export to your site (highly unlikely) then you cant import any data.</p>
<p>The first route I took was manually trying to split the file but I quickly realized it would take forever with that many lines of code. I took my problem to Google and found a nice little gem called &#8220;Shoes.&#8221; Its a WXR file splitter written in ruby by  <a href="http://werehosed.mvmanila.com/?p=2469" target="_blank">mvManila</a>. The program is very easy to use and it runs on Windows, Mac, and Linux and there&#8217;s also a command line version for the nerds. You can <a href="http://www.mvmanila.com/public/" target="_blank">get the latest version here</a> (just pick the latest version number for whichever platform you are running.) The program will then install itself and your ready to roll.</p>
<p>Select the local copy of your WXR file, then pick how small you would like each chunk to be. You can even append a name that will automatically be ordered in number. For example entering &#8220;backup-part-&#8221; will create WXR files labeled &#8220;backup-part-1&#8243;, &#8220;backup-part-2&#8243;, etc. Then all you have to do is import all the files through WordPress and your good to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smmguru.com/2009/04/14/wordpress-wxr-file-splitter/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Expanding On TwitterBot &#8211; Keep Track of Used Tweets</title>
		<link>http://www.smmguru.com/2008/11/03/expanding-on-twitterbot-keep-track-of-used-tweets</link>
		<comments>http://www.smmguru.com/2008/11/03/expanding-on-twitterbot-keep-track-of-used-tweets#comments</comments>
		<pubDate>Mon, 03 Nov 2008 18:30:48 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[TwitterBot]]></category>
		<category><![CDATA[bots]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.smmguru.com/?p=467</guid>
		<description><![CDATA[Now that you know how to make a Twitter bot you may be looking to add some more functionality to it. One problem you may run into after some time is that you keep recycling or re-sending the same messages to Twitter. For example, you have 100 facts about your self and you don&#8217;t want [...]]]></description>
			<content:encoded><![CDATA[<p>Now that you know <a href="http://www.smmguru.com/2008/10/31/how-to-make-a-twitter-bot-with-php-in-five-minuets" target="_blank">how to make a Twitter bot</a> you may be looking to add some more functionality to it. One problem you may run into after some time is that you keep recycling or re-sending the same messages to Twitter. For example, you have 100 facts about your self and you don&#8217;t want any of them to appear twice but you want everything to be automated. How do you do this? Easy, just add a status field to your `tweets` table.</p>
<p><strong>Step 1 &#8211; Add the field.</strong><br />
To add the field you can use the simple graphical interface in phpMyAdmin or use the SQL tab (or alternative) to run this code:</p>
<p>ALTER TABLE `tweets` ADD `status` VARCHAR(10) NOT NULL;</p>
<p>What this will do is create a new field in your tweets table with 10 characters of space for that messages status. We will be setting them all to &#8220;ready&#8221;, and later changing our PHP code to update them as we go along.</p>
<p><strong>Step 2 &#8211; Set all tweets to ready.</strong><br />
After you have the new field added to your database you will need to set all of the tweets you want to use to &#8216;ready&#8217; status. In this example, only tweets with the status set to &#8216;ready&#8217; can be randomly selected.</p>
<p>While inside of phpMyAdmin (SQL tab) or what ever tool you use, go to the page that allows you to run MySQL commands on your tables and enter this code:</p>
<p>UPDATE `tweets` SET `status` = &#8216;ready&#8217;</p>
<p>Alternatively you can pick which ones you want to use if you already have some tweets that you wish not to recycle. This SQL command will update every tweet/message you have in your database so use it wisely.</p>
<p><strong>Step 3 &#8211; Modify PHP to update tweet status in database.</strong><br />
Our third an final step is to modify the php script so it will change the status of every used tweet. To do this, we will make a few simple changes to our original code.</p>
<p>First off, we have to change the MySQL query so it will only pull random messages with &#8220;ready&#8221; status:</p>
<div class="php php" style="font-family:monospace;color: #006; padding:8px; background-color: #f0f0f0;"><span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <a style="color: #000060;" href="http://www.php.net/mysql_query"><span style="color: #990000;">mysql_query</span></a> <span style="color: #009900;">(</span>“SELECT <span style="color: #339933;">*</span> FROM tweets WHERE status <span style="color: #339933;">=</span> <span>&#8216;ready&#8217;</span> ORDER BY <a style="color: #000060;" href="http://www.php.net/rand"><span style="color: #990000;">RAND</span></a><span style="color: #009900;">(</span><span style="color: #009900;">)</span> LIMIT <span style="color: #cc66cc;">1</span><span style="font-style: italic; color: #666666;">);</span></div>
<p>For our second change, we will need to get the ID number of the tweet from the database and pass it to the sendTweet() function we will modify in a moment:</p>
<div class="php php" style="font-family:monospace;color: #006; padding:8px; background-color: #f0f0f0;"><span style="color: #b1b100;">while</span><span style="color: #009900;">(</span><span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <a style="color: #000060;" href="http://www.php.net/mysql_fetch_array"><span style="color: #990000;">mysql_fetch_array</span></a><span style="color: #009900;">(</span><span style="color: #000088;">$result</span><span style="color: #009900;">)</span><span style="color: #009900;">)</span><span style="color: #009900;">{</span></p>
<p><span style="color: #000088;">$tweet</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&#8220;$row[tweet]&#8220;</span>;</p>
<p><span style="color: #000088;">$tweetID</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&#8220;$row[id]&#8220;</span>;</p>
<p>sendTweet<span style="color: #009900;">(</span><span style="color: #000088;">$tweet</span><span style="color: #339933;">,</span> <span style="color: #000088;">$tweetID</span><span style="color: #009900;">)</span>;</p>
<p><span style="color: #009900;">}</span></div>
<p>Then we modify our sendTweet() function to handle the tweet&#8217;s ID, and then change its status if the message is successfully sent to Twitter:</p>
<div class="php php" style="font-family:monospace;color: #006;padding:8px; background-color: #f0f0f0;"><span style="font-weight: bold; color: #000000;">function</span> sendTweet<span style="color: #009900;">(</span><span style="color: #000088;">$msg</span><span style="color: #339933;">,</span> <span style="color: #000088;">$idoftweet</span><span style="color: #009900;">)</span><span style="color: #009900;">{</span></p>
<p><span style="color: #000088;">$username</span> <span style="color: #339933;">=</span> ‘TWITTER<span style="color: #339933;">-</span>USER<span style="color: #339933;">-</span>NAME’;</p>
<p><span style="color: #000088;">$password</span> <span style="color: #339933;">=</span> ‘TWITTER<span style="color: #339933;">-</span>PASS’;</p>
<p><span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> ‘http<span style="color: #339933;">:</span><span style="font-style: italic; color: #666666;">//twitter.com/statuses/update.xml’;</span></p>
<p><span style="color: #000088;">$curl_handle</span> <span style="color: #339933;">=</span> curl_init<span style="color: #009900;">(</span><span style="color: #009900;">)</span>;</p>
<p>curl_setopt<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #339933;">,</span> CURLOPT_URL<span style="color: #339933;">,</span> “<span style="color: #000088;">$url</span>”<span style="color: #009900;">)</span>;</p>
<p>curl_setopt<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #339933;">,</span> CURLOPT_CONNECTTIMEOUT<span style="color: #339933;">,</span> <span style="color: #cc66cc;">2</span><span style="color: #009900;">)</span>;</p>
<p>curl_setopt<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #339933;">,</span> CURLOPT_RETURNTRANSFER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">)</span>;</p>
<p>curl_setopt<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #339933;">,</span> CURLOPT_POST<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">)</span>;</p>
<p>curl_setopt<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #339933;">,</span> CURLOPT_POSTFIELDS<span style="color: #339933;">,</span> “status<span style="color: #339933;">=</span><span style="color: #000088;">$msg</span>”<span style="color: #009900;">)</span>;</p>
<p>curl_setopt<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #339933;">,</span> CURLOPT_USERPWD<span style="color: #339933;">,</span> “<span style="color: #000088;">$username</span><span style="color: #339933;">:</span><span style="color: #000088;">$password</span>”<span style="color: #009900;">)</span>;</p>
<p><span style="color: #000088;">$buffer</span> <span style="color: #339933;">=</span> curl_exec<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #009900;">)</span>;</p>
<p>curl_close<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #009900;">)</span>;</p>
<p><span style="color: #b1b100;">if</span> <span style="color: #009900;">(</span><a style="color: #000060;" href="http://www.php.net/empty"><span style="color: #990000;">empty</span></a><span style="color: #009900;">(</span><span style="color: #000088;">$buffer</span><span style="color: #009900;">)</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span></p>
<p><a style="color: #000060;" href="http://www.php.net/echo"><span style="color: #990000;">echo</span></a> ‘fail’;</p>
<p><span style="color: #009900;">}</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">{</span></p>
<p><a style="color: #000060;" href="http://www.php.net/echo"><span style="color: #990000;">echo</span></a> ’success’;</p>
<p><a style="color: #000060;" href="http://www.php.net/mysql_query"><span style="color: #990000;">mysql_query</span></a><span style="color: #009900;">(</span><span style="color: #0000ff;">&#8220;UPDATE `tweets` SET `status` = &#8216;used&#8217; WHERE id = &#8216;$idoftweet&#8217;&#8221;</span><span style="color: #009900;">)</span>;</p>
<p><span style="color: #009900;">}</span></div>
<p>Now it&#8217;s all ready to role. Now every time a message is pulled from the database and sent to Twitter (successfully) it will have it&#8217;s status changed to &#8220;used&#8221; taking it out of the possible messages to send. Just upload your new php file, re-activate your CRON job and have some fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smmguru.com/2008/11/03/expanding-on-twitterbot-keep-track-of-used-tweets/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Make A Twitter Bot With PHP In Five Minutes</title>
		<link>http://www.smmguru.com/2008/10/31/how-to-make-a-twitter-bot-with-php-in-five-minuets</link>
		<comments>http://www.smmguru.com/2008/10/31/how-to-make-a-twitter-bot-with-php-in-five-minuets#comments</comments>
		<pubDate>Fri, 31 Oct 2008 17:41:28 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[TwitterBot]]></category>
		<category><![CDATA[bots]]></category>
		<category><![CDATA[smm]]></category>
		<category><![CDATA[SMO]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.smmguru.com/?p=461</guid>
		<description><![CDATA[
There are quite a few uses I could think of for an automated Twitter bot that posts new tweets for you throughout the day. While this sounds like it would be a hard task it&#8217;s actually quite easy and a great project for anyone who wants to learn how to use the Twitter API within [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-470" style="float:left; margin:0 10px 0 0;" title="twitterbot" src="http://www.smmguru.com/wp-content/uploads/2008/10/twitterbot.png" alt="" width="153" height="153" /></p>
<p>There are quite a few uses I could think of for an automated Twitter bot that posts new tweets for you throughout the day. While this sounds like it would be a hard task it&#8217;s actually quite easy and a great project for anyone who wants to learn how to use the Twitter API within PHP. Lets get started.</p>
<p><strong>Step 1 &#8211; Create your database.</strong></p>
<p>When creating your database there are a number of things you may want to think of ahead of time. For the sake of making things easy I chose to tone down the code I use and show you how it works. We will create a simple table to store all of the random tweets in.</p>
<div class="mysql mysql" style="font-family:monospace;color: #006; padding:8px; background-color: #f0f0f0;"><span style="font-weight: bold; color: #993333;">CREATE TABLE</span> `tweets` <span style="color: #66cc66;">(</span></p>
<p>`id` <span style="font-weight: bold; color: #aa9933;">INT</span><span style="color: #66cc66;">(</span><span style="color: #cc66cc;">11</span><span style="color: #66cc66;">)</span> <span style="font-weight: bold; color: #aa3399;">NOT NULL</span> <span style="font-weight: bold; color: #aa3399;">AUTO_INCREMENT</span>,</p>
<p>`tweet` <span style="font-weight: bold; color: #aa9933;">VARCHAR</span><span style="color: #66cc66;">(</span><span style="color: #cc66cc;">140</span><span style="color: #66cc66;">)</span> <span style="font-weight: bold; color: #aa3399;">DEFAULT</span> <span style="font-weight: bold; color: #aa3399;">NULL</span>,</p>
<p><span style="font-weight: bold; color: #993333;">PRIMARY KEY</span> <span style="color: #66cc66;">(</span>`id`<span style="color: #66cc66;">)</span></p>
<p><span style="color: #66cc66;">)</span></div>
<p>Run that SQL and you should have a new &#8220;tweets&#8221; table in your chosen database. Notice how we limited the `tweet` field to 140 characters as well so we don&#8217;t have tweets that are too long to appear on Twitter.</p>
<p><strong>Step 2 &#8211; Create the PHP to send the tweet.</strong></p>
<p>The next step is to create a php script that will randomly select one of your tweets, and then send it to your Twitter account via Twitter&#8217;s API. While this sounds complicated, its very easy to do.</p>
<div class="php php" style="font-family:monospace;color: #006; padding:8px; background-color: #f0f0f0;"><span style="font-weight: bold; color: #000000;">&lt;?php</span></p>
<p><a style="color: #000060;" href="http://www.php.net/mysql_connect"><span style="color: #990000;">mysql_connect</span></a><span style="color: #009900;">(</span><span style="color: #0000ff;">&#8220;localhost&#8221;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&#8220;USERNAME&#8221;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&#8220;PASSWORD&#8221;</span><span style="color: #009900;">)</span> or <a style="color: #000060;" href="http://www.php.net/die"><span style="color: #990000;">die</span></a><span style="color: #009900;">(</span><span>&#8216;Could not connect to database&#8217;</span><span style="color: #009900;">)</span>;</p>
<p><a style="color: #000060;" href="http://www.php.net/mysql_select_db"><span style="color: #990000;">mysql_select_db</span></a><span style="color: #009900;">(</span><span style="color: #0000ff;">&#8220;DATABASE&#8221;</span><span style="color: #009900;">)</span> or <a style="color: #000060;" href="http://www.php.net/die"><span style="color: #990000;">die</span></a><span style="color: #009900;">(</span><span>&#8216;Could not select database&#8217;</span><span style="color: #009900;">)</span>;</p>
<p><span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <a style="color: #000060;" href="http://www.php.net/mysql_query"><span style="color: #990000;">mysql_query</span></a> <span style="color: #009900;">(</span><span style="color: #0000ff;">&#8220;SELECT * FROM tweets ORDER BY RAND() LIMIT 1&#8243;</span><span style="color: #009900;">)</span>;</p>
<p><span style="color: #b1b100;">while</span><span style="color: #009900;">(</span><span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <a style="color: #000060;" href="http://www.php.net/mysql_fetch_array"><span style="color: #990000;">mysql_fetch_array</span></a><span style="color: #009900;">(</span><span style="color: #000088;">$result</span><span style="color: #009900;">)</span><span style="color: #009900;">)</span><span style="color: #009900;">{</span></p>
<p><span style="color: #000088;">$tweet</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&#8220;$row[tweet]&#8220;</span>;</p>
<p>sendTweet<span style="color: #009900;">(</span><span style="color: #000088;">$tweet</span><span style="color: #009900;">)</span>;</p>
<p><span style="color: #009900;">}</span></p>
<p><span style="font-weight: bold; color: #000000;">function</span> sendTweet<span style="color: #009900;">(</span><span style="color: #000088;">$msg</span><span style="color: #009900;">)</span><span style="color: #009900;">{</span></p>
<p><span style="color: #000088;">$username</span> <span style="color: #339933;">=</span> <span>&#8216;TWITTER-USER-NAME&#8217;</span>;</p>
<p><span style="color: #000088;">$password</span> <span style="color: #339933;">=</span> <span>&#8216;TWITTER-PASS&#8217;</span>;</p>
<p><span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <span>&#8216;http://twitter.com/statuses/update.xml&#8217;</span>;</p>
<p><span style="color: #000088;">$curl_handle</span> <span style="color: #339933;">=</span> curl_init<span style="color: #009900;">(</span><span style="color: #009900;">)</span>;</p>
<p>curl_setopt<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #339933;">,</span> CURLOPT_URL<span style="color: #339933;">,</span> <span style="color: #0000ff;">&#8220;$url&#8221;</span><span style="color: #009900;">)</span>;</p>
<p>curl_setopt<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #339933;">,</span> CURLOPT_CONNECTTIMEOUT<span style="color: #339933;">,</span> <span style="color: #cc66cc;">2</span><span style="color: #009900;">)</span>;</p>
<p>curl_setopt<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #339933;">,</span> CURLOPT_RETURNTRANSFER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">)</span>;</p>
<p>curl_setopt<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #339933;">,</span> CURLOPT_POST<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">)</span>;</p>
<p>curl_setopt<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #339933;">,</span> CURLOPT_POSTFIELDS<span style="color: #339933;">,</span> <span style="color: #0000ff;">&#8220;status=$msg&#8221;</span><span style="color: #009900;">)</span>;</p>
<p>curl_setopt<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #339933;">,</span> CURLOPT_USERPWD<span style="color: #339933;">,</span> <span style="color: #0000ff;">&#8220;$username:$password&#8221;</span><span style="color: #009900;">)</span>;</p>
<p><span style="color: #000088;">$buffer</span> <span style="color: #339933;">=</span> curl_exec<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #009900;">)</span>;</p>
<p>curl_close<span style="color: #009900;">(</span><span style="color: #000088;">$curl_handle</span><span style="color: #009900;">)</span>;</p>
<p><span style="color: #b1b100;">if</span> <span style="color: #009900;">(</span><a style="color: #000060;" href="http://www.php.net/empty"><span style="color: #990000;">empty</span></a><span style="color: #009900;">(</span><span style="color: #000088;">$buffer</span><span style="color: #009900;">)</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span></p>
<p><a style="color: #000060;" href="http://www.php.net/echo"><span style="color: #990000;">echo</span></a> <span>&#8216;fail&#8217;</span>;</p>
<p><span style="color: #009900;">}</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">{</span></p>
<p><a style="color: #000060;" href="http://www.php.net/echo"><span style="color: #990000;">echo</span></a> <span>&#8217;success&#8217;</span>;</p>
<p><span style="color: #009900;">}</span></p>
<p><span style="color: #009900;">}</span></p>
<p><span style="font-weight: bold; color: #000000;">?&gt;</span></div>
<p>Not to bad right? Our custom sendTweet() function pretty much takes care of all the dirty work in sending the message to Twitter. Just <strong>make sure you edit the code</strong> with your password and username for Twitter, and the MySQL login. Once you have your database populated you are all good to go and test the script to see if it works. Just upload it, run it, and you should see either &#8220;fail&#8221; or &#8220;success&#8221; on your screen.</p>
<p><strong>Step 3 &#8211; Automate with CRON.</strong></p>
<p>After going to Twitter and checking your account to confirm everything is copacetic, it&#8217;s time to let your monster loose. Depending on what host you use, CRON access may or may not be available to you. Luckily for me I am hosted with <a href="http://www.mediatemple.com" target="_blank">MediaTemple</a> so this is not a problem.</p>
<ul>
<li><strong>Script Location -</strong> When using CRON you normally want to upload the file being run into a folder that nobody has access to from the web (root). After you have it in this location, just plug it into CRON with &#8216;php&#8217; in front of it. Example: php /home/user/root/TwitterBot.php</li>
<li><strong>Set The Time -</strong> I don&#8217;t think I have ever used a control panel that required you to manually enter the time format&#8230; I&#8217;m pretty sure most people use cPanel which also has drop downs to select when you would like the script to run. I like to run my Twitter bot every 25 minuets or so to keep my Twitter account fresh.</li>
</ul>
<p>That&#8217;s it! Not to hard right&#8230; If you have any in-depth questions on the code or need help, feel free to leave a comment. Also leave one if you have usage ideas, new features that could make the script better. As you can now see, this is a valuable tool to have in your chest.</p>
<p><strong>UPDATE 5/8/2009</strong></p>
<p>I have released a full blown version of the script packed with features and a complete backend GUI. This has proven to be a great Twitter marketing too! Unlike all the others, I support mine and its not a billion dollars. Check out the site for all the details.</p>
<p><a href="http://twitterbotscript.com" target="_blank">Get Twitterbotscript now!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smmguru.com/2008/10/31/how-to-make-a-twitter-bot-with-php-in-five-minuets/feed</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>The Master List Of Twitter Tools And Apps</title>
		<link>http://www.smmguru.com/2008/10/22/the-master-list-of-twitter-tools-and-apps</link>
		<comments>http://www.smmguru.com/2008/10/22/the-master-list-of-twitter-tools-and-apps#comments</comments>
		<pubDate>Wed, 22 Oct 2008 17:08:42 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[lists]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.smmguru.com/?p=425</guid>
		<description><![CDATA[Listed below is a huge collection of Twitter tools, along with information and links to articles and reviews on each. If you have any to add, leave a comment as I will be updating this post as I go on. (Shit, AJAX is the bomb.) This should become your number one Twitter resource starting now [...]]]></description>
			<content:encoded><![CDATA[<p>Listed below is a huge collection of Twitter tools, along with information and links to articles and reviews on each. If you have any to add, leave a comment as I will be updating this post as I go on. (Shit, AJAX is the bomb.) This should become your number one Twitter resource starting now mmmmkay.</p>
<ol><strong>Web Applications</strong>                  </p>
<li><a href="http://twitturly.com/" target="_blank">Twitt(url)y</a> &#8211; A service for tracking popular URls that are being shared across the Twitter network. Useful for identifying hot trends and topics within social networks.
<ol>
<li><a href="http://mashable.com/2008/05/27/twitturly/" target="_blank">Twitturly: Tracking Popular URLs On Twitter [The Startup Review]</a></li>
<li><a href="http://www.techcrunch.com/2008/04/28/twitturly-cracks-the-twittermeme-nut/" target="_blank">Twitturly Cracks The TwitterMeme Nut</a></li>
<li><a href="http://www.crunchbase.com/company/twitturly" target="_blank">CrunchBase &#8211; twitt(url)y company profile</a></li>
</ol>
</li>
<li><a href="http://www.smmguru.com/twitter-follow-back-tool/" target="_blank">FollowBack</a> &#8211; Gives you a color-coded view of people who are following you, and if you should follow them back.</li>
<li><a href="http://grouptweet.com/" target="_blank">Group Tweet</a> &#8211; Anyone who wants to broadcast and share private tweets to a specific group of people can do so for free with Group Tweet. Think of it as Yammer but within Twitter.
<ol>
<li><a href="http://www.techcrunch.com/2008/04/23/privacy-disaster-at-twitter-direct-messages-exposed/" target="_blank">Privacy Disaster At Twitter: Direct Messages Exposed (Update: GroupTweet Is Likely Culprit)</a></li>
<li><a href="http://www.betanews.com/article/GroupTweet_to_blame_for_Twitter_security_compromise/1208990445" target="_blank">GroupTweet to blame for Twitter security &#8216;compromise&#8217;</a></li>
<li><a href="http://webworkerdaily.com/2008/04/12/grouptweet-enhances-twitter/" target="_blank">GroupTweet Enhances Twitter</a></li>
<li><a href="http://www.crunchbase.com/company/grouptweet" target="_blank">CrunchBase &#8211; GroupTweet Company Profile</a></li>
</ol>
</li>
<li><a href="http://tweetmeme.com/index.html" target="_blank">Tweetmeme</a> &#8211; Tracks hot topics on Twitter bases on the links people are sharing. 
<ol>
<li><a href="http://www.crunchbase.com/company/tweetmeme" target="_blank">CrunchBase &#8211; Tweetmeme Company Profile</a></li>
<li><a href="http://louisgray.com/live/2008/07/tweetmeme-returns-following-months-long.html" target="_blank">TweetMeme Returns Following Months-Long Forced Outage</a></li>
<li><a href="http://blog.wired.com/monkeybites/2008/01/meet-tweetmeme.html" target="_blank">Meet Tweetmeme, The Sweeter Way to Track Twitter</a></li>
</ol>
</li>
<li><a href="http://twitlinks.com/" target="_blank">TwitLinks</a> &#8211; Aggregates links from the worlds top tech Twitter users.
<ol>
<li><a href="http://www.readwriteweb.com/archives/twitlinks_the_techmeme_of_twitter.php" target="_blank">TwitLinks: The Techmeme Killer of Twitter? &#8211; ReadWrtieWeb</a></li>
<li><a href="http://www.crunchbase.com/company/twitlinks" target="_blank">TwitLinks Company Profile &#8211; CrunchBase</a></li>
<li><a href="http://www.techcrunch.com/2008/04/14/yeah-twitlinks-isnt-useful/" target="_blank">TwitLinks: Not Useful, Not A TechMeme Killer &#8211; TechCrunch</a></li>
</ol>
</li>
<li><a href="http://www.textism.com/favrd/" target="_blank">Favrd</a> &#8211; Offers channels of the most favorited tweets on Twitter with options to search and identify topics by keyword.
<ol>
<li><a href="http://www.psfk.com/2008/09/favrd-entertainment-for-the-twitter-attention-span.html" target="_blank">FAVRD: Entertainment for the Twitter Attention Span</a></li>
<li><a href="http://jonathaneunice.wordpress.com/2008/10/22/fail-whale-for-the-favrd/" target="_blank">Fail Whale for the Favrd</a></li>
</ol>
</li>
<li><a href="http://www.tweetlater.com/" target="_blank">TweetLater</a> &#8211; Schedule tweets for a particular time or day and also allows you to auto-follow and one who follows your account. They even offer a auto-welcome feature that sends a welcome message to your followers.
<ol>
<li><a href="http://www.killerstartups.com/Web-App-Tools/tweetlater-com-tweet-into-the-future" target="_blank">TweetLater.com &#8211; Tweet into the Future</a></li>
</ol>
</li>
<li><a href="http://twist.flaptor.com/" target="_blank">Twist</a> &#8211; An aggregation like service that looks at trend comparisons and volume between keywords and tags.</li>
<li><a href="http://www.crazybob.org/twubble/" target="_blank">Twubble</a> &#8211; Introduces and recommends new people you may want to follow based off your friend graph.</li>
<li><a href="http://whoshouldifollow.com/" target="_blank">WhoShouldIFollow</a> &#8211; Pretty much like Twubble.</li>
<li><a href="http://www.twellow.com/" target="_blank">Twellow</a> &#8211; A very useful tool for finding people who matter in your business, industry, or niche.</li>
<li><a href="http://twitdir.com/" target="_blank">TwitDir</a> &#8211; A very effective people search tool for Twitter.
<ol>
<li><a href="http://twitterfacts.blogspot.com/2008/04/1-million-twitter-users-according-to.html" target="_blank">1 million Twitter users according to Twitdir</a></li>
<li><a href="http://www.twittown.com/blogs/twitter-services/showdown-twitter-user-directories-twitdir-vs-twitterholic" target="_blank">A showdown of Twitter user directories &#8211; TwitDir vs. Twitterholic</a></li>
<li><a href="http://daggle.com/080410-230209.html" target="_blank">Tracking Your Twitter Growth With Twitterholic, TwitDir, Tweeterboard &amp; Others</a></li>
</ol>
</li>
<li><a href="http://twerpscan.com/" target="_blank">Twerp Scan</a> &#8211; Keeps an eye on the friend / follower ratio of your friends and their friends.</li>
<li><a href="http://www.soxialize.com/tweet-pro/" target="_blank">Tweet Pro</a> &#8211; A paid service for creating a solid niche based network. Great for use in business/branding.</li>
<li><a href="http://tweetscan.com/" target="_blank">Tweet Scan</a> &#8211; A search engine for Twitter with advanced topic and trend/keyword tracking features.</li>
<li><a href="http://twinfluence.com/" target="_blank">twInfluence</a> &#8211; Measure Twitter influencers based on reach, velocity, social capital, and more. </li>
<li><a href="http://twitter.grader.com/index.php" target="_blank">TwitterGrader</a> &#8211; M<span>easures the relative power and authority of a Twitter user by calculating the number of followers, the power of the network of followers, the pace of updates and the completeness of a user&#8217;s profile.</span></li>
<li><a href="http://twittad.com/" target="_blank">TwittAd</a> &#8211; M<span>icro ad network that connects advertisers to Twitter users to create opportunities for paid product placement and website promotion directly on a Twitter user&#8217;s profile.</span></li>
<li><a href="http://www.twittertise.com/" target="_blank">Twitterise</a> &#8211; Advertise on Twitter and track the success of branded communications with your customers.</li>
<li><a href="http://www.whatsyourtweetworth.com/" target="_blank">WhatsYourTweetWorth</a> &#8211; A<span>nalyzes your account and network to recommend what your tweets could be worth on Twittad.</span></li>
<li><a href="http://iconfactory.com/software/twitterrific" target="_blank">Twitterific</a> &#8211; L<span>ets you read and publish tweets from the desktop, iPhone and iPod Touch.</span></li>
<li><a href="http://twitterwhere.com/" target="_blank">TwitterWhere</a> &#8211; P<span>rovides the ability to update Twitter with your current location.</span></li>
<li><a href="http://www.twitterfeed.com/" target="_blank">TwitterFeed</a> - <span>connects your blog to Twitter and automatically feeds posts into the timeline with each new update.</span></li>
<li><a href="http://tweetbeep.com/" target="_blank">Tweetbeep</a> &#8211; A<span>llows you to monitor conversations that mention you, your brand, related or competitive products, as well as links to your website or blog, even if they use a shortened URL, such as tinyurl.com.</span></li>
<li><a href="http://www.ping.fm/" target="_blank">Ping.fm</a> &#8211; A <span>central distribution service for sending updates to multiple social networks, including Twitter, with one click. </span></li>
<li><a href="http://hellotxt.com/" target="_blank">Hellotxt</a> &#8211; P<span>rovides the ability to instantly update status as well as view the status of your contacts across multiple networks (Facebook, LinkedIn, hi5, Plaxo, Pownce, Plurk, FriendFeed, Identi.ca, BrightKites, etc.) &#8211; all from one dashboard.</span></li>
<li><a href="http://www.themattinator.com/" target="_blank">Matt</a> - <span>(Multiple Account Twitter Tweeting) provides a platform for broadcasting one update to multiple accounts.</span></li>
<li><a href="http://www.feedtweeter.com/" target="_blank">FeedTweeter</a> &#8211; C<span>onnects social services that offer RSS feeds to you Twitter account.</span></li>
<li><a href="http://www.tweetwheel.com/" target="_blank">TweetWheel</a> &#8211; V<span>isually presents your social graph, who&#8217;s following you and who you are in turn following.</span></li>
<li><a href="http://www.twiffid.com/" target="_blank">Twiffied</a> &#8211; S<span>hows the headlines of the Websites your Twitter friends have listed in their profiles to see what they&#8217;re linking to or blogging about.</span></li>
<li><a href="http://brightkite.com/" target="_blank">BrightKite</a> &#8211; A <span>location-based social network that connects directly to Twitter.</span></li>
<li><a href="http://www.twitterlocal.net/" target="_blank">TwitterLocal</a> &#8211; T<span>he ideal service for quickly finding active voices within a specific city, state, postal code as well as the vicinity, ranging from 1 mile to 20.</span></li>
<li><a href="http://snaptweet.com/" target="_blank">SnapTweet</a> - <span> Links your flickr account to share updates seamlessly to Twitter.</span></li>
<li><a href="http://doesfollow.com/" target="_blank">DoesFollow</a> &#8211; Lets you know if one person is following another. That&#8217;s it.</li>
<li><a href="http://twitpic.com/" target="_blank">TwitPic</a> &#8211; P<span>rovides a bridge from your camera phone to Twitter. Pictures can either post to the Twitter public timeline from phone via email or through the site.</span></li>
<li><a href="http://tweet2tweet.com/" target="_blank">Tweet2Tweet</a> &#8211; P<span>rovides you with the ability to view a history @replies between two Twitter users.</span></li>
<li><a href="http://useqwitter.com/" target="_blank">Qwitter</a> &#8211; W<span>ill send an email to you when someone unfollows you and will link the action to the most recent tweet that you posted.</span></li>
<li><a href="http://followcost.com/" target="_blank">FollowCost</a> &#8211; E<span>stimates the potential attention (or annoyance) cost of following a particular individual or account.</span></li>
<li><a href="http://silentlycrashing.net/tweetpad/" target="_blank">TweetPad</a> &#8211; P<span>rovides a visual representation of Twitter feeds and statistics with dynamic typography.</span></li>
<li><a href="http://www.twitzu.com/" target="_blank">Twitzu</a> &#8211; A<span>n event invitation management service for Twitter. You can create an event, broadcast it to followings and manage RSVPs.</span></li>
<li><a href="http://xefer.com/twitter/" target="_blank">xefer</a> &#8211; R<span>eviews your Twitter account and presents a rich visual analysis of your tweet volume, concentration as well as their resonance (measured by replies) by day, time, week and hour.</span></li>
<li><a href="http://livetwitting.com/" target="_blank">LiveTwitting</a> &#8211; A <span>streamlined solution for livetweeting (covering) conferences.</span></li>
<li><a href="http://thenextweb.org/2008/09/16/twitterkeys-enhance-your-twitter-conversations/" target="_blank">TwitterKeys</a> &#8211; E<span>nhances Twitter conversations by replacing words with UTF8 compatible images.</span></li>
<li><a href="http://twalala.com/login" target="_blank">Twalala</a> &#8211; A<span>dds a mute button to Twitter allowing you to focus your stream as necessary without completely unfollowing someone.</span></li>
<p><strong>Twitter Clients</strong></p>
<li><a href="http://www.twhirl.org/" target="_blank">Twhirl</a> &#8211; A social desktop dashboard that centrally manages activity, messaging, and updating for Twitter, FriendFeed, Identi.ca, and Seesmic.</li>
<li><a href="http://www.tweetdeck.com/beta/" target="_blank">TweetDeck</a> - An Adobe Air desktop app that enables uers to split their main Twitter feed into topic or group specific columns.</li>
<li><a href="http://desktop.google.com/plugins/i/twitter.html?hl=en" target="_blank">Google Twitter Gadget</a> - Twitter gadget from Google thats pretty much an add-on for <a href="http://desktop.google.com/">Google Desktop</a>.</li>
<li><a href="http://rareedge.com/twitteroo/" target="_blank">Twitteroo </a>- Has some nice features including URL shortening, sound notification and many other features which help you speed up your tweeting.</li>
<li><a href="http://funkatron.com/spaz" target="_blank">Spaz</a> &#8211; An extremely customizable desktop Twitter client which is available on Windows, Mac and Linux.</li>
<li><a href="http://code.google.com/p/wittytwitter/" target="_blank">Witty</a> &#8211; A good looking Twitter client which works with Windows Vista and XP.</li>
<li><a href="http://www.twitbin.com/" target="_blank">TwitBin</a> - Available to Mac, Windows and Linux owners, TwitBin is a plugin for Firefox 2.0+.</li>
<li><a href="http://www.tweet-r.com/" target="_blank">Tweetr</a> - Available on Mac and Windows, Tweetr is a great looking Twitter Client. There are alternatives with more features however it’s still worth checking out.</li>
<li><a href="http://getsnitter.com/" target="_blank">Snitter</a> &#8211; One of the best looking desktop Twitter clients available.</li>
<li><a href="http://widgets.opera.com/widget/7206/" target="_blank">Twitter Opera Widget</a> &#8211; A Twitter widget for Opera with basic features.</li>
<li><a href="http://www.twibble.de/" target="_blank">Twibble</a> - The Twibble desktop client is available on Mac and Windows. It allows you to add multiple profiles and even lets you see where you’re Twitter friends are via google Maps.</li>
<li><a href="http://www.pwytter.com/" target="_blank">Pwytter</a> - Available on Windows, Mac and Linux, Pwytter has been translated into a whopping 14 languages.</li>
<p><strong>Mobile Twitter Tools</strong></p>
<li><a href="http://www.naan.net/trac/wiki/TwitterFon" target="_blank">Twitterfon</a> &#8211; A <span>fast, simple Twitter client for the iPhone and iPod Touch. It is focused on 80% of your tasks in Twitter such as viewing friends/replies/messages in the timeline and also sending/replying tweets.</span></li>
<li><a href="http://tapulous.com/twinkle/" target="_blank">Twinkle</a> &#8211; A <span>location-aware network for the iPhone and iPod Touch that helps you discover, connect, and send messages to the public timeline and also to people nearby.</span></li>
<li><a href="http://www.stone.com/Twittelator/" target="_blank">Twittlelator</a> &#8211; A <span>Twitter client for the iPhone. You can manage multiple user accounts, update your accounts, share pictures, a map of your current location, connect with other Tweeps, read tweets from your contacts, and direct message (DM), and reply all from one app.</span></li>
<li><a href="http://www.orangatame.com/products/twitterberry/" target="_blank">Twitterberry</a> &#8211; A <span>full-featured Twitter client to read and post updates from BlackBerry phones.</span></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.smmguru.com/2008/10/22/the-master-list-of-twitter-tools-and-apps/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>20 Mixx Resources To Help You Off Your Digg High</title>
		<link>http://www.smmguru.com/2008/10/15/20-mixx-resources-to-help-you-off-your-digg-high</link>
		<comments>http://www.smmguru.com/2008/10/15/20-mixx-resources-to-help-you-off-your-digg-high#comments</comments>
		<pubDate>Wed, 15 Oct 2008 16:27:58 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Mixx]]></category>

		<guid isPermaLink="false">http://www.smmguru.com/?p=390</guid>
		<description><![CDATA[We all know Digg has changed so why not look to Mixx for a new form of social news. Especially for those of you who have been exiled from planet Digg. Luckily, Mixx is panning out to be a very nice alternative with more diverse content on your customized front page. Here&#8217;s 20 resources to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.smmguru.com/wp-content/uploads/2008/10/mixx_logo.jpg" alt="" title="mixx_logo" width="189" height="87" class="alignnone size-full wp-image-396" style="float:left; margin:0 10px 0 0;"/>We all know Digg has changed so why not look to <a href="http://www.mixx.com" target="_blank">Mixx</a> for a new form of social news. Especially for those of you who have been exiled from planet Digg. Luckily, Mixx is panning out to be a very nice alternative with more diverse content on your customized front page. Here&#8217;s 20 resources to get you into the Mixx.</p>
<ol>
<li><a href="http://www.techipedia.com/2007/will-it-mixx/" target="_blank">Mixxing In, and Why Early Adoption is Important: A Review of the Newest Social News Network </a>- Learn why you should get on Mixx now, instead of waiting.</li>
<li><a href="http://www.techpin.com/most-popular-diggers-leave-digg-for-mixx/" target="_blank">Most Popular Diggers Leave Digg for Mixx</a> &#8211; Why Diggers are leaving their island.</li>
<li><a href="http://www.lobolinks.com/blog/add-mixx-to-the-wordpress-sociable-20-plugin/" target="_blank">Add Mixx to the Wordpress Sociable 2.0 Plugin</a> &#8211; How to add Mixx support to your Wordpress Sociable plugin quickly.</li>
<li><a href="http://thetweedcouch.blogspot.com/2007/11/thrown-in-mixx.html">Thrown In The Mixx</a> &#8211; Why Tweed Couch is a dedicated user of Mixx.</li>
<li><a href="http://www.zanypixel.com/10-things-i-like-most-about-mixx/" target="_blank">10 Things I Like Most About Mixx</a> &#8211; 10 things to dig about Mixx.</li>
<li><a href="http://inventorspot.com/articles/top_digg_contributors_are_frustr_8570" target="_blank">Top Digg Contributor’s are Frustrated: Is Mixx the Answer?</a> &#8211; More Digg/Mixx commentary.</li>
<li><a href="http://www.parislemon.com/2007/11/is-mixx-actually-becoming-viable.html" target="_blank">Is Mixx Actually Becoming a Viable?</a> &#8211; Could Mixx become a viable investment.</li>
<li><a href="http://www.thetechbrief.com/2007/11/28/mixxing-your-blend-of-the-web/" target="_blank">Mixxing Your Blend of the Web</a> &#8211; Why Mixx is more inviting than Digg.</li>
<li><a href="http://vandelaydesign.com/blog/social-media/a-digg-clone-that-might-actually-make-it/" target="_blank">A Digg Clone That Might Actually Make It</a> &#8211; Why Mixx can go long term.</li>
<li><a href="http://www.seowife.com/mixx-locations/" target="_blank">Mixx Locations</a> &#8211; An article on Mixx&#8217;s location features.</li>
<li><a href="http://tech.blorge.com/Structure:%20/2007/11/24/digg-users-flock-to-mixx/" target="_blank">Digg users flock to Mixx</a> &#8211; Why unfair rankings have many Digg users pissed and heading to Mixx.</li>
<li><a href="http://www.teknobites.com/2007/11/25/frustrated-with-digg-head-over-to-mixx/" target="_blank">Frustrated with Digg, head over to Mixx</a> &#8211; Yet another article on making the switch to Mixx.</li>
<li><a href="http://stevenwilsonmarketing.blogspot.com/2007/11/tired-of-diggthen-try-mixx.html" target="_blank">Tired of Digg? Then Try Mixx</a> &#8211; Wow, not too many people seem to like big Digg.</li>
<li><a href="http://collective-thoughts.com/2007/11/28/what-a-mixx-up-interview-with-mixx-founder-chris-mcgill/" target="_blank">What A Mixx Up: Interview With Mixx Founder Chris McGill</a> &#8211; Brian Wallace does an interview with Mixx founder Chris McGill.</li>
<li><a href="http://seo2.0.onreact.com/12-reasons-to-join-mixx-and-abandon-digg" target="_blank">12 Reasons to Join Mixx and Abandon Digg</a> &#8211; 12 more reasons to join Mixx.</li>
<li><a href="http://theaffiliatetruth.com/2007/11/29/mixx/" target="_blank">Getting into the Mixx</a> &#8211; More views on Mixx.</li>
<li><a href="http://frozen2late.wordpress.com/2007/11/30/mixx-my-blend-of-the-web/" target="_blank">Mixx: My Blend of the Web</a> &#8211; Her thoughts of Mixx.</li>
<li><a href="http://www.viperchill.com/blog/i-love-mixx-but-im-still-a-digger/" target="_blank">I Love Mixx, but I’m Still a Digger</a> &#8211; Some will always be a slave to Digg.</li>
<li><a href="http://thediggcoach.blogspot.com/2007/11/its-in-mixx.html" target="_blank">It’s In The Mixx</a> &#8211; Some more Mixx Info.</li>
<li><a href="http://www.linkbaitme.com/2007/11/24/why-digg-should-be-scared-of-mixx/" target="_blank">Why Digg Should Be Scared of Mixx</a> &#8211; Why Mixx should be causing Digg to shake in their loafers.</li>
</ol>
<p>That should get you started for now. Mixx looks like it could be a serious Digg contender with some work. Leave any Mixx resources you have in a comment so I can add them in later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smmguru.com/2008/10/15/20-mixx-resources-to-help-you-off-your-digg-high/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>89 Twitter Tools, Articles, and Resources</title>
		<link>http://www.smmguru.com/2008/10/04/89-twitter-tools-articles-and-resources</link>
		<comments>http://www.smmguru.com/2008/10/04/89-twitter-tools-articles-and-resources#comments</comments>
		<pubDate>Sat, 04 Oct 2008 18:54:50 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[lists]]></category>

		<guid isPermaLink="false">http://www.smmguru.com/?p=301</guid>
		<description><![CDATA[Now that you know Twitter is a powerful marketing tool, it&#8217;s time to get familiar. Heres 89 tools, articles, and resources sorted into categories. Use these to create a powerful Twitter following, and increase the visibility of your brand.
Don&#8217;t forget to bookmark and subscribe!
 Twitter 101:      
The Big Juicy Twitter Guide
Twictionary &#8211; A dictionary for Twitter.
TwitDir [...]]]></description>
			<content:encoded><![CDATA[<p>Now that you know Twitter is a powerful marketing tool, it&#8217;s time to get familiar. Heres 89 tools, articles, and resources sorted into categories. Use these to create a powerful Twitter following, and increase the visibility of your brand.</p>
<p>Don&#8217;t forget to bookmark and subscribe!</p>
<ol> <strong>Twitter 101:</strong>      </p>
<li><a href="http://www.caroline-middlebrook.com/blog/twitter-guide/">The Big Juicy Twitter Guide</a></li>
<li><a href="http://twictionary.pbwiki.com/">Twictionary</a> &#8211; A dictionary for Twitter.</li>
<li><a href="http://twitdir.com/">TwitDir</a> &#8211; Another Twitter directory.</li>
<li><a href="http://blog.twitter.com/">The Twitter Blog</a></li>
<li><a href="http://explore.twitter.com/">Explore Twitter</a></li>
<p><strong>Twitter Media:</strong></p>
<li><a href="http://twitpic.com/">TweetPic</a></li>
<li><a href="http://www.twitxr.com/">Twitxr</a></li>
<li><a href="http://www.phoreo.com/twittershare/">Twittershare</a></li>
<li><a href="http://snaptweet.com/">SnapTweet</a> &#8211; Send Flickr photos to Twitter.<a href="http://retweet.com/timer"> </a> </li>
<li><a href="http://twiddeo.com/">Twiddeo</a> &#8211; Twitter plus video.</li>
<li><a href="http://www.twittergram.com/">TwitterGram</a> &#8211; Share audio.</li>
<li><a href="http://twitsay.com/">TwitSay</a> &#8211; Give your Twitter account a voice.</li>
<p><strong>Twitter Stats:</strong></p>
<li><a href="http://tweetburner.com/">TweetBurner</a> &#8211; Track what happens with the links you share.</li>
<li><a href="http://twitturly.com/">Twitt(url)y</a> &#8211; Tracks what URLs Twitter users are talking about.</li>
<li><a href="http://xefer.com/twitter/mciocco">Twitter Charts</a></li>
<li><a href="http://www.twitstat.com/cgi-bin/view.pl">Twitstat</a></li>
<li><a href="http://tweetstats.com/">TweetStats</a></li>
<li><a href="http://twitterbuzz.com/">TwitterBuzz</a> &#8211; What people are linking to.</li>
<li><a href="http://www.twittermeter.com/">Twittermeter</a></li>
<li><a href="http://www.tweetvolume.com/">Tweet Volume</a> &#8211; Enter words or phrases and see how often  they appear on Twitter.</li>
<li><a href="http://twittervision.com/">Twitter Vision</a><a href="http://twittervision.com/"> </a> </li>
<li><a href="http://www.twitterholic.com/">Twitterholic</a></li>
<p><strong>Friends &amp; Followers:</strong></p>
<li><a href="http://friendfeed.com/">FriendFeed</a> &#8211; Discover what your friends are sharing.</li>
<li><a href="http://dossy.org/twitter/karma/">Twitter Karma</a></li>
<li><a href="http://www.tweetwheel.com/">TweetWheel</a> &#8211; Find out which of your Twitter friends know each other.</li>
<li><a href="http://whoshouldifollow.com/">Who Should I Follow?</a> &#8211; Twitter Friend Recommendations.</li>
<li><a href="http://www.intwition.com/">Intwition</a></li>
<li><a href="http://crowdstatus.com/Default.aspx">CrowdStatus</a> &#8211; Create a crowd.</li>
<li><a href="http://mytweeple.com/">My Tweeple</a></li>
<li><a href="http://www.grouptweet.com/">GroupTweet</a></li>
<li><a href="http://twitter100.com/">Twitter 100</a></li>
<li><a href="http://quotably.com/">Quotably</a> &#8211; Follow Twitter conversations.</li>
<li><a href="http://www.twitterlocal.net/">TwitterLocal</a></li>
<li><a href="http://www.twitterverse.com/">TwitterVerse</a></li>
<li><a href="http://twemes.com/">Twemes</a> &#8211; Twitter memes.</li>
<li><a href="http://www.tweetmeme.com/">Tweetmeme</a></li>
<li><a href="http://www.twitterwho.com/">TwitterWho</a> &#8211; Batch people search.</li>
<p><strong>Spam Protection:</strong></p>
<li><a href="http://twitterblacklist.com/">The Twitter Blacklist</a></li>
<li><a href="http://twerpscan.com/">Twitter Twerp Scan</a></li>
<li><a href="http://twittersnooze.com/">Twitter Snooze</a></li>
<p><strong>Twitter Organization:</strong></p>
<li><a href="http://socialthing.com/">Socialthing</a></li>
<li><a href="http://twittercal.com/">Twittercal</a> &#8211; Tweet your Google calendar.</li>
<li><a href="http://persistent.info/twitter-digest/">Twitter Digest</a></li>
<li><a href="http://twitku.com/">Twitku</a> &#8211; Read posts on Twitter, Jaiku and Pownce.</li>
<li><a href="http://retweet.com/timer">Twitter Timer</a> &#8211; Set an alarm for things you need to remember.</li>
<li><a href="http://www.alexgirard.com/twitticious/">Twitt.icio.us</a> &#8211; Send links from Twitter to <a href="http://del.icio.us/">del.icio.us</a>.</li>
<li><a href="http://twitterwhere.mattking.org/">Twitter Where</a></li>
<p><strong>Twitter Tools:</strong></p>
<li><a href="http://summize.com/">Summize</a> &#8211; Search Twitter in real time.</li>
<li><a href="http://www.google.com/coop/cse?cx=004053080137224009376%3Aicdh3tsqkzy">Twitter Search</a> &#8211; A customized search engine for  Twitter.</li>
<li><a href="http://www.youtwit.co.uk/">YouTwit</a></li>
<li><a href="http://twittearth.com/">TwittEarth</a><a href="http://twictionary.pbwiki.com/"> </a> </li>
<li><a href="http://www.twhirl.org/">Twhirl</a> &#8211; A desktop client for Twitter.</li>
<li><a href="http://getsnitter.com/">Snitter</a> &#8211; Desktop client for Mac and Windows.</li>
<li><a href="http://iconfactory.com/software/twitterrific">Twitterific</a> &#8211; Desktop client for Mac.</li>
<li><a href="http://code.google.com/p/gtwitter/">gTwitter</a> &#8211; Desktop client for Linux.</li>
<li><a href="http://windowsvistablog.com/blogs/windowsexperience/archive/2007/12/26/twitter-with-friends-using-the-wpf-client-witty.aspx">Witty</a> &#8211; Desktop client for Vista.</li>
<li><a href="http://rareedge.com/twitteroo/">Twitteroo</a> &#8211; Desktop client for the PC.</li>
<li><a href="http://drikin.com/twitterpod/">TwitterPod</a> &#8211; Desktop client for Mac.</li>
<li><a href="http://live.gnome.org/DanielMorales/Twitux">Twitux</a> &#8211; Desktop client for Gnome.</li>
<li><a href="http://www.orangatame.com/products/twitterberry/">Twitterberry</a> &#8211; Mobile client for Blackberry.</li>
<li><a href="http://emailtwitter.com/">Email Twitter</a> &#8211; Mobile client.</li>
<li><a href="http://www.infinitumsoftware.com/twobile">Twoble</a> &#8211; Mobile client for Windows Mobile Pocket PCs.</li>
<p><strong>Twitter for Email:</strong></p>
<li><a href="http://www.twittermail.com/">TwitterMail</a></li>
<li><a href="http://www.techhit.com/OutTwit/">OutTwit</a></li>
<p><strong>Twitter IM:</strong></p>
<li><a href="http://twitterim.com/">TwitterIM</a></li>
<p><strong>Twitter Widgets:</strong></p>
<li><a href="http://widgets.opera.com/widget/7206/">Twitter Opera Widget</a></li>
<li><a href="http://www.widgetbox.com/widget/twidget">Twitter Widget</a></li>
<li><a href="http://arsecandle.org/twadget/">Twadget</a></li>
<p><strong>Other Twitter Articles + Resources</strong></p>
<li><a href="http://www.smmguru.com/2008/10/01/how-to-find-your-target-audience-on-twitter" target="_blank">How To Find Your Target Audience on Twitter</a> &#8211; SmmGuru</li>
<li><a href="http://www.smmguru.com/2008/09/11/twitter-is-a-tool-you-might-as-well-use-it">Twitter Is A Tool! You Might As Well Use It</a> &#8211; SmmGuru</li>
<li><a href="http://www.smmguru.com/2008/09/30/easy-way-to-get-more-twitter-followers-from-your-blog">Easy Way To Get More Twitter Followers From Your Blog</a> &#8211; SmmGuru</li>
<li><a href="http://www.smmguru.com/2008/09/26/how-does-twitter-define-spam">How Does Twitter Define Spam</a> &#8211; SmmGuru</li>
<li><a href="http://www.smmguru.com/2008/09/22/7-tips-for-new-twitter-accounts">7 Tips For New Twitter Accounts</a> &#8211; SmmGuru</li>
<li><a href="http://www.horsepigcow.com/2008/04/21/tweeting-for-companies-101/">Tweeting for Companies 101</a> &#8211; HorsePigCow</li>
<li><a href="http://www.problogger.net/archives/2008/05/08/5-tips-to-grow-your-twitter-presence/">5 Tips to Grow Your Twitter Presence</a> &#8211; ProBlogger</li>
<li><a href="http://socialmediatrader.com/13-odd-ways-to-use-twitter/">13 Odd Ways to Use Twitter</a> &#8211; Social Media Trader</li>
<li><a href="http://www.clickpopmedia.com/2008/05/05/twitter-feeds-made-simple/">Twitter Feeds Made Simple</a> &#8211; ClickPopMedia</li>
<li><a href="http://www.commoncraft.com/Twitter">Video: Twitter in Plain English</a> &#8211; Common Craft</li>
<li><a href="http://www.marketingvox.com/how-to-using-twitter-to-build-brand-integrity-038162/">How to Use Twitter to Build Brand Integrity</a> &#8211; Marketing Vox</li>
<li><a href="http://www.businessandblogging.com/twitter-and-business-the-conclusion/">Twitter and Business: The Conclusion</a> &#8211; Business and Blogging</li>
<li><a href="http://www.readwriteweb.com/archives/twitter_for_journalists.php">How We Use Twitter for Journalism</a> &#8211; ReadWriteWeb</li>
<li><a href="http://valleywag.com/387197/10-things-twitter-users-should-not-do">10 Things Twitter Users Should Not Do</a> &#8211; Valley Wag</li>
<li><a href="http://thepaisano.wordpress.com/2008/04/04/twitter-hashtags-and-groups/">Twitter Hashtags and Groups</a> &#8211; American Pai</li>
<li><a href="http://mashable.com/2007/05/06/8-awesome-firefox-plugins-for-twitter/">8 Awesome Firefox Plugins for Twitter</a> &#8211; Mashable</li>
<li><a href="http://www.readwriteweb.com/archives/10_ways_twitter_can_boost_your_social_news_profile.php">10 Ways Twitter Can Boost Your Social News Profile</a> &#8211; ReadWriteWeb</li>
<li><a href="http://www.blogherald.com/2008/05/05/copyright-and-twitter/">Copyright and Twitter</a> &#8211; Blog Herald</li>
<li><a href="http://www.web-strategist.com/blog/2008/04/05/my-essential-twitter-tools/">My Essential Twitter Tools</a> &#8211; Web-Strategist.com</li>
<li><a href="http://www.techcrunch.com/2008/04/22/twitter-may-not-have-to-care-about-uptime-any-longer/">Twitter May Not Have to Worry About Uptime Anymore</a> &#8211; TechCrunch</li>
<li><a href="http://www.scripting.com/stories/2008/05/04/whyDecentralizingTwitterIs.html">Why Decentralizing Twitter is so Important</a> &#8211; Scripting.com</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.smmguru.com/2008/10/04/89-twitter-tools-articles-and-resources/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Master Collection Of 139 RSS Tools And Articles By Category</title>
		<link>http://www.smmguru.com/2008/10/03/master-collection-of-139-rss-tools-and-articles-by-category</link>
		<comments>http://www.smmguru.com/2008/10/03/master-collection-of-139-rss-tools-and-articles-by-category#comments</comments>
		<pubDate>Fri, 03 Oct 2008 12:04:06 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social Media Optimization]]></category>
		<category><![CDATA[lists]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://www.smmguru.com/?p=307</guid>
		<description><![CDATA[RSS is one of your most valuable tools as a social media marketer. Here is a list of 139 tools and articles that will let you master the craft of converting visitors to subscribers, and increasing your return traffic. Resources include feed creation, promotion, stats, conversion, plugins, validation, and more. Don&#8217;t forget to bookmark and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-310" style="float:right; margin:0 0 0 10px;" title="getmoneyrss" src="http://www.smmguru.com/wp-content/uploads/2008/10/getmoneyrss.png" alt="" width="117" height="116" />RSS is one of your most valuable tools as a social media marketer. Here is a list of 139 tools and articles that will let you master the craft of converting visitors to subscribers, and increasing your return traffic. Resources include feed creation, promotion, stats, conversion, plugins, validation, and more. <strong>Don&#8217;t forget to bookmark and comment if you have some to add.</strong></p>
<ol> <strong>Creating RSS Feeds</strong>   </p>
<li><a href="http://www.mnot.net/rss/tutorial/">RSS Tutorial from mnot.net</a></li>
<li><a href="http://sitearticles.com/cms/show/63.html">RSS Tutorial from SiteArticles.com</a></li>
<li><a href="http://java.sun.com/developer/technicalArticles/javaserverpages/rss_utilities/">RSS Utilities: A Tutorial</a></li>
<li><a href="http://www.w3schools.com/rss/default.asp">RSS Tutorial from W3 Schools</a></li>
<li><a href="http://www.wizard-creek.com/rss/tutorial/">RSS Tutorial &#8211; Introduction and Overview</a></li>
<li><a href="http://www.webreference.com/xml/column13/">Creating RSS Files for Your Website</a></li>
<li><a href="http://www.webreference.com/authoring/languages/xml/rss/custom_feeds/">Creating a Custom RSS Feed with PHP and MySQL</a></li>
<li><a href="http://www.webreference.com/programming/rss_feeds/">How to Create RSS Feeds with Dreamweaver</a></li>
<li><a href="http://www.petefreitag.com/item/465.cfm">How to Create an RSS 2.0 Feed</a></li>
<li><a href="http://www.downes.ca/cgi-bin/page.cgi?post=56">How to Create an RSS Feed with Notepad, a Web Server, and a Beer </a></li>
<li><a href="http://www.masternewmedia.org/news/2006/03/09/how_to_create_a_rss.htm">How to Create an RSS Feed from any Web Page</a></li>
<li><a href="http://www.devx.com/xml/Article/10790">Set Up a Simple Syndication Feed Using RSS</a></li>
<li><a href="http://searchenginewatch.com/showPage.html?page=2175271">Making an RSS Feed</a></li>
<li><a href="http://www.make-rss-feeds.com/making-an-rss-feed.htm">Make RSS Feeds</a></li>
<li><a href="http://www.create-rss.com/">Create RSS</a></li>
<p><strong>RSS Tools</strong></p>
<li><a href="http://www.feedburner.com/">FeedBurner</a></li>
<li><a href="http://fedafi.com/fedafi_wordpress_plugin.php">Fedafi WordPress plugin</a></li>
<li><a href="http://feedcycle.co.uk/">Feed Cycle</a></li>
<li><a href="http://www.urlfan.com/"> URL Fan</a></li>
<li><a href="http://www.2rss.com/software.php?page=ebayrss"> Ebay 2 RSS</a></li>
<li><a href="http://decafbad.com/trac/wiki/FeedMagick"> FeedMagick</a></li>
<li><a href="http://feedverter.com/"> Feedverter</a></li>
<li><a href="http://weblog.slower.net/archives/15"> Flickr Widget</a></li>
<li><a href="http://rockburger.com/feedster/"> RSS ZeitGeist</a></li>
<li><a href="http://www.rsscalendar.com/rss/"> RSS Calendar</a></li>
<li><a href="http://www.tagcloud.com/index.php"> Tag Cloud</a></li>
<li><a href="http://www.diodia.com/feedstoolbar.htm">Diodia</a></li>
<li><a href="http://www.rsstoolbar.com/ff.html">Headline Toolbar </a></li>
<li><a href="http://www.snapfiles.com/get/feedstoolbar.html">RSS Feeds Toolbar</a></li>
<li><a href="http://www.bytescout.com/feedscout.html">Feed Scout</a></li>
<li><a href="http://www.bytescout.com/myrsstoolbar.html">My RSS Toolbar</a></li>
<li><a href="http://www.feedrollpro.com/">Feed Roll Pro</a></li>
<li><a href="http://www.feeddigest.com/"> Feed Digest</a></li>
<li><a href="http://blogbomb.com/"> Blog Bomb</a></li>
<li><a href="http://www.feedicons.com/">Feed Icons</a></li>
<li><a href="http://www.addthis.com/"> Add This</a></li>
<li><a href="http://www.feedforall.com/public/rss-graphic-tool.htm"> Create custom icons</a></li>
<li><a href="http://www.feedforall.com/podcasting-graphics.htm"> Podcast icons</a></li>
<li><a href="http://www.toprankblog.com/tools/rss-buttons/"> RSS Button Maker</a></li>
<li><a href="http://www.rssicongallery.com/"> RSS Icon Gallery</a></li>
<li><a href="http://www.feedbutton.com/"> Feed Button</a></li>
<li><a href="http://kalsey.com/tools/buttonmaker/"> Custom Button Maker</a></li>
<p><strong>Ping Services</strong></p>
<li><a href="http://pingomatic.com/">Ping-O-Matic</a></li>
<li><a href="http://pinger.blogflux.com/"> Pinger from Blog Flux</a></li>
<li><a href="http://www.pingoat.com/"> Pingoat</a></li>
<p><strong>RSS Feed Software</strong></p>
<li><a href="http://www.extralabs.net/feed-editor.htm">Feed Editor</a></li>
<li><a href="http://www.myrsscreator.com/">MyRSSCreator</a></li>
<li><a href="http://www.rsscontentbuilder.com/">RSS Content Builder</a></li>
<li><a href="http://www.feedforall.com/">Feed for All</a></li>
<li><a href="http://reinventedsoftware.com/feeder/">Feeder</a></li>
<p><strong>RSS Feed Readers</strong></p>
<li><a href="http://feedlounge.com/">FeedLounge</a></li>
<li><a href="http://www.feedshow.com/">FeedShow</a></li>
<li><a href="http://www.rojo.com/">Rojo </a></li>
<li><a href="http://www.blogbridge.com/">Blog Bridge</a></li>
<li><a href="http://www.newsmonster.org/">News Monster</a></li>
<li><a href="http://www.pixelatedsoftware.com/products/inews/">PixelNews</a></li>
<li><a href="http://www.curiostudio.com/">GreatNews</a></li>
<li><a href="http://www.particls.com/">Particls</a></li>
<li><a href="http://anothr.com/">Anothr</a></li>
<li><a href="http://www.newsgator.com/Individuals/FeedDemon/Default.aspx">FeedDemon</a></li>
<li><a href="http://www.thinkmac.co.uk/newslife/">NewsLife</a></li>
<li><a href="http://www.gnome.org/projects/straw/">Straw</a></li>
<li><a href="http://www.rssowl.org/">RSS Owl</a></li>
<li><a href="http://www.netvibes.com/">Netvibes</a></li>
<li><a href="http://www.feedreader.com/">FeedReader</a></li>
<li><a href="http://www.bloglines.com/">Bloglines</a></li>
<li><a href="http://www.newsgator.com/">NewsGator</a></li>
<li><a href="http://e.my.yahoo.com/config/my_init?.intl=us&amp;.partner=my&amp;.from=i">My Yahoo</a></li>
<li><a href="http://www.deskshare.com/awr.aspx">Active Web Reader</a></li>
<li><a href="http://www.surfpack.com/">SurfPack</a></li>
<li><a href="http://www.awasu.com/">Awasu</a></li>
<li><a href="http://www.pageflakes.com/">Pageflakes</a></li>
<li><a href="http://www.dailyrotation.com/">Daily Rotation</a></li>
<li><a href="http://www.rssbandit.org/">RSS Bandit</a></li>
<li><a href="http://www.newzcrawler.com/">NewzCrawler</a></li>
<li><a href="http://www.kbcafe.com/juice/download.html">Juice</a></li>
<li><a href="http://www.snarfware.com/">Snarfer</a></li>
<li><a href="http://www.jetbrains.com/omea/reader/">Omea</a></li>
<li><a href="http://www.utsire.com/shrook/">Shrook</a></li>
<p><strong>RSS Monetizing</strong></p>
<li><a href="http://www.text-link-ads.com/feedvertising/"> Feedvertising</a></li>
<li><a href="http://www.feedburner.com/fb/a/commercial"> FeedBurner</a></li>
<li><a href="http://www.pheedo.com/">Pheedo</a></li>
<li><a href="http://www.orangefeed.com/"> Orange Feed</a></li>
<p><strong>RSS Forums</strong></p>
<li><a href="http://forums.digitalpoint.com/forumdisplay.php?f=78"> Digital Point</a></li>
<li><a href="http://www.webmasterworld.com/forum98/"> Webmaster World</a></li>
<li><a href="http://forum.newsgator.com/">NewsGator</a></li>
<li><a href="http://help.lockergnome.com/general/RSS-Atom-Tips-forum-66.html"> Lockergnome</a></li>
<li><a href="http://www.rssbandit.org/forum/login.asp?target=default.asp"> RSS Bandit</a></li>
<p><strong>Mobile RSS Readers</strong></p>
<li><a href="http://www.markallanson.net/html/technical/j2me/mReader.htm">mReader</a></li>
<li><a href="http://www.newsgator.com/Individuals/NewsGatorGo/">NewsGator Go</a></li>
<li><a href="http://www.pocketgear.com/software_detail.asp?id=12324">Egress</a></li>
<li><a href="http://www.litefeeds.com/">LiteFeeds</a></li>
<li><a href="http://www.mobilerss.net/">Mobilerss.net</a></li>
<li><a href="http://www.freerangeinc.com/">FreeRange</a></li>
<li><a href="http://standalone.com/palmos/quick_news/">Quick News</a></li>
<p><strong>RSS Feed Conversion</strong></p>
<li><a href="http://www.yoktu.com/feedmaker/"> Feed Maker</a></li>
<li><a href="http://www.apexoft.com/rss2speech/"> Apexoft</a></li>
<li><a href="http://www.2rss.com/software.php?page=atom2rss"> Atom2RSS</a></li>
<li><a href="http://www.nextup.com/NewsAloud/index.html"> NewsAloud</a></li>
<li><a href="http://rss2pdf.com/">RSS2PDF</a></li>
<li><a href="http://www.razorsoft.net/weblog/stories/2002/04/13/google2rss.html"> Google2RSS</a></li>
<li><a href="http://www.rss2html.com/">RSS2HTML</a></li>
<li><a href="http://www.xmlhub.com/rssgenr8.php"> RSSgenr8</a></li>
<li><a href="http://magpierss.sourceforge.net/"> Magpie RSS</a></li>
<li><a href="http://www.feedyes.com/"> FeedYes</a></li>
<li><a href="http://www.feed43.com/"> Feed43</a></li>
<li><a href="http://www.rss-to-javascript.com/"> RSS to JavaScript</a></li>
<li><a href="http://www.jsticker.com/rss-news-javascript-vertical-ticker.php"> RSS News JavaScript Ticker</a></li>
<li><a href="http://www.howdev.com/products/feedsweep/">Feed Sweep</a></li>
<li><a href="http://www.widgetbox.com/tryout/rss"> Widgetbox</a></li>
<p><strong>RSS Email Tools</strong></p>
<li><a href="http://www.newsgator.com/ngs/Ad_emailedition.aspx"> News Gator Email Edition</a></li>
<li><a href="http://www.r-mail.org/"> R-Mail</a></li>
<li><a href="http://rss2email.infogami.com/"> RSS2Email</a></li>
<li><a href="http://www.feedblitz.com/">FeedBlitz</a></li>
<li><a href="http://graemef.com/?q=project/popheadlines&amp;PHPSESSID=d822dcf90c90e5c580eeb2361026b646"> PopHeadlines</a></li>
<li><a href="http://www.rssfwd.com/"> RssFwd</a></li>
<p><strong>RSS Validation Services</strong></p>
<li><a href="http://www.walidator.com/"> Walidator</a></li>
<li><a href="http://librdf.org/rss/"> Redland RSS Validator</a></li>
<li><a href="http://feedvalidator.org/">Feed Validator</a></li>
<li><a href="http://rss.scripting.com/"> RSS Validator</a></li>
<p><strong>Various Articles</strong></p>
<li><a href="http://www.webreference.com/authoring/languages/xml/rss/intro/">Introduction to RSS</a></li>
<li><a href="http://www.whatisrss.com/">What is RSS? RSS Explained</a></li>
<li><a href="http://www.rss-specifications.com/">RSS Specifications</a></li>
<li><a href="http://cyber.law.harvard.edu/rss/rss.html">RSS 2.0 Specification</a></li>
<li><a href="http://www.rss-specifications.com/history-rss.htm">History of RSS</a></li>
<li><a href="http://www.micropersuasion.com/2006/06/35_ways_you_can.html">35 Ways You Can Use RSS Today</a></li>
<li><a href="http://www.webtechniques.com/archives/2000/02/eisenzopf/">Making Headlines with RSS</a></li>
<li><a href="http://www.webreference.com/authoring/languages/xml/rss/1/">The Evolution of RSS</a></li>
<li><a href="http://www.doshdosh.com/monetize-rss-feed-advertising/">8 Easy Ways to Monetize Your RSS Feed</a></li>
<li><a href="http://www.selfseo.com/story-19376.php">RSS &#8211; Taking it to the People</a></li>
<p><strong>Firefox RSS Extensions</strong></p>
<li><a href="http://sage.mozdev.org/">Sage</a></li>
<li><a href="http://www.mozilla.com/en-US/thunderbird/"> Thunderbird</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/2325"> RSS Ticker</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/424"> Wizz</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/4689"> Blog Rovr</a></li>
<li><a href="http://inforss.mozdev.org/"> InfoRSS</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/4979"> Beatnik</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/629"> NewsFox</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/4869"> Feed Sidebar</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.smmguru.com/2008/10/03/master-collection-of-139-rss-tools-and-articles-by-category/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Top 48 Places To Submit Your Blog</title>
		<link>http://www.smmguru.com/2008/09/30/top-48-places-to-submit-your-blog</link>
		<comments>http://www.smmguru.com/2008/09/30/top-48-places-to-submit-your-blog#comments</comments>
		<pubDate>Tue, 30 Sep 2008 13:36:04 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Optimization]]></category>
		<category><![CDATA[lists]]></category>

		<guid isPermaLink="false">http://www.smmguru.com/?p=273</guid>
		<description><![CDATA[One of the best things you can do when starting a new blog is submit it ti every blog related site you can. Here are 48 of the best places you can submit your blog. This will help create backlinks to your blog and get you some starting traffic that you can use to grow. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-275" style="float:left; margin:0 10px 0 0;" title="getmoney" src="http://www.smmguru.com/wp-content/uploads/2008/09/getmoney.png" alt="" width="100" height="100" />One of the best things you can do when starting a new blog is submit it ti every blog related site you can. Here are 48 of the best places you can submit your blog. This will help create backlinks to your blog and get you some starting traffic that you can use to grow. And we all know what big traffic brings&#8230; Direct links to submit pages included.</p>
<p><strong>Top 48 Places To Submit Your Blog &#8211; Don&#8217;t Forget To Bookmark</strong></p>
<ul>
<li><a href="http://www.dmoz.org/Computers/Internet/On_the_Web/Weblogs" target="_new">Dmoz Open Directory Project</a></li>
<li><a href="http://www.b4blogs.com" target="_new">B4Blogs Directory</a> &#8211; <a href="http://www.b4blogs.com/submit.php" target="_new">Submit Page</a></li>
<li><a href="http://www.bestblogs.org" target="_new">Best Blogs</a> &#8211; <a href="http://www.bestblogs.org/submit.php" target="_new">Submit Page</a></li>
<li><a href="http://tailrank.com" target="_new">TailRank</a></li>
<li><a href="http://www.blawg.com" target="_new">Blawg</a> &#8211; <a href="http://www.blawg.com/CreateUser.aspx" target="_new">Submit Page</a></li>
<li><a href="http://www.topblogarea.com" target="_new">Top Blog Area</a> &#8211; <a href="http://www.topblogarea.com/add.php" target="_new">Submit Page</a></li>
<li><a href="http://www.biggerblogger.com" target="_new">Bigger Blogger</a></li>
<li><a href="http://www.blogadr.com" target="_new">BlogAdr</a> &#8211; <a href="http://www.blogadr.com/addablog.html" target="_new">Submit Page</a></li>
<li><a href="http://www.avivadirectory.com target=" target="_new">Aviva Directory</a> &#8211; <a href="http://www.avivadirectory.com/submit.php" target="_new">Submit Page</a></li>
<li><a href="http://www.blogbunch.com" target="_new">BlogBunch</a> &#8211; <a href="http://www.blogbunch.com/suggest" target="_new">Submit Page</a></li>
<li><a href="http://www.blogcode.com" target="_new">BlogCode</a> &#8211; <a href="http://www.blogcode.com/signup.php" target="_new">Submit Page</a></li>
<li><a href="http://www.blog-directory.org" target="_new">Blog Directory</a> &#8211; <a href="http://www.blog-directory.org/add-blog.php" target="_new">Submit Page</a></li>
<li><a href="http://www.blog-watch.com" target="_new">Blog Watch</a></li>
<li><a href="http://www.5starblogs.com target=">5 Star Blogs</a> &#8211; <a href="http://www.5starblogs.com/Add_blog" target="_new">Submit Page</a></li>
<li><a href="http://www.bloggapedia.com" target="_new">Bloggapedia</a></li>
<li><a href="http://www.bloggernow.com" target="_new">BloggerNow</a></li>
<li><a href="http://www.bloggingfusion.com" target="_new">Blogging Fusion</a> &#8211; <a href="http://www.bloggingfusion.com/submit.php" target="_new">Submit Page</a></li>
<li><a href="http://www.readablog.com" target="_new">Read A Blog</a> &#8211; <a href="http://www.readablog.com/AddFeed.aspx" target="_new">Submit Page</a></li>
<li><a href="http://www.spillbean.com" target="_new">SpillBean</a></li>
<li><a href="http://blogintro.com" target="_new">BlogIntro</a> &#8211; <a href="http://blogintro.com/?page_id=92" target="_new">Submit Page</a></li>
<li><a href="http://www.bloglisting.com" target="_new">Blog Listing</a> &#8211; <a href="http://www.bloglisting.com/addablog.html" target="_new">Submit Page</a></li>
<li><a href="http://www.bloggernity.com" target="_new">Bloggernity</a> &#8211; <a href="http://www.bloggernity.com/cgi-bin/add.cgi" target="_new">Submit Page</a></li>
<li><a href="http://www.bloglisting.net" target="_new">BlogListing.net</a> &#8211; <a href="http://www.bloglisting.net/submit.php" target="_new">Submit Page</a></li>
<li><a href="http://www.blogoozle.com" target="_new">Blogoozle</a> &#8211; <a href="http://www.blogoozle.com/submit.php" target="_new">Submit Page</a></li>
<li><a href="http://www.blogpulse.com">BlogPulse</a> &#8211; <a href="http://www.blogpulse.com/submit.html" target="_new">Submit Page</a></li>
<li><a href="http://www.technorati.com" target="_new">Technorati</a> &#8211; <a href="http://www.technorati.com/ping.html" target="_new">Submit Page</a></li>
<li><a href="http://www.blogrankings.com" target="_new">BlogRankings</a></li>
<li><a href="http://www.blogarama.com" target="_new">Blogarama</a> &#8211; <a href="http://www.blogarama.com/add-a-site" target="_new">Submit Page</a></li>
<li><a href="http://www.blogs-collection.com" target="_new">Blogs Collection</a> &#8211; <a href="http://www.blogs-collection.com/submit" target="_new">Submit Page</a></li>
<li><a href="http://www.myblogdirectory.net" target="_new">MyBlogDirectory</a></li>
<li><a href="http://www.blogsweet.com" target="_new">BlogSweet</a></li>
<li><a href="http://www.blogtoplist.com" target="_new">Blog Top List</a> &#8211; <a href="http://www.blogtoplist.com/submit-blog.html" target="_new">Submit Page</a></li>
<li><a href="http://www.bloguniverse.com" target="_new">Blog Universe</a> &#8211; <a href="http://www.bloguniverse.com/suggest-link.php?id=0" target="_new">Submit Page</a></li>
<li><a href="http://www.sarthak.net/blogz" target="_new">Blogz</a> &#8211; <a href="http://www.sarthak.net/blogz/add.php" target="_new">Submit Page</a></li>
<li><a href="http://www.britblog.com" target="_new">Brit Blog</a> &#8211; <a href="http://www.britblog.com/register/index.php?location_id=1" target="_new">Submit Page</a></li>
<li><a href="http://www.blogadr.com/addablog.html">Blog Dust</a> &#8211; <a href="http://www.blogdust.com/blog-directory/submit.php" target="_new">Submit Page</a></li>
<li><a href="http://www.blogdup.com" target="_new">Blogdup</a> &#8211; <a href="http://www.blogdup.com/submit.php" target="_new">Submit Page</a></li>
<li><a href="http://dir.blogflux.com" target="_new">BlogFlux</a> &#8211; <a href="http://www.blogflux.com/add.php" target="_new">Submit Page</a></li>
<li><a href="http://www.getblogs.com" target="_new">GetBlogs</a></li>
<li><a href="http://www.globeofblogs.com" target="_new">Globe of Blogs</a> &#8211; <a href="http://www.globeofblogs.com/register.php" target="_new">Submit Page</a></li>
<li><a href="http://portal.eatonweb.com" target="_new">Eaton Web Blog Directory</a></li>
<li><a href="http://findingblog.com" target="_new">FindingBlog</a> &#8211; <a href="http://findingblog.com/add_blog.php?cat=" target="_new">Submit Page</a></li>
<li><a href="http://www.iblogbusiness.com" target="_new">I Blog Business</a> &#8211; <a href="http://www.iblogbusiness.com/add.html" target="_new">Submit Page</a></li>
<li><a href="http://www.lsblogs.com" target="_new">LS Blogs</a> &#8211; <a href="http://www.lsblogs.com/howtosubmit.php" target="_new">Submit Page</a></li>
<li><a href="http://www.blog-search.com" target="_new">BlogSearch</a> &#8211; <a href="http://www.blog-search.com/blog-submission.html" target="_new">Submit Page</a></li>
<li><a href="http://strategicboard.com" target="_new">Strategic Board</a> &#8211; <a href="http://strategicboard.com/?s=h:addblog" target="_new">Submit Page</a></li>
<li><a href="http://www.superblogdirectory.com" target="_new">Super Blog Directory</a> &#8211; <a href="http://www.superblogdirectory.com/submit.php" target="_new">Submit Page</a></li>
<li><a href="http://blogsforsmallbusiness.com/directory" target="_new">Small Business Blog Directory</a> &#8211; <a href="http://blogsforsmallbusiness.com/directory/add.html" target="_new">Submit Page</a></li>
</ul>
<p>For all of you novices this should get you started on the right foot.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smmguru.com/2008/09/30/top-48-places-to-submit-your-blog/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>36 Resources To Creating A Powerful StumbleUpon Account</title>
		<link>http://www.smmguru.com/2008/09/29/36-resources-to-creating-a-powerful-stumbleupon-account</link>
		<comments>http://www.smmguru.com/2008/09/29/36-resources-to-creating-a-powerful-stumbleupon-account#comments</comments>
		<pubDate>Mon, 29 Sep 2008 18:30:28 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[StumbleUpon]]></category>
		<category><![CDATA[smm]]></category>
		<category><![CDATA[SMO]]></category>

		<guid isPermaLink="false">http://www.smmguru.com/?p=246</guid>
		<description><![CDATA[Building a strong StumbleUpon account can lead you to large success in building an audience. Here are 36 different articles and tips on how to build the best StumbleUpon account possible.
Don&#8217;t forget to subscribe to SMMGuru.com!
StumbleUpon 101

StumbleUpon Official FAQ The O.G. version.
How To Stumble &#8211; Pretty straight forward, they will tech you how to stumble.
Unoffical [...]]]></description>
			<content:encoded><![CDATA[<p>Building a strong StumbleUpon account can lead you to large success in building an audience. Here are 36 different articles and tips on how to build the best StumbleUpon account possible.</p>
<p><strong>Don&#8217;t forget to </strong><strong><a href="http://feeds.feedburner.com/SmmGuru" target="_blank">subscribe to SMMGuru.com!</a></strong></p>
<p><strong>StumbleUpon 101</strong></p>
<ul>
<li><a href="http://www.stumbleupon.com/help.html">StumbleUpon Official FAQ</a> The O.G. version.</li>
<li><a title="How To Stumble" href="http://www.howtostumble.com/">How To Stumble</a> &#8211; Pretty straight forward, they will tech you how to stumble.</li>
<li><a href="http://stumbleupon.theprawn.com/">Unoffical StumbleUpon FAQ</a> &#8211; Again&#8230; Pretty self-explanatory</li>
<li><a href="http://blogpond.com.au/2007/07/15/beginners-guide-to-stumbleupon/">Beginners Guide to StumbleUpon</a></li>
<li><a href="http://help.group.stumbleupon.com/forum/">StumbleUpon Help Forum</a> &#8211; StumbleUpon’s official help forums.</li>
</ul>
<p><strong>Become A StumbleUpon Celebrity</strong></p>
<ul>
<li><a href="http://www.stumblerank.com/">StumbleRank</a> &#8211; Ranks the top StumbleUpon users.</li>
<li><a href="http://www.doshdosh.com/how-to-become-a-top-stumbleupon-user-or-why-shouldnt-bother/">How to Become a Top StumbleUpon User (or Why You Really Shouldn’t Bother)</a></li>
<li><a href="http://www.terencechang.com/2007/07/06/stumbleupon-how-to-make-yourself-a-good-stumbler/">StumbleUpon &#8211; How to make yourself a good stumbler</a></li>
<li><a title="StumbleUpon Gods" href="http://www.stumblegods.com/">stumbleGods</a> &#8211; Learn StumbleUpon from those with the most powerful thumbs on the service.</li>
<li><a href="http://www.mahalo.com/How_to_Use_StumbleUpon_Like_a_Pro">How to Use StumbleUpon Like a Pro</a></li>
<li><a href="http://nowsourcing.com/blog/2007/10/02/how-do-you-become-a-stumbleupon-power-user-ask-a-16-year-old/">How do you become a StumbleUpon power user? Ask a 16 year old.</a></li>
<li><a href="http://www.singlegrain.com/blog/making-a-power-account-on-stumbleupon-082607/">Making a Power Account on StumbleUpon</a></li>
</ul>
<p><strong>The StumbleUpon Network</strong></p>
<ul>
<li><a href="http://www.seomoz.org/blog/whiteboard-friday-how-to-win-friends-influence-people">Whiteboard Friday &#8211; “How to Win Friends &amp; Influence People”</a> &#8211; SEOMOZ video on establishing yourself on these networks.</li>
<li><a href="http://www.problogger.net/archives/2007/09/26/building-your-blog-with-stumbleupon/">Building Your Blog with StumbleUpon</a></li>
<li><a title="Share Your Stuff: Effectively and Ethically Submitting Pages to StumbleUpon &amp; Stumblers" href="http://allsux.wordpress.com/2007/08/13/share-your-stuff-effectively-and-ethically-using-stumbleupon-to-share-your-own-pages/">Share Your Stuff: Effectively and Ethically Submitting Pages to StumbleUpon &amp; Stumblers</a></li>
<li><a title="Exchange Stumbles to Promote Your Website" href="http://www.stumblexchange.com/">stumbleXchange</a> &#8211; Use at your own risk!</li>
<li><a href="http://www.terencechang.com/2007/07/19/are-you-banned-stumblupon-consequence/">Are you banned by StumbleUpon? What is the consequence?</a></li>
<li><a href="http://ventureskills.wordpress.com/2007/07/14/organic-stumbling-tip/">Organic Stumbling Tip</a></li>
</ul>
<p><strong>Use StumbleUpon For Traffic</strong></p>
<ul>
<li><a title="A Comprehensive Guide to StumbleUpon: How to Build Massive Traffic to Your Website" href="http://www.doshdosh.com/a-comprehensive-guide-to-stumbleupon-how-to-build-massive-traffic-to-your-website-and-monetize-it/">A Comprehensive Guide to StumbleUpon: How to Build Massive Traffic to Your Website</a> &#8211; A great article at Dosh Dosh on how to create a powerful StumbleUpon account.</li>
<li><a title="How to Draw StumbleUpon Users Into Your Blog" href="http://www.problogger.net/archives/2007/08/14/how-to-draw-stumbleupon-users-into-your-blog/">How to Draw StumbleUpon Users Into Your Blog</a> &#8211; A nice ProBlogger.net post on retaining your StumbleUpon traffic.</li>
<li><a href="http://www.webbyonline.com/2007/06/29/how-to-use-stumbleupon-to-promote/">How to Use StumbleUpon to Promote</a> &#8211; Information on using StumbleUpon as a promotional tool.</li>
<li><a href="http://www.doshdosh.com/stumbleupon-optimization-leveraging-photo-stumbles-for-more-web-traffic/">StumbleUpon Optimization: Leveraging Photo Stumbles for More Web Traffic</a> &#8211; Learn how pictures in your content can induce traffic from StumbleUpon.</li>
<li><a href="http://www.searchenginejournal.com/the-why-how-and-who-of-marketing-in-stumbleupon/4470/">The Why, How and Who of Marketing in StumbleUpon</a> &#8211; Combining StumbleUpon with marketing.</li>
<li><a href="http://searchengineland.com/070724-090005.php">5 Tactics for Driving Traffic From StumbleUpon</a> &#8211; Five more ways to drive traffic with StumbleUpon.</li>
<li><a href="http://www.dailymoolah.com/2007/08/29/the-ultimate-guide-to-leveraging-stumbleupon/">The Ultimate Guide to Leveraging StumbleUpon</a> &#8211; An article on leveraging StumbleUpon with stats included.</li>
<li><a href="http://www.ppcthink.com/2007/10/09/how-important-is-stumbleupon-going-to-be/">How Important is StumbleUpon?</a> &#8211; A thorough look at StumbleUpon.</li>
</ul>
<p><strong>Business Use of StumbleUpon</strong></p>
<ul>
<li><a href="http://www.problogger.net/archives/2007/08/17/run-a-stumbleupon-advertising-campaign-for-your-blog/">Run a StumbleUpon Advertising Campaign For Your Blog</a> &#8211; Use StumbleUpon&#8217;s advertising to drive traffic to your blog.</li>
<li><a href="http://www.seonewsblog.com/stumbleupon-can-get-your-adsense-account-banned-for-invalid-impressions-fraud">Stumbleupon can get your AdSense Account Banned for Invalid Impressions Fraud</a> &#8211; An important read for anyone who makes most of their money from AdSense.</li>
<li><a title="How to Use StumbleUpon for Your Business: The Definitive Guide" href="http://www.10e20.com/blog/2007/02/23/how-to-use-stumbleupon-for-your-business-the-definitive-guide/">How to Use StumbleUpon for Your Business: The Definitive Guide</a> &#8211; A break down of StumbleUpon for Business users.</li>
</ul>
<p><strong>Advanced Topics</strong></p>
<ul>
<li><a href="http://stumbleupon.wikia.com/wiki/Advanced_Stumbling">Advanced Stumbling</a> &#8211; A wiki page with some advanced Stumbling tactics discussed.</li>
<li><a href="http://www.ppcthink.com/2007/10/08/using-stumbleupon-photoblog-it/">Using StumbleUpon PhotoBlog It!</a></li>
<li><a href="http://ventureskills.wordpress.com/2007/09/19/stumbleupon-mathematics-for-stumblers/">Stumbleupon mathematics for stumblers</a> &#8211; Learn how StumbleUpon decides where to send its users.</li>
</ul>
<p><strong>Third Party StumbleUpon Tools</strong></p>
<ul>
<li><a href="http://tuggo.org/projects/stumblecrumble/">StumbleCrumble WordPress Plugin</a> &#8211; Show your latest Stumbles.</li>
<li><a href="http://www.facebook.com/apps/application.php?api_key=fb87e68213e47190451f9b29fd706b25">StumbleUpon Facebook Application</a> &#8211; Same as the above, but for Facebook.</li>
<li><a href="http://www.ejeliot.com/blog/78">Del.icio.us Stumble</a> &#8211; Convert your del.icio.us bookmarks into stumbles.</li>
<li><a href="http://www.jonasjohn.de/lab/swe/">StumbleUpon WYSIWYG Editor</a></li>
</ul>
<p>And there you have it. Using these great articles and tools you should be able to take over the web (or maby just your niche <img src='http://www.smmguru.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ) in no time. The great advantage to building strong accounts on sites like these is that later on when you are starting a new project for example you have some leverage. Once it&#8217;s built, you have a powerful user base at your fingertips.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smmguru.com/2008/09/29/36-resources-to-creating-a-powerful-stumbleupon-account/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Top 198 Social Media Sites By Niche</title>
		<link>http://www.smmguru.com/2008/09/25/top-198-social-media-sites-by-niche</link>
		<comments>http://www.smmguru.com/2008/09/25/top-198-social-media-sites-by-niche#comments</comments>
		<pubDate>Thu, 25 Sep 2008 15:18:16 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.smmguru.com/?p=217</guid>
		<description><![CDATA[For those of you who claim social media cannot help you due to the niche you are in, I highly doubt it. Here is a list of the top social media sites per their niche. Check them out and start using them to your benefit, these sites can generate a large amount of traffic when [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who claim social media cannot help you due to the niche you are in, I highly doubt it. Here is a list of the top social media sites per their niche. Check them out and start using them to your benefit, these sites can generate a large amount of traffic when used properly. Don&#8217;t Forget To Bookmark!</p>
<div class="linkListBox"><strong>Sports Entertinment</strong> </p>
<p><a href="http://www.fighters.com">Fighters</a><br />
<a href="http://ballhype.com/">Ballhype</a><br />
<a href="http://efans.com/">eFans</a><br />
<a href="http://fannation.com/">FanNation</a><br />
<a href="http://www.fanspot.com/">Fanspot</a><br />
<a href="http://scoreguru.com/">ScoreGuru</a><br />
<a href="http://sportsflip.com/">SportsFlip</a><br />
<a href="http://www.sportsvite.com/">Sportsvite</a><br />
<a href="http://www.wedigsports.com/">SportsCast</a></div>
<div class="linkListBox"><strong>Social Bookmarking</strong> </p>
<p><a href="http://www.blinkbits.com/">Blinkbits</a><br />
<a href="http://www.blinklist.com/">Blinklist</a><br />
<a href="http://www.blogmarks.net/">Blogmarks</a><br />
<a href="https://www.chipmark.com/Main">Chipmark</a><br />
<a href="http://www.connectedy.com/">Connectedy</a><br />
<a href="http://del.icio.us">del.icio.us</a><br />
<a href="http://de.lirio.us/">De.lirio.us</a><br />
<a href="http://www.diigo.com/">Diigo</a><br />
<a href="http://www.foxmarks.com/">Foxmarks</a><br />
<a href="http://www.furl.net/">Furl</a><br />
<a href="http://iq.lycos.co.uk/">Lycos iQ</a><br />
<a href="http://ma.gnolia.com">Ma.gnolia</a><br />
<a href="http://mobilicio.us/">Mobilicio.us</a><br />
<a href="http://www.netvouz.com/">Netvouz</a><br />
<a href="http://www.onlywire.com/">OnlyWire</a><br />
<a href="http://shadows.com/">Shadows</a><br />
<a href="http://www.simpy.com/">Simpy</a><br />
<a href="http://ekstreme.com/socializer/">Socializer</a><br />
<a href="https://favorites.live.com/">Windows Live Favorites</a></div>
<div class="linkListBox"><strong>Automotive</strong> </p>
<p><a href="http://www.autospies.com/">AutoSpies</a><br />
<a href="http://www.boompa.com/">Boompa</a><br />
<a href="http://www.cardomain.com/">CarDomain</a><br />
<a href="http://www.motorpulse.com/">Motorpulse</a></div>
<div class="linkListBox"><strong>Graduation Related</strong> </p>
<p><a href="http://www.classmates.com/">Classmates</a><br />
<a href="http://www.connectu.com/">ConnectU</a><br />
<a href="http://www.friendsreunited.com/">Friends Reunited</a><br />
<a href="http://www.graduates.com/">Graduates</a><br />
<a href="http://www.meetup.com/">Meetup</a></div>
<div class="linkListBox"><strong>Consumer Opinions</strong> </p>
<p><a href="http://www.corkd.com/">Cork’d</a> <br />
<a href="http://www.chowhound.com/">Chowhound</a> <br />
<a href="http://www.epinions.com/">Epinions</a><br />
<a href="http://www.yelp.com/">Yelp</a></div>
<div class="linkListBox"><strong>Food &amp; Cooking</strong> </p>
<p><a href="http://allrecipes.com/">All Recipes<br />
</a><a href="http://www.barmano.com/">Barmano</a><br />
<a href="http://www.fohboh.com/">FohBoh</a> <br />
<a href="http://ifoods.tv/site/index.jsp">Foods.tv</a> <br />
<a href="http://www.kitchenbug.com/">Kitchen Bug</a></div>
<div class="linkListBox"><strong>Social Dating</strong> </p>
<p><a href="http://www.chemistry.com/">Chemistry</a><br />
<a href="http://pc.crushorflush.com/index.php">Crush or Flush</a><br />
<a href="http://www.cupidslab.com/">Cupid’s Lab</a><br />
<a href="http://www.flirtomatic.com/">Flirtomatic</a><br />
<a href="http://www.speeddate.com/date/">SpeedDate</a><br />
<a href="http://www.woome.com/">WooMe</a></div>
<div class="linkListBox"><strong>Learning / Education / Reading</strong> </p>
<p><a href="http://www.bookcrossing.com/">BookCrossing</a><br />
<a href="http://www.bookins.com/">Bookins</a><br />
<a href="http://www.bookmooch.com/">BookMooch</a><br />
<a href="http://www.bookswim.com/">BookSwim</a><br />
<a href="http://www.carmun.com/">Carmun</a><br />
<a href="http://www.citeulike.org/">Citeulike</a><br />
<a href="http://www.connectviabooks.com/">Connect via Books</a><br />
<a href="http://www.goodreads.com/">Good Reads<br />
</a><a href="http://www.hitflip.co.uk/">Hitflip</a><br />
<a href="http://www.librarything.com/">LibraryThing</a><br />
<a href="http://www.shelfari.com/">Shelfari<br />
</a><a href="http://wordsy.com">Wordsy</a></div>
<div class="linkListBox"><strong>Family</strong> </p>
<p><a href="http://babblz.com/">Babbiz</a><br />
<a href="http://www.eons.com/">Eons</a><br />
<a href="http://blogoscoped.com/family/">Family 2.0</a><br />
<a href="http://famiva.com/">Famiva</a><br />
<a href="http://www.geni.com/">Geni</a><br />
<a href="http://famiva.com/">Genoom</a><br />
<a href="http://www.greatschools.net/">GreatSchools</a><br />
<a href="http://kinzin.com/">Kinzin</a><br />
<a href="http://www.momjunction.com/members/exploregroups.aspx?p=1">MomJunction</a><br />
<a href="http://www.mothersclick.com/">MothersClick</a><br />
<a href="http://www.moxie-moms.com/index.php">Moxie Moms</a><br />
<a href="http://www.myfamily.com/">MyFamily.com</a><br />
<a href="http://www.parentography.com/">Parentography</a></div>
<div class="linkListBox"><strong>Style &amp; Fashion</strong> </p>
<p><a href="http://chictini.com/">Chictini</a><br />
<a href="http://www.stylehive.com/">Stylehive</a><br />
<a href="http://threadless.com/">Threadless</a></div>
<div class="linkListBox"><strong>Networking</strong> </p>
<p><a href="http://start.aimpages.com/">AIM Pages</a><br />
<a href="http://www.bebo.com/">Bebo</a><br />
<a href="http://www.facebook.com">Facebook</a><br />
<a href="http://faves.com/home">Faves</a><br />
<a href="http://www.friendster.com/">Friendster</a><br />
<a href="http://grono.net/">Grono</a><br />
<a href="http://www.hi5.com/">Hi5</a><br />
<a href="http://www.livejournal.com/">LiveJournal</a><br />
<a href="http://www.netfriendships.com/">NetFriendships</a><br />
<a href="http://en.netlog.com/">Netlog</a><br />
<a href="http://www.orkut.com">Orkut</a><br />
<a href="http://www.passado.com/index.aspx">Passado</a><br />
<a href="http://www.profilelush.com/">ProfileLush</a><br />
<a href="http://www.skyrock.com/">Skyrock</a><br />
<a href="http://www.tagged.com/">Tagged</a><br />
<a href="http://home.services.spaces.live.com/">Windows Live Spaces</a><br />
<a href="http://360.yahoo.com/login.html?.done=http://360.yahoo.com/">Yahoo! 360</a><br />
<a href="http://www.zaadz.com/">Zaadz</a></div>
<div class="linkListBox"><strong>Health &amp; Medicine</strong> </p>
<p><a href="http://dailystrength.org/">DailyStrength</a><a href="http://www.dissectmedicine.com/"><br />
</a><a href="http://www.healthranker.com/">Health Ranker<br />
</a><a href="http://mypharmanote.com">MyPharmaNote</a><br />
<a href="http://walkertracker.com/">Walker Tracker</a><br />
<a href="http://whoissick.org/sickness/">Who is Sick?</a></div>
<div class="linkListBox"><strong>Online Marketing</strong> </p>
<p><a href="http://www.plugim.com/">PlugIM</a><br />
<a href="http://www.sphinn.com/">Sphinn</a><br />
<a href="http://www.bloggingzoom.com/">BloggingZoom</a></div>
<div class="linkListBox"><strong>Link Shares</strong> </p>
<p><a href="http://bluedot.us/front">Blue Dot</a><br />
<a href="http://www.philoi.com/">Philoi</a><br />
<a href="http://www.stumbleupon.com">StumbleUpon</a><br />
<a href="http://www.tagtooga.com/db.tag">TagTooga</a><br />
<a href="http://www.trailfire.com/">Trailfire</a></div>
<div class="linkListBox"><strong>Micro/Mobile</strong> </p>
<p><a href="http://flick.im/">FlickIM</a><br />
<a href="http://imified.com/index.htm">IMified</a><br />
<a href="http://www.jaiku.com/">Jaiku</a><br />
<a href="http://komoo.cn/">Komoo</a> &#8211; Chinese<br />
<a href="https://loopt.com/loopt/sess/index.aspx">loopt</a><br />
<a href="http://www.mbuzzy.com/">mbuzzy</a><br />
<a href="http://www.pownce.com/">Pownce</a><br />
<a href="http://radar.net/">Radar</a><br />
<a href="http://twitter.com/">Twitter</a><br />
<a href="http://www.zannel.com/index.htm">Zannel</a></div>
<div class="linkListBox"><strong>Music</strong> </p>
<p><a href="http://www.10tune.com/">10Tune</a><br />
<a href="http://jamnow.com/">JamNow</a><br />
<a href="http://www.jango.com/">Jango</a><br />
<a href="http://indistr.com/Default.aspx">Indistr</a><br />
<a href="http://www.last.fm/">Last.fm</a><br />
<a href="http://mog.com/">MOG</a><br />
<a href="http://www.purevolume.com/">Purevolume</a><br />
<a href="http://soundpedia.com/">Soundpedia</a><br />
<a href="http://www.thesixtyone.com/">thesixtyone</a></div>
<div class="linkListBox"><strong>Social News Sites</strong> </p>
<p><a href="http://blogsvine.com/">BlogsVine</a><br />
<a href="http://www.buzzflash.net/">BuzzFlash</a><br />
<a href="http://www.contentpop.com/">Content Pop</a><br />
<a href="http://www.digg.com">Digg</a><br />
<a href="http://www.fark.com/">Fark</a><br />
<a href="http://www.hubdub.com/">Hubdub</a><br />
<a href="http://www.mixx.com/">Mixx</a><br />
<a href="http://www.newsvine.com/">Newsvine</a><br />
<a href="http://www.nowpublic.com/">NowPublic</a><br />
<a href="http://www.plime.com/">Plime</a><br />
<a href="http://www.propeller.com/">Propeller</a><br />
<a href="http://www.rawsugar.com/">RawSugar</a><br />
<a href="http://www.reddit.com">Reddit</a><br />
<a href="http://www.shoutwire.com/">Shoutwire</a></div>
<div class="linkListBox"><strong>Animals</strong> </p>
<p><a href="http://www.catster.com/">Catster</a><br />
<a href="http://www.dogster.com/">Dogster</a><br />
<a href="http://www.fuzzster.com/">Fuzzster</a><br />
<a href="http://www.mycatspace.com/">MyCatSpace</a><br />
<a href="http://www.mydogspace.com/">MyDogSpace</a><br />
<a href="http://www.petside.com">PetSide</a></div>
<div class="linkListBox"><strong>Photos</strong> </p>
<p><a href="http://flickr.com/">Flickr</a><br />
<a href="http://www.fotki.com">Fotki</a><br />
<a href="http://www.fotolog.com/">Fotolog</a><br />
<a href="http://www.linkinn.com/">Linkinn</a><br />
<a href="http://my.opera.com/community/">My Opera</a><br />
<a href="http://photobucket.com/">Photbucket</a><br />
<a href="http://tagmee.com/">Tagmee</a><br />
<a href="http://www.zooomr.com/">Zoomr</a></div>
<div class="linkListBox"><strong>Professional Sites</strong> </p>
<p><a href="http://www.apsense.com/">APSense</a><br />
<a href="http://biznik.com/">Biznik</a><br />
<a href="http://www.companyloop.com/">CompanyLoop</a><br />
<a href="http://www.domystuff.com/">DoMyStuff</a><br />
<a href="http://www.doostang.com/">Doostang</a><br />
<a href="http://www.killerstartups.com/">KillerStartups</a><br />
<a href="https://www.lawyrs.net/">Lawyrs</a><br />
<a href="http://www.linkedin.com/">LinkedIn</a><br />
<a href="http://www.meetin.org/">MeetIn</a><br />
<a href="http://nethooks.com/index.php">NetHooks</a><br />
<a href="https://www.pairup.com/default.aspx">PairUp</a><br />
<a href="http://www.startupnation.com/">StartupNation</a><br />
<a href="http://www.startupping.com/">Startupping</a></div>
<div class="linkListBox"><strong>Real Estate</strong> </p>
<p><a href="http://www.trulia.com/">Trulia</a><br />
<a href="http://www.zillow.com/">Zillow</a><br />
<a href="http://zolve.com/">Zolve</a></div>
<div class="linkListBox"><strong>Tech. Industry</strong> </p>
<p><a href="http://www.cssglobe.com">CSS Globe</a><br />
<a href="http://designrelated.com/">DesignRelated</a><br />
<a href="http://www.developersniche.com/">DevelopersNiche</a><br />
<a href="http://news.ycombinator.com/news">Hacker  News</a><br />
<a href="http://slashdot.org/">Slashdot</a><br />
<a href="http://tweako.com/">Tweako</a><br />
<a href="http://swik.net/">SWiK</a></div>
<div class="linkListBox"><strong>Teens</strong> </p>
<p><a href="http://www.ecrush.com/">eCRUSH</a><br />
<a href="http://www.espinthebottle.com/">eSpintheBottle</a><br />
<a href="http://www.profileheaven.com/">Profile Heaven</a><br />
<a href="http://www.student.com/">Student.com</a><br />
<a href="http://www.stardoll.com/en/">Stardoll</a><br />
<a href="http://teenwag.com/">Teenwag</a></div>
<div class="linkListBox"><strong>Travel/Vaction</strong> </p>
<p><a href="http://www.travbuddy.com/">TravBuddy</a><br />
<a href="http://www.travellerspoint.com/">Travellerspoint</a><br />
<a href="http://www.tripadvisor.com/">Trip Advisor</a><br />
<a href="http://www.woophy.com/map/index.php">Woophy</a></div>
<div class="linkListBox"><strong>Video</strong> </p>
<p><a href="http://www.broadcaster.com/">Broadcaster</a><br />
<a href="http://www.friction.tv/ftv_home.php">Friction.tv</a><br />
<a href="http://one.revver.com/revver">Revver</a><br />
<a href="http://www.tubearoo.com/">Tubearoo</a><br />
<a href="http://www.viddler.com/">Viddler</a><br />
<a href="http://videobomb.com/">Video Bomb</a><br />
<a href="http://www.videosift.com/">Video Sift</a><br />
<a href="http://www.vimby.com/">Vimby</a><br />
<a href="http://www.youtube.com/">YouTube</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.smmguru.com/2008/09/25/top-198-social-media-sites-by-niche/feed</wfw:commentRss>
		<slash:comments>47</slash:comments>
		</item>
	</channel>
</rss>
