<?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>dizzysoft software</title>
	<atom:link href="http://www.dizzysoft.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dizzysoft.com</link>
	<description></description>
	<lastBuildDate>Mon, 09 Apr 2012 15:01:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Keeping Website Content Fresh with RSS and XSL</title>
		<link>http://www.dizzysoft.com/rss-feeds/keeping-website-content-fresh-with-rss-and-xsl/</link>
		<comments>http://www.dizzysoft.com/rss-feeds/keeping-website-content-fresh-with-rss-and-xsl/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 19:38:39 +0000</pubDate>
		<dc:creator>dz</dc:creator>
				<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.dizzysoft.com/?p=426</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
The Google Inside Search blog post from April 3rd turned the SEO world upside-down. Although Google has been telling us about changes they&#8217;ve made to the algorithm for a few months now, this one was particularly interesting. Many have already speculated about how the Google algorithm might have changed regarding anchor text, I haven&#8217;t heard [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
<p><img class="alignright size-full wp-image-427" title="Pine fresh" src="http://www.dizzysoft.com/wp-content/uploads/Pine_fresh.gif" alt="Keep your web content fresh" width="300" height="300" />The <a href="http://insidesearch.blogspot.com/2012/04/search-quality-highlights-50-changes.html">Google Inside Search blog post from April 3rd</a> turned the SEO world upside-down. Although Google has been telling us about changes they&#8217;ve made to the algorithm for a few months now, this one was particularly interesting. Many have already speculated about how the Google algorithm might have changed regarding anchor text, I haven&#8217;t heard much discussion about another significant change they mentioned: page freshness.<br />
<span id="more-426"></span><br />
Here&#8217;s what this post mentioned about page freshness and the search algorithm:</p>
<blockquote><p><em>High-quality sites algorithm data update and freshness improvements.</em> Like many of the changes we make, aspects of our high-quality sites algorithm depend on processing that’s done offline and pushed on a periodic cycle. In the past month, we’ve pushed updated data for “Panda,” as we mentioned in a recent tweet. We’ve also made improvements to keep our database fresher overall.</p></blockquote>
<blockquote><p><em>Improvements to freshness.</em> We launched an improvement to freshness late last year that was very helpful, but it cost significant machine resources. At the time we decided to roll out the change only for news-related traffic. This month we rolled it out for all queries.</p></blockquote>
<blockquote><p><em>More precise detection of old pages.</em> This change improves detection of stale pages in our index by relying on more relevant signals. As a result, fewer stale pages are shown to users.</p></blockquote>
<p>Clearly page freshness is becoming more and more of an important ranking factor.</p>
<p>So, how can we keep our pages fresh?</p>
<p>You could login to your website or CMS and simply make a couple changes on your webpage. That might make your site appear fresh but would it really be enough for Google to consider your entire page fresh and a better website than your competitors? I&#8217;m not convinced (you might be- if so, leave me a comment below)- I think we need a little more effort.</p>
<p>Luckily most of us are already producing frequently updating information on a regular basis. You might be posting things to your Twitter or Facebook page or even updating a blog? It would be great to be able to take this stream of content you are creating and somehow turn it around to make your stale, old pages a little more fresh.</p>
<p>The typical way of including your social media assets (such as Twitter&#8217;s embed widget) won&#8217;t give you any SEO advantage since these are generated on the fly with javascript. This makes the page look a little more up-to-date, but Google cannot read the javascript on these widgets and therefore cannot give you credit for keeping your content fresh. The same is true for other ways of including your social media or recent posts from your blog (such as through AJAX). We need to find another solution.</p>
<p>Presuming you have a PHP server, you can use almost any RSS feed, an XSL stylesheet and the XsltProcessor() object to keep your page&#8217;s content fresh by rendering the content as part of the HTML of your web page.</p>
<p><strong>First</strong>, you&#8217;ll need a simple XSL stylesheet (save as: &#8216;rss2html.xsl&#8217;):<br />
<code><br />
&lt;?xml version="1.0" encoding="UTF-8"?&gt;</p>
<p>&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt;<br />
&lt;xsl:output method='html' encoding="UTF-8" /&gt;</p>
<p>&lt;xsl:template match="rss/channel"&gt;<br />
&lt;xsl:for-each select="item[position() &lt; 6]"&gt;<br />
&lt;xsl:variable name="link" select="link[1]" /&gt;<br />
&lt;li&gt;&lt;a href="{$link}"&gt;&lt;xsl:value-of select="title[1]" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;xsl:value-of select="description[1]" disable-output-escaping="yes" /&gt;&lt;/li&gt;<br />
&lt;/xsl:for-each&gt;<br />
&lt;/xsl:template&gt;</p>
<p>&lt;/xsl:stylesheet&gt;<br />
</code><br />
This takes the XML encoding of an RSS feed and converts this into a series of &lt;li&gt; items. As written above this takes the last 5 items from the feed, links to each item in the RSS feed, and adds a description (with any HTML formatting) afterwards. You can edit the HTML above to change how or how many items are displayed- if you don&#8217;t want the items displayed in an list, for example, or if you have an aversion to linking to other websites.</p>
<p><strong>Next</strong> you will need an XSLT processing script (save this file with whatever name you want, I called it &#8216;fresh.php&#8217;):<br />
<code><br />
&lt;ul&gt;<br />
&lt;?<br />
$xsltProcessor = new XsltProcessor();</p>
<p>// create a DOM document and load the XSL stylesheet<br />
$xsl = new DomDocument;<br />
$xsl-&gt;load("./rss2html.xsl");</p>
<p>// import the XSL styelsheet into the XSLT process<br />
$xsltProcessor-&gt;importStylesheet($xsl);</p>
<p>// create a DOM document and load the XML<br />
$xmlDoc = new DomDocument;<br />
$xmlDoc-&gt;load("http://feeds.mashable.com/Mashable?format=xml");</p>
<p>try<br />
{<br />
echo $xsltProcessor-&gt;transformToXML($xmlDoc);<br />
}<br />
catch(Exception $pEx)<br />
{<br />
echo $pEx-&gt;getMessage();<br />
}</p>
<p>?&gt;<br />
&lt;/ul&gt;<br />
&lt;a href="http://www.dizzysoft.com/"&gt;script by dizzysoft&lt;/a&gt;<br />
</code><br />
This code above</p>
<ol>
<li>loads the rss2html.xsl file we first created</li>
<li>loads an RSS feed we desire (in this case I loaded a feed from Mashable)</li>
<li>Reads the RSS feed into XML and writes it according to the XSL stylesheet we created. Since we rendered each item as an &lt;li&gt;, we have to precede the processing with an &lt;ul&gt; tag.</li>
<li>links to my site in gratitude for this awesome script- take this out if you want, that&#8217;s fine.</li>
</ol>
<p><strong>Done!</strong></p>
<p>Just include this XSLT processing script on your web page to keep your page fresh.</p>
<p>Now you need to decide which RSS feed to include on your page. Here&#8217;s some things I would consider when choosing an RSS feed:</p>
<ul>
<li><strong>Is the content relevant to the page?</strong> You can share part of a Mashable feed, like in my example, or any feed for that matter. As far as SEO goes, however, I would include an RSS feed from something that is relevant to the topic of the page in which you include this feed. After all, the real benefit here is not only to produce fresh content but fresh and relevant content.</li>
<li><strong>Are you in control of the content of this page?</strong> This prevents problems and helps control your content. For example, how bad would it be if you shared a third-party RSS feed and found that one of your competitors was mentioned on your own page! Also, if you share your own content you can be sure the content is relevant to the topic of the page.</li>
<li><strong>Will this RSS feed be updated enough to keep this page fresh?</strong> If the RSS feed you select isn&#8217;t updated frequently enough, including this script on your page won&#8217;t be enough to help.</li>
<li><strong>Will this produce any problems with &#8220;duplicate content&#8221;?</strong> Technically you could use these two simple scripts to create a whole website that just scrapes the content from another website but what good is that, ultimately? The best use of this script is as a small portion of a page&#8217;s content. For this reason the best RSS feed to include is a feed that truncates the content that is being shared over RSS- which is probably a best-practice for RSS feeds anyway.</li>
</ul>
<p>What do you think? Will this be enough to trigger the &#8220;freshness&#8221; part of the algorithm? Will Google be able to filter-out this content as duplicate from somewhere else? Do you have any suggestions to improve these scripts? I&#8217;d love to hear your comments, below.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dizzysoft.com/web/track-apache-error-logs-with-php-rss-fee/" rel="bookmark" class="crp_title">Track Apache Error Logs with PHP RSS Feed</a></li><li><a href="http://www.dizzysoft.com/rss-feeds/track-read-items-in-an-rss-feed-reader/" rel="bookmark" class="crp_title">Track Read Items in an RSS Feed Reader</a></li><li><a href="http://www.dizzysoft.com/rss-feeds/save-gas-money-with-rss/" rel="bookmark" class="crp_title">Save Gas Money with RSS</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.dizzysoft.com/rss-feeds/keeping-website-content-fresh-with-rss-and-xsl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking for Charlotte, South Carolina</title>
		<link>http://www.dizzysoft.com/web/looking-for-charlotte-south-carolina/</link>
		<comments>http://www.dizzysoft.com/web/looking-for-charlotte-south-carolina/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 14:40:56 +0000</pubDate>
		<dc:creator>dz</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.dizzysoft.com/?p=409</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
Are you looking to find Charlotte, SC? Keep looking because Charlotte is actually in North Carolina. I understand the confusion- many people haven&#8217;t been to this part of the country and might make this mistake. Even those who might have been here could get confused because Charlotte sits right north of the border with South [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
<p>Are you looking to find Charlotte, SC? Keep looking because Charlotte is actually in North Carolina.</p>
<p><a href="http://kids.britannica.com/comptons/art-54737/Charlotte-NC"><img class="alignnone" title="Charlotte is not in South Carolina- it is in North Carolina" src="http://media.web.britannica.com/eb-media/53/64753-004-E7E6B650.gif" alt="Charlotte is not in South Carolina- it is in North Carolina" width="468" height="353" /></a></p>
<p>I understand the confusion- many people haven&#8217;t been to this part of the country and might make this mistake. Even those who might have been here could get confused because Charlotte sits right north of the border with South Carolina. Besides- aren&#8217;t both those red-neck states the same anyway? (I dare you to say that to anyone from either of these states!)</p>
<p><strong>Don&#8217;t worry- you&#8217;re not the only one who makes this mistake. A lot of people mistakenly search for Charlotte, South Carolina. We know this because Google tells us so.</strong></p>
<p><span id="more-409"></span></p>
<p>Google is more than a search engine- it is in the business of selling advertising. The primary way Google makes money is through selling ads to people who want to be found for a particular product or service they offer. Now, it is important to make the distinction between these, paid searches (also known as &#8220;Pay Per Click&#8221; or PPC) and the natural searches (also known as &#8220;organic search&#8221;). Google makes money as people bid for the PPC ads they offer, but doesn&#8217;t make money from the natural search results (the ten other websites) they list after the paid ads (which are designated by a colored block that says &#8220;Ads&#8221;.</p>
<p><img class="alignnone" src="http://www.destroyallmonsters.biz/services/pic/paid-and-natural-search-results.jpg" alt="" width="480" height="359" /></p>
<p>In order for people to which search terms to bid on, Google helps provide an estimate of how many people search for a particular term. This tells someone which terms have the most searches (and are potentially worth a higher bid) and which ones have a lower search volume (and might not be worth so much). The practice of looking at considering which keywords you want to bid on (or attempt to rank for, in the case of natural search) is called <a href="http://seorisk.com/technique/keyword_research">keyword research</a>. You can find this information for free in Google&#8217;s own <a href="https://adwords.google.com/select/KeywordToolExternal">AdWords Keyword Tool</a>. Since the potential keywords a business might be interested in bidding on is really limitless, Google provides search volume for almost every phrase you could consider- including Charlotte, SC (even if Charlotte is not really in South Carolina).</p>
<p>Now there are different ways to get the information from Google, using this tool. You can ask for a broad match, phrase match, or exact match.</p>
<p>&#8220;<em>Broad match</em>&#8221; means, &#8220;Tell me how many people search per month for any of these words.&#8221; If we were to enter &#8220;Charlotte, South Carolina&#8221; (without the quotes- this is important) into the keyword tool under &#8220;broad match&#8221; this means we are asking for how many people search for any search phrase that contains either the words &#8220;Charlotte&#8221;, &#8220;South&#8221; and &#8220;Carolina&#8221;. This would tell include &#8220;South Charlotte North Carolina&#8221; or &#8220;How far is Charlotte from South Carolina?&#8221; and many more.</p>
<p>&#8220;<em>Phrase match</em>&#8221; means, &#8220;Tell me how many people search per month for a string that includes this phrase.&#8221; For example, if we were to enter &#8220;Charlotte, SC&#8221; (again, without the quotes)&#8221; asking for a &#8220;phrase match&#8221; this wold tell us how many times people search for phrases like &#8220;hotels in Charlotte, SC&#8221; or &#8220;Is the DNC in Charlotte, SC&#8221;- notice in each of these cases, the potential phrases returned include the exact &#8220;phrase&#8221; &#8220;Charlotte, SC&#8221;.</p>
<p>&#8220;<em>Exact match</em>&#8221; means, &#8220;Tell me how many people search per month for only the exact phrase with no words before or after it or any variations.&#8221; As you can imagine, when you request an exact match, you will have a lot less searches per month than a broad phrase match- because the exact phrase match is only that specific phrase, and the broad can include any of the words you mention. The number of searches for phrase matches will fall somewhere in between the two.</p>
<p>When you provide a phrase and choose the type of match to Google&#8217;s keyword too, Google will return some numbers to you. These include &#8220;competition,&#8221; &#8220;global monthly searches,&#8221; and &#8220;local monthly searches.&#8221; The &#8220;competition number is between 0 and 1 and is a rough estimate of how many people are bidding on the keyword- the closer to 1 the number, the more people are competing for it and the more you might expect to spend if you were to bid on the term. The last two numbers represent an estimate (extremely rounded) of how many people are searching for this phrase throughout the world (&#8220;global&#8221;) or within your own country (&#8220;local&#8221;).</p>
<p>If we enter the phrase &#8220;Charlotte, South Carolina&#8221; and &#8220;Charlotte, SC&#8221; (under a phrase match) this is what we will see:</p>
<p><img class="alignnone size-full wp-image-411" title="charlotte-south-carolina-search-volume" src="http://www.dizzysoft.com/wp-content/uploads/charlotte-south-carolina-search-volume.jpg" alt="How many people per month are looking for Charlotte, South Carolina?" width="390" height="224" /></p>
<p>As you can see, you aren&#8217;t the only person who is looking for &#8220;Charlotte, SC&#8221;- about 4,400 other people (from the United States) are right there with you (as compared to the more than 3 million people who paid attention during their geography lessons).</p>
<p>&nbsp;</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dizzysoft.com/web/google-keywords-and-march-madness/" rel="bookmark" class="crp_title">Google Keywords and March Madness</a></li><li><a href="http://www.dizzysoft.com/rss-feeds/wheres-bono/" rel="bookmark" class="crp_title">Where&#8217;s Bono?</a></li><li><a href="http://www.dizzysoft.com/web/how-will-google-integrate-twitter/" rel="bookmark" class="crp_title">How will Google integrate Twitter in their search results?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.dizzysoft.com/web/looking-for-charlotte-south-carolina/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get RSS Feeds from Twitter Search</title>
		<link>http://www.dizzysoft.com/twitter/get-rss-feeds-from-twitter-search/</link>
		<comments>http://www.dizzysoft.com/twitter/get-rss-feeds-from-twitter-search/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 17:15:51 +0000</pubDate>
		<dc:creator>dz</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.dizzysoft.com/?p=380</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
A few weeks ago, Twitter removed the RSS/Atom feeds from their search pages. Annoying. That doesn&#8217;t mean you can get the RSS feeds any longer- it&#8217;s just a little more manual. It&#8217;s simple, really: For an Atom feed: http://search.twitter.com/search.atom?q=words+to+search+for Notice that I&#8217;ve replaced spaces with pluses (+). See the Atom Feed yourself (and edit it [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
<p><img class="alignright size-thumbnail wp-image-384" title="Twitter-RSS-Feed" src="http://www.dizzysoft.com/wp-content/uploads/Twitter-RSS-Feed-150x150.jpg" alt="" width="150" height="150" />A few weeks ago, Twitter removed the RSS/Atom feeds from their search pages. Annoying.</p>
<p>That doesn&#8217;t mean you can get the RSS feeds any longer- it&#8217;s just a little more manual.<br />
<span id="more-380"></span><br />
It&#8217;s simple, really:</p>
<p><em>For an Atom feed:</em><br />
<code></p>
<p>http://search.twitter.com/search.atom?q=words+to+search+for</p>
<p></code><br />
Notice that I&#8217;ve replaced spaces with pluses (+).<br />
<a href="http://search.twitter.com/search.atom?q=words+to+search+for" target="_blank">See the Atom Feed yourself</a> (and edit it accordingly)</p>
<p>If you&#8217;d rather have an <em>RSS feed:</em><br />
<code></p>
<p>http://search.twitter.com/search.rss?q=words+to+search+for</p>
<p></code></p>
<p>You can even request a search dedicated to a particular hashtag:<br />
<code></p>
<p>http://search.twitter.com/search.atom?q=%23clt</p>
<p></code></p>
<p>Just precede your desired hashtag with the URL-encoded # sign: %23</p>
<p>Hope that helps you out, @GenevieveJooste.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dizzysoft.com/rss-feeds/pick_a_feed_any_feed/" rel="bookmark" class="crp_title">Pick a feed, any feed</a></li><li><a href="http://www.dizzysoft.com/rss-feeds/10-or-more-ways-to-make-your-own-rss/" rel="bookmark" class="crp_title">10 or more ways to make your own RSS feed for free</a></li><li><a href="http://www.dizzysoft.com/rss-feeds/twitter-lists-text-messages/" rel="bookmark" class="crp_title">Get Twitter Lists on Your Phone by Text Message</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.dizzysoft.com/twitter/get-rss-feeds-from-twitter-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Comment Links for SEO</title>
		<link>http://www.dizzysoft.com/web/blog-comment-links-for-seo/</link>
		<comments>http://www.dizzysoft.com/web/blog-comment-links-for-seo/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 01:58:04 +0000</pubDate>
		<dc:creator>dz</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.dizzysoft.com/?p=372</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
As a professional SEO I know how important links are to achieving rankings from Google. As such, I know the temptation to find a link in any place you can in order to achieve your desired SEO results. For some people, this means trying to build links through blog commenting. For others it means using [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
<p><img class="alignright size-medium wp-image-373" title="dofollow blog comments is what many SEOs are looking for" src="http://www.dizzysoft.com/wp-content/uploads/comment-300x244.png" alt="" width="300" height="244" />As a professional SEO I know how important links are to achieving rankings from Google. As such, I know the temptation to find a link in any place you can in order to achieve your desired SEO results. For some people, this means trying to build links through blog commenting. For others it means using automated software to build a massive quantity of blog comments with the hopes that some of them will give their webpage authority in Google&#8217;s eyes.</p>
<p>Because of this, a couple years ago, Google rolled-out the <strong>nofollow</strong> tag. When you add this parameter to your link, you are telling Google that you are not vouching for the site at the receiving end of the link. Although some say the nofollowed link still passes value, most agree they nolonger do.</p>
<p>This created a demand for <strong>dofollow</strong> <strong>blogs</strong>- blogs that do not automatically add the nofollow attribute to links- so the blog comments can pass authority to a website they are linking to. This created a demand for websites that list dofollow blogs. Some developers even created WordPress plugins (since it is one of the most popular blogging platforms) that specifically offers blog commenters dofollow links, such as Link Love or CommentLuv.</p>
<p>Of course, the goldmine for any SEO doing blog comments for links is an <strong>auto-approve</strong>, dofollow blog. This not only gives the authority for the link but bypasses the pesky and slow process of manual approval.</p>
<p>All this is done in the hopes of building some links, to pass authority to a website, with the hopes of improving the receiving site&#8217;s rankings in Google. The <a href="http://seorisk.com/technique/blog_comments_with_links">blog commenting for link building</a> is a risky SEO tactic, but many still do it- whether manually or using specialized blog commenting software.</p>
<p><del datetime="2011-12-30T20:05:34+00:00">Since so many people still think this is valuable enough to keep doing, I&#8217;m going to make this blog post a repository for blog comments. I will approve every blog comment for this post- whether automated or manually submitted. Some of them will be funny. Some will be sad. All will be an interesting look into the measures some SEOs will take to improve their rankings.</del></p>
<p><ins datetime="2011-12-30T20:05:34+00:00">Update: I think this post attracted a swarm of spambots- which have overwhelmed me with hundreds of comments. I understand that I was asking for it but nothing I did seemed to solve this problem. Then I installed the <a href="http://www.growmap.com/growmap-anti-spambot-plugin/">GrowMap Anti-Spambot Plugin</a>. It was solved almost immediately!</ins></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dizzysoft.com/rss-feeds/twitter-seo-linkbuilding/" rel="bookmark" class="crp_title">More on Twitter SEO Link Building</a></li><li><a href="http://www.dizzysoft.com/twitter/twitter-seo/" rel="bookmark" class="crp_title">Can you use Twitter for SEO?</a></li><li><a href="http://www.dizzysoft.com/twitter/google-twitter-seo/" rel="bookmark" class="crp_title">Google, Twitter and SEO</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.dizzysoft.com/web/blog-comment-links-for-seo/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Does FeedTwit Support Terrorism?</title>
		<link>http://www.dizzysoft.com/rss-feeds/does-feedtwit-support-terrorism/</link>
		<comments>http://www.dizzysoft.com/rss-feeds/does-feedtwit-support-terrorism/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 00:58:01 +0000</pubDate>
		<dc:creator>dz</dc:creator>
				<category><![CDATA[RSS]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.dizzysoft.com/?p=365</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
I recently read a couple articles about this Twitter app that the Taliban, and presumably other organizations, are using to support their terrorist agendas. Apparently this app allows people to bypass the publicly facing Twitter content and send content over the more private DM system. In turn these terrorists get their DMs sent to them [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
<p><img class="alignright size-medium wp-image-366" title="twitter_terrorist" src="http://www.dizzysoft.com/wp-content/uploads/twitter_terrorist-300x206.jpg" alt="Can Terrorists use Twitter for evil?" width="300" height="206" />I recently read a couple articles about this Twitter app that the Taliban, and presumably other organizations, are using to support their terrorist agendas. Apparently this app allows people to bypass the publicly facing Twitter content and send content over the more private DM system. In turn these terrorists get their DMs sent to them by text message to the front lines in rural Afghanistan.</p>
<p>Horrible!</p>
<p>Unfortunately the app in question is one I wrote and continue to manage- <a href="http://feedtwit.com/">FeedTwit</a>.</p>
<p>First of all, Twitter recently rendered my app obsolete- something I wrote about in my recent blog post about how <a href="http://www.dizzysoft.com/twitter/twitter-steals-ideas-from-independent-developers/">Twitter is stealing ideas from independent developers</a>. At this point very few people are using it.</p>
<p>Second of all, with the few people finding my app useful (and it is still useful for things besides communication between terrorists) it is easy for me to monitor. While I cannot see the exact content of every DM my app sends to its users, I can assure you that the RSS feeds people are having sent to their Twitter accounts by DM are all benign. (By the way, if the FBI, NSA, or any other <em>law enforcement entity </em>would like to look at the data people are sharing through my Twitter app, I&#8217;d be happy to share it with them. All they have to do is ask- no warrant or subpena necessary.)</p>
<p>Thirdly, you don&#8217;t have to take my word for it. In order to use my app you&#8217;d have to follow @<a href="http://twitter.com/feedtwit">FeedTwit</a>- basically I couldn&#8217;t send an account a DM without them following the account. If these allegedly Taliban twitter accounts are using my app, they would be following @FeedTwit- and the list of accounts following @FeedTwit are publicly available.</p>
<p>Fourth, I think it is laughable that someone would accuse me of supporting terrorism. I am a native citizen of the United States and even an Eagle Scout. I&#8217;m not exactly the type who supports the Taliban.</p>
<p>The thing that cheezes me off about this is that these blog posts give nefarious people an idea of how they might use Twitter to avoid detection and communicate malevolently. Right now someone is getting a &#8220;good&#8221; idea on how to use Twitter for evil.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dizzysoft.com/twitter/twitter-steals-ideas-from-independent-developers/" rel="bookmark" class="crp_title">Twitter Steals Ideas From Independent Developers</a></li><li><a href="http://www.dizzysoft.com/twitter/why-is-feedtwit-offering-groupon-deals/" rel="bookmark" class="crp_title">Why is FeedTwit Offering Groupon Deals?</a></li><li><a href="http://www.dizzysoft.com/twitter/twitter-messages/" rel="bookmark" class="crp_title">Twitter Messages: the types of twitter messages and when to use each one</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.dizzysoft.com/rss-feeds/does-feedtwit-support-terrorism/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get RSS feeds from the new Delicious</title>
		<link>http://www.dizzysoft.com/rss-feeds/how-to-get-rss-feeds-from-the-new-delicious/</link>
		<comments>http://www.dizzysoft.com/rss-feeds/how-to-get-rss-feeds-from-the-new-delicious/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 19:09:37 +0000</pubDate>
		<dc:creator>dz</dc:creator>
				<category><![CDATA[RSS]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.dizzysoft.com/?p=355</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
The new delicious is finally up. Not all that much different but I am excited because I use it every day. One of the features I use every day is the RSS. When I heard delicious had enabled RSS feeds today, I went to the site right-away to set them up. Unfortunately, I couldn&#8217;t find [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
<p><img class="alignleft size-full wp-image-357" title="delicious" src="http://www.dizzysoft.com/wp-content/uploads/delicious.png" alt="" width="256" height="256" />The new <a href="http://delicious.com/">delicious</a> is finally up. Not all that much different but I am excited because I use it every day.</p>
<p>One of the features I use every day is the RSS. When I heard delicious had enabled RSS feeds today, I went to the site right-away to set them up. Unfortunately, I couldn&#8217;t find them anywhere.</p>
<p>After going through my archives I have been able to reconstruct them. Here&#8217;s the format they are currently using:</p>
<p><del datetime="2012-04-06T19:14:57+00:00"><strong><em>http://feeds.delicious.com/v2/rss/username/tag</em></strong></del><br />
<ins datetime="2012-04-06T19:14:57+00:00"><strong><em>http://www.delicious.com/v2/rss/username/tag</em></strong></ins></p>
<p><strong>username</strong> &#8211; your delicious username, without the brackets</p>
<p><strong>/tag</strong> &#8211; This is optional but if you want to limit the RSS feed to a particular tag you will need to insert a / and then the tag.</p>
<p>For example, if you wanted to keep track of all the bookmarks I&#8217;ve tagged &#8220;SEO&#8221; you would use:</p>
<p><del datetime="2012-04-06T19:14:57+00:00"><strong><em>http://feeds.delicious.com/v2/rss/davidzimm/seo</em></strong></del><br />
<ins datetime="2012-04-06T19:14:57+00:00"><strong><em>http://www.delicious.com/v2/rss/davidzimm/seo</em></strong></ins></p>
<p>If you just wanted all my wonderful delicious bookmarks, including all things Star Wars, Gardening, and recipes, you would use:</p>
<p><del datetime="2012-04-06T19:14:57+00:00"><strong><em>http://feeds.delicious.com/v2/rss/davidzimm</em></strong></del><br />
<ins datetime="2012-04-06T19:14:57+00:00"><strong><em>http://www.delicious.com/v2/rss/davidzimm</em></strong></ins></p>
<p>In case delicious changes this URL format, I&#8217;ll keep you up to date in this post. I would also love to see the new &#8220;Stacks&#8221; feature have an RSS feed. This would be a great way to share content about a topic (like the <a href="http://www.delicious.com/stacks/view/HNgQOn">SEO stack</a> I&#8217;ve created).</p>
<p>&nbsp;</p>
<p>The reason delicious RSS feeds are so important to me, is because I use them to populate and archive useful links I share through my Twitter account (@<a href="http://twitter.com/dizzySEO">dizzySEO</a>). Here&#8217;s how I do it.</p>
<ol>
<li>When I find a great SEO article (that I want to reference later or don&#8217;t have time to read at this moment) I bookmark it in delicious.</li>
<li>I take the RSS feed from my delicious bookmarks (tagged &#8220;SEO&#8221;) and give it to <a href="http://twitterfeed.com/">TwitterFeed</a>.</li>
<li>TwitterFeed is set up to send the links to my Twitter account automatically, trickling them in the stream throughout the day.</li>
</ol>
<p>This way I have the following advantages:</p>
<ol>
<li>I have an archive of helpful SEO articles in <a href="http://www.delicious.com/davidzimm/">my delicious account</a></li>
<li>I have a useful Twitter account about SEO- sharing useful information about SEO (at least I hope so).</li>
<li>Because I have shared them through Twitter, I consequently have a helpful <a href="http://paper.li/dizzySEO/1313072324">paper.li account about SEO</a> with a summary of the content I&#8217;ve shared every day.</li>
</ol>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dizzysoft.com/twitter/twitter-sms-commands/" rel="bookmark" class="crp_title">Twitter SMS Commands</a></li><li><a href="http://www.dizzysoft.com/twitter/social-bookmarking-seo/" rel="bookmark" class="crp_title">Twitter, Social Bookmarking and SEO</a></li><li><a href="http://www.dizzysoft.com/rss-feeds/twitter-seo-linkbuilding/" rel="bookmark" class="crp_title">More on Twitter SEO Link Building</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.dizzysoft.com/rss-feeds/how-to-get-rss-feeds-from-the-new-delicious/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Opine Verbosely About Social Media and Search</title>
		<link>http://www.dizzysoft.com/uncategorized/opine-verbosely-about-social-media-and-search/</link>
		<comments>http://www.dizzysoft.com/uncategorized/opine-verbosely-about-social-media-and-search/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 16:03:47 +0000</pubDate>
		<dc:creator>dz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dizzysoft.com/?p=350</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
If you come to the SEMCLT meeting next Thursday, September 1st, you can hear me opine verbosely about social media and search. My goal is to try to bring some rationality to this discussion. I&#8217;ll talk about good methodology to determine whether or not social affects search and what we definitely know about the relationship [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
<p>If you come to the <a href="https://twitter.com/#!/SEMCLT/status/106057229668581376">SEMCLT</a> meeting next Thursday, September 1st, you can hear me opine verbosely about social media and search.</p>
<p>My goal is to try to bring some rationality to this discussion. I&#8217;ll talk about good methodology to determine whether or not social affects search and what we definitely know about the relationship between the two. I want to bring some clarity to this discussion so we don&#8217;t jump to conclusions but instead work with what we really know.</p>
<p>You might also learn why on earth I would title this blog post with such unusual verbage.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dizzysoft.com/rss-feeds/save-time-in-social-media/" rel="bookmark" class="crp_title">Save Time in Social Media</a></li><li><a href="http://www.dizzysoft.com/twitter/will-twitter-make-seo-obsolete/" rel="bookmark" class="crp_title">Will Twitter make SEO obsolete?</a></li><li><a href="http://www.dizzysoft.com/rss-feeds/increase_interest_in_your_blog_with_rss/" rel="bookmark" class="crp_title">Increase interest in your blog with RSS</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.dizzysoft.com/uncategorized/opine-verbosely-about-social-media-and-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Steals Ideas From Independent Developers</title>
		<link>http://www.dizzysoft.com/twitter/twitter-steals-ideas-from-independent-developers/</link>
		<comments>http://www.dizzysoft.com/twitter/twitter-steals-ideas-from-independent-developers/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 16:17:54 +0000</pubDate>
		<dc:creator>dz</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.dizzysoft.com/?p=287</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
The other day Twitter killed my Twitter app. This isn&#8217;t a post written by someone who is bitter and angry. It is from someone who loves Twitter and really enjoys developing with the Twitter API. As a Twitter fan-boy I also want to see Twitter continue to grow and advance. The problem is that I [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
<p><img class="alignleft size-full wp-image-294" style="padding-right: 10px;" src="http://www.dizzysoft.com/wp-content/uploads/twitter_pirate_180x180.jpg" alt="Does Twitter Pirate Ideas from Independent Programmers?" width="180" height="180" />The other day Twitter killed my Twitter app.</p>
<p>This isn&#8217;t a post written by someone who is bitter and angry. It is from someone who loves Twitter and really enjoys developing with the Twitter API. As a Twitter fan-boy I also want to see Twitter continue to grow and advance. The problem is that I have notice a trend- Twitter taking ideas from independent developers and integrating them into their own service, rendering our apps obsolete.</p>
<p>Now you might argue, perhaps rightly, that Twitter should have been fulfilling the same service my app provided from the beginning. In fact, my app really only was a work-around for Twitter&#8217;s own limitations- and didn&#8217;t effectively do much. Still, one site ranked it among <a href="http://www.faslist.com/Twitter-Tools-And-Applications-Best-And-Top-Ranked-2010-2">the top-ten Twitter apps of 2010</a> and at least one of my users thinks that <a href="http://twitter.com/cnurys/status/5414343847976961">FeedTwit was better than Twitter&#8217;s current solution</a>. If I was more cynical, on the other hand, I would think that <a href="http://twitter.com/twittermobile/status/15464066881421312">Twitter sold someone the exclusive rights</a> to do what my app already did.</p>
<p>At the same time, my app wasn&#8217;t the only pirated independent Twitter app recently. I used to love <a href="http://tweetree.com/">http://tweetree.com/</a> &#8211; but Twitter integrated so many of their ideas into New Twitter that there is no advantage to using them any longer.</p>
<p>My point: it is not in Twitter&#8217;s interest to keep pirating ideas from its developers.</p>
<p><img class="size-full wp-image-290 alignright" src="http://www.dizzysoft.com/wp-content/uploads/twitter_pirate.png" alt="Twitter the Pirate" width="256" height="256" /><strong>Why Twitter should encourage independent developers<br />
</strong></p>
<ol>
<li><strong>Encourages creative thinking and innovation</strong>- this is perhaps the biggest advantages for Twitter in rolling out the API to independent developers, like me. However, when Twitter takes our ideas and integrates them into their service, they take away the reason for us to innovate. Why should I put a year and a half into developing my Twitter app when I can be afraid that suddenly Twitter will make my app obsolete?</li>
<li><strong>Independent data</strong>- my app provided valuable, independent data from my users. In my case I could tell you what time of day or what day of week people were most active on Twitter. This was useful not only to marketers- to know when to share their message to receive the most eyes, but also to other developers- to know when to shut down their apps for service. I can&#8217;t provide this valuable information any longer.</li>
<li><strong>Less for them to support</strong>- my Twitter app was far from perfect. It seems there was always something going wrong or breaking. One time, while testing, I even accidentally sent 10,000 DM&#8217;s (and accompanying text messages) to my personal cell phone. But if I spend my time on working through these issues, Twitter can instead focus on providing a stable network which benefits everyone.</li>
</ol>
<p><strong>What should Twitter do instead?</strong></p>
<ol>
<li><strong>Keep it simple</strong>- I personally think the Twitter website should be very simple (like before New Twitter). Let independent developers customize its use based upon the laws of supply and demand: if an idea is good it will survive, if not, it will die. I understand why Twitter would want to innovate on their own website: fewer and fewer people are using Twitter.com and they will (eventually) need eyes on their website if they ever want to make money from advertising on their web page. Let me propose another means of generating revenue- charge developers for white-listing their app. This would allow people to develop apps to a certain point and then force us to monetize it in order to pay for the white-listing.</li>
<li><strong>Keep it broad</strong>- recently Twitter has said its going to discontinue supporting XML. Previously it has threatened to devalue RSS. With limitations like this it not only requires developers to limit the ways they can interact with the API but it limits which developers can participate (without learning a different way of interfacing with the API). Why would Twitter want to put all their eggs into one coding basket?</li>
<li><strong>Keep it consistent</strong>- recently Twitter identified that it was going to run out of numbers to represent each particular status. The fix to this was called &#8220;snowflake&#8221; and it was a real fiasco. Many apps broke (including my own) despite Twitter&#8217;s warnings to make sure &#8220;snowflake&#8221; wouldn&#8217;t affect it- I didn&#8217;t think it would, but I ended up being wrong. A lot of heartbreak could be solved if they simply used the versioning system they have already built into their API. This would have kept an API consistent through the transition to larger status IDs.</li>
</ol>
<p><strong>What is my next step?</strong></p>
<p>Back to square one. I initially called my app FeedTwit because it was designed to convert <a href="http://feedtwit.com/">RSS feeds into Twitter direct messages</a>. Only after I rolled this out did I realize most people were using it to convert their Twitter mentions into DMs  (and then text messages). Now I am back to only supporting RSS feeds. Even if there isn&#8217;t nearly as much interest as before, you could still <a href="http://www.dizzysoft.com/twitter/more-than-twitter-replies/">use FeedTwit to</a>:</p>
<ul>
<li>Get notifications of mentions for other Twitter accounts you manage.</li>
<li>Keep up with a <a href="http://www.dizzysoft.com/twitter/twitter-lists-text-messages">Twitter list</a></li>
<li>Keep up with other social networks, for instance <a href="http://www.dizzysoft.com/twitter/follow-your-linkedin-network-through-twi">LinkedIn</a>, through your Twitter account.</li>
<li>Get news, weather, and even <a href="http://www.dizzysoft.com/twitter/get-local-traffic-through-twitter">traffic</a> reports to your cell phone by Text message, from your Twitter account.</li>
<li><a href="http://www.dizzysoft.com/twitter/twitter-track">Track a keyword or hashtag</a> discussions on Twitter.</li>
<li>Take any RSS/Atom feed and send it to your Twitter account as a direct message.</li>
</ul>
<p><strong><em><span style="color: #ff0000;">UPDATE</span>: </em></strong>Apparently the FTC is now investigating: <a href="http://www.bloomberg.com/news/2011-07-01/ftc-said-to-have-begun-antitrust-inquiry-into-twitter-s-developer-policies.html">http://www.bloomberg.com/news/2011-07-01/ftc-said-to-have-begun-antitrust-inquiry-into-twitter-s-developer-policies.html</a></p>
<p><span style="color: #ff0000;"><em><strong>UPDATE</strong></em></span>: Yet another idea Twitter &#8220;borrowed&#8221; from third-party developers: <a href="http://support.twitter.com/articles/20075772">http://support.twitter.com/articles/20075772</a></p>
<p><strong><em>How have you seen Twitter take over ideas from independent developers? Am I being too harsh on the Twitter API team? Add your comments below.</em></strong></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dizzysoft.com/rss-feeds/does-feedtwit-support-terrorism/" rel="bookmark" class="crp_title">Does FeedTwit Support Terrorism?</a></li><li><a href="http://www.dizzysoft.com/twitter/free-twitter-apps/" rel="bookmark" class="crp_title">Free Twitter Apps that Send Your @ Replies</a></li><li><a href="http://www.dizzysoft.com/palm-software/use-palm-os-applications-on-your-iphone/" rel="bookmark" class="crp_title">Use Palm OS applications on your iPhone</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.dizzysoft.com/twitter/twitter-steals-ideas-from-independent-developers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Trying a couple comment plugins on my blog</title>
		<link>http://www.dizzysoft.com/web/trying-a-couple-comment-plugins-on-my-blog/</link>
		<comments>http://www.dizzysoft.com/web/trying-a-couple-comment-plugins-on-my-blog/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 14:14:11 +0000</pubDate>
		<dc:creator>dz</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.dizzysoft.com/?p=277</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
Help me out with a couple comments (or even a Re-Tweet) and you might just get a little reward! Related Posts:Blog Comment Links for SEO4 SEO Improvements to your Twitter AccountDoes FeedTwit Support Terrorism?]]></description>
			<content:encoded><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
<p><img class="alignnone size-medium wp-image-279" src="http://www.dizzysoft.com/wp-content/uploads/pilot_car_follow_me_signs-300x182.jpg" alt="" width="300" height="182" /></p>
<p>Help me out with a couple comments (or even a Re-Tweet) and you might just get a little reward!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dizzysoft.com/web/blog-comment-links-for-seo/" rel="bookmark" class="crp_title">Blog Comment Links for SEO</a></li><li><a href="http://www.dizzysoft.com/twitter/4-seo-improvements-to-your-twitter-account/" rel="bookmark" class="crp_title">4 SEO Improvements to your Twitter Account</a></li><li><a href="http://www.dizzysoft.com/rss-feeds/does-feedtwit-support-terrorism/" rel="bookmark" class="crp_title">Does FeedTwit Support Terrorism?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.dizzysoft.com/web/trying-a-couple-comment-plugins-on-my-blog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Why is FeedTwit Offering Groupon Deals?</title>
		<link>http://www.dizzysoft.com/twitter/why-is-feedtwit-offering-groupon-deals/</link>
		<comments>http://www.dizzysoft.com/twitter/why-is-feedtwit-offering-groupon-deals/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 18:35:12 +0000</pubDate>
		<dc:creator>dz</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.dizzysoft.com/?p=263</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
Recently FeedTwit, my Twitter app that sends users Twitter RSS feeds by direct messages has started offering Groupon deals to my users. Why? Groupon offers great deals in many cities throughout the United States and Canada. These deals can save you anywhere from 50% to 90% off the regular price. Groupon is a fun way [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css">
#leftcontainerBox {
	float:left;
	position: fixed;
	top: 60%;
	left: 10px;
}
#leftcontainerBox .buttons {
	float:left;
	clear:both;
	margin:4px 4px 4px 4px;
	padding-bottom:2px;
}
#bottomcontainerBox {
	width: 50%;
	padding-top: 1px;
}
#bottomcontainerBox .buttons {
	float: left;
	margin: 4px 4px 4px 4px;
}
</style>
<p>Recently FeedTwit, my Twitter app that sends users <a href="http://feedtwit.com/">Twitter RSS feeds</a> by direct messages has started offering Groupon deals to my users. Why?</p>
<ol>
<li>Groupon offers great deals in many cities throughout the United States and Canada. These deals can save you anywhere from 50% to 90% off the regular price.</li>
<li>Groupon is a fun way to explore your own town. Groupon deals range from restaurants to services to local events.</li>
<li>Groupon is perfect for people participating in a social network, such as Twitter, because we only get the deal if enough people take advantage of the deal. If we were to use our Twitter accounts to promote the deal we can insure that we all get the benefits. Please share these deals to your heart&#8217;s content!
<ul>
<li>Share over Twitter using the Twitter button on the page</li>
<li>Share over Facebook with the &#8220;Like&#8221; button on the page. If you add a comment your friends will be able to see it and participate as well</li>
</ul>
</li>
<li>I gotta pay the bills. Let&#8217;s face it, it costs me money to provide FeedTwit to my users. I&#8217;ve really struggled on how to fund this service in a way that is unobtrusive or obnoxious. Groupon is fun and offers my users a good opportunity. It&#8217;s a win-win situation.</li>
</ol>
<p>So- help support FeedTwit while you get great deals in your home town by signing up and participating in a Groupon deal. You can even use FeedTwit to notify you of each day&#8217;s Groupon deal for your city. <a href="http://feedtwit.com/deal/">Which cities have Groupon deals?</a> See for yourself and be sure to share them with your friends!</p>
<p><em>Have you taken advantage of a Groupon deal yet? What was your experience? Is this a fair way for me to cover my FeedTwit expenses? <strong>Add your thoughts, below, in the comments</strong></em></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dizzysoft.com/rss-feeds/twitter-lists-text-messages/" rel="bookmark" class="crp_title">Get Twitter Lists on Your Phone by Text Message</a></li><li><a href="http://www.dizzysoft.com/rss-feeds/does-feedtwit-support-terrorism/" rel="bookmark" class="crp_title">Does FeedTwit Support Terrorism?</a></li><li><a href="http://www.dizzysoft.com/twitter/twitter-usage-statistics-hour/" rel="bookmark" class="crp_title">What time of day do people use Twitter? Hourly Twitter Usage Statistics</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.dizzysoft.com/twitter/why-is-feedtwit-offering-groupon-deals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

