<?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>OrzDream &#187; Icon</title>
	<atom:link href="http://orzdream.com/tag/icon/feed/" rel="self" type="application/rss+xml" />
	<link>http://orzdream.com</link>
	<description>冏一个世界 冏一个梦想 Orz World Orz Dream</description>
	<lastBuildDate>Sat, 24 Jul 2010 04:18:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>显示 FeedSky,FeedBurner,Google Feed 的文本统计数字的方法</title>
		<link>http://orzdream.com/2009/01/display-feedsky-feerburner-googlefeed-subscriber-count-in-text/</link>
		<comments>http://orzdream.com/2009/01/display-feedsky-feerburner-googlefeed-subscriber-count-in-text/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 15:47:49 +0000</pubDate>
		<dc:creator>NetPuter</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Feed]]></category>
		<category><![CDATA[FeedBurner]]></category>
		<category><![CDATA[FeedSky]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Icon]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://orzdream.com/?p=165</guid>
		<description><![CDATA[有些时候，为了页面的样式，或许你需要显示 FeedSky,FeedBurner,Google Feed 的文本统计数字。如何实现呢？其实我们可以利用强大的 API 调用 RSS 托管商的文本统计数字。 FeedSky Shawn 童鞋已经提供了显示 FeedSky 的文本统计数字的方法（原文地址），相关代码如下（把代码中的 feedsky-id 改为你的 Feed@FeedSky 的名称）： 1 2 3 4 5 &#60;?php $xml = simplexml_load_file&#40;'http://www.feedsky.com/rpc/feed_statistic_xml.php?u=feedsky-id'&#41;; $node = $xml-&#62;xpath&#40;'/month/day[last()]'&#41;; foreach&#40;$node as $n&#41;&#123;echo $n&#91;'subcount'&#93;;&#125; ?&#62;位读者 FeedBurner 这个方法是 NetPuter 参考 Shawn 的方法实现的，算是准原创吧。其中 API 的地址是在这里发现的，相关代码如下（同样，把代码中的 feedburner-id 改为你的 Feed@FeedBurner 的名称）： 1 2 3 4 5 &#60;?php $xml = simplexml_load_file&#40;'http://api.feedburner.com/awareness/1.0/GetFeedData?uri=feedburner-id'&#41;; [...]]]></description>
			<content:encoded><![CDATA[<p>有些时候，为了页面的样式，或许你需要显示 FeedSky,FeedBurner,Google Feed 的文本统计数字。如何实现呢？其实我们可以<strong>利用强大的 API 调用 RSS 托管商的文本统计数字</strong>。</p>
<h2>FeedSky</h2>
<blockquote><p>
<a href="http://ishawn.net/">Shawn </a>童鞋已经提供了显示 FeedSky 的文本统计数字的方法（<a href="http://ishawn.net/tips/feedsky-subscription-number-code.html">原文地址</a>），相关代码如下（把代码中的 <strong>feedsky-id</strong> 改为你的 Feed@FeedSky 的名称）：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> 
<span style="color: #000088;">$xml</span> <span style="color: #339933;">=</span> <span style="color: #990000;">simplexml_load_file</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://www.feedsky.com/rpc/feed_statistic_xml.php?u=feedsky-id'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$node</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$xml</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">xpath</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/month/day[last()]'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$node</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$n</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #000088;">$n</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'subcount'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>位读者</pre></td></tr></table></div>

</blockquote>
<h2>FeedBurner</h2>
<blockquote><p>
这个方法是 NetPuter 参考 Shawn 的方法实现的，算是<strong>准原创</strong>吧。其中 API 的地址是在<a href="http://www.hongkiat.com/blog/display-google-feed-subscriber-count-in-text/">这里</a>发现的，相关代码如下（同样，把代码中的 <strong>feedburner-id</strong> 改为你的 Feed@FeedBurner 的名称）：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> 
<span style="color: #000088;">$xml</span> <span style="color: #339933;">=</span> <span style="color: #990000;">simplexml_load_file</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://api.feedburner.com/awareness/1.0/GetFeedData?uri=feedburner-id'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$node</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$xml</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">xpath</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/rsp/feed/entry'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$node</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$n</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #000088;">$n</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'circulation'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span> Readers</pre></td></tr></table></div>

</blockquote>
<h2>Google Feed</h2>
<blockquote><p>
由于 FeedBurner 已被 Google 收购，因此调用方法也差不多，代码如下（还是，把代码中的 <strong>googlefeed-id</strong> 改为你的 Feed@FeedBurner 的名称）：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> 
<span style="color: #000088;">$xml</span> <span style="color: #339933;">=</span> <span style="color: #990000;">simplexml_load_file</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=googlefeed-id'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$node</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$xml</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">xpath</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/rsp/feed/entry'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$node</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$n</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #000088;">$n</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'circulation'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span> Readers</pre></td></tr></table></div>

</blockquote>
<h2>最终效果以及相关注意</h2>
<blockquote><p>
因为 OrzDream 是由 FeedSky 托管的，也有由 FeedBurner 托管的，但是几乎没有数字，所以借用一下 <a href="http://wpchina.org/">WPChina.org</a> 和<a href="http://www.essentialblog.cn/">精品博客</a>的订阅统计。<br />
<strong>图像版：</strong></p>
<blockquote><p>
截止至昨天， OrzDream 已经有<img src="http://www.feedsky.com/feed/netputer/sc/gif" />，<br />
WPChina.org 有<img src="http://feeds.feedburner.com/~fc/wordpresschina" />，<br />
精品博客有<img src="http://feedproxy.google.com/~fc/e-blog" />。
</p></blockquote>
<p><strong>文本版：</strong></p>
<blockquote><p>
截止至昨天， OrzDream 已经有<?php $xml = simplexml_load_file('http://www.feedsky.com/rpc/feed_statistic_xml.php?u=netputer');$node = $xml->xpath('/month/day[last()]');foreach($node as $n){echo $n['subcount'];} ?>位读者， WPChina.org 有<?php<br />
$xml = simplexml_load_file('http://api.feedburner.com/awareness/1.0/GetFeedData?uri=wordpresschina');$node = $xml->xpath('/rsp/feed/entry');foreach($node as $n){echo $n['circulation'];} ?> Readers ，精品博客有<?php $xml = simplexml_load_file('https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=e-blog');$node = $xml->xpath('/rsp/feed/entry');foreach($node as $n){echo $n['circulation'];} ?> Readers 。
</p></blockquote>
<p><strong>几点注意：</strong></p>
<ol>
<li>建议大家在使用代码的时候 Cache 一下，帮助 RSS 托管商和地球节省资源。有关 Cache 可以参考 WordPress 官方 Codex 的<a href="http://codex.wordpress.org/Function_Reference/WP_Cache"><strong>详细内容</strong></a>。</li>
<li>关于显示 FeedBurner,Google Feed 的文本统计数字的方法中，用到 <strong>SimpleXMLElements</strong> 这个玩意儿，它生存在 <strong>PHP5</strong> 环境中。如果你的 Blog 还是生存在 PHP4 环境的话，就无法使用以上显示 FeedBurner,Google Feed 的文本统计数字了。</li>
<li>不知道为什么，精品博客的订阅统计图标和文本有很大出入。此外， FeedSky 和 FeedBurner 也是图标和文本有出入（但是不大），我想应该是因为<strong>图标是一天更新一次，而 API 是即时更新的</strong>吧（可以看看它们的 API 的内容），你觉得呢？</li>
</ol>
</blockquote>
<p>PS1：一开始我是用 HONGKIAT.COM 的<a href="http://www.hongkiat.com/blog/display-google-feed-subscriber-count-in-text/">方法</a>显示 FeedBurner,Google Feed 的文本统计数字的，但发现不可行。后来在和 <a href="http://blog.guaniu.com">Leeiio</a> 的扯淡过程中<strong>突发灵感</strong>，其结果也就是上文的内容啦。折腾成功的感觉真<strong>爽</strong>！<br />
PS2：参考资料：《<a href="http://www.ibm.com/developerworks/cn/xml/x-simplexml.html">PHP 中的 SimpleXML 处理</a>》</p>
<ul class="related_post"><li><a href="http://orzdream.com/2009/08/feedburner-more-subscription-xml/" title="让 FeedBurner 联姻国产 RSS 阅读器">让 FeedBurner 联姻国产 RSS 阅读器</a> (17)</li><li><a href="http://orzdream.com/2008/12/merry-christmas/" title="Merry Christmas &#8211; 鲜果工具箱的礼物">Merry Christmas &#8211; 鲜果工具箱的礼物</a> (21)</li><li><a href="http://orzdream.com/2008/12/22-amazing-styles-of-rss-feed-icons/" title="20+很Amazing的RSS Feed ICONS（图标）分享">20+很Amazing的RSS Feed ICONS（图标）分享</a> (32)</li><li><a href="http://orzdream.com/2008/09/get-google-chromium-lasted-version-via-rss/" title="通过 RSS 获取 Google Chrome 的最新开发版本">通过 RSS 获取 Google Chrome 的最新开发版本</a> (44)</li><li><a href="http://orzdream.com/2008/08/maxthon2-feed-powerful/" title="让你家马桶更加舒服——增强Maxthon2的Feed订阅功能!">让你家马桶更加舒服——增强Maxthon2的Feed订阅功能!</a> (0)</li></ul><hr />
<p><small>© NetPuter for <a href="http://orzdream.com">OrzDream</a>, 2009. |
<a href="http://orzdream.com/2009/01/display-feedsky-feerburner-googlefeed-subscriber-count-in-text/">查看原文</a> |
<a href="http://orzdream.com/2009/01/display-feedsky-feerburner-googlefeed-subscriber-count-in-text/#comments">发表评论</a> | 
<a href="https://twitter.com/netputer">Follow @NetPuter</a>
<br/>
Tags: <a href="http://orzdream.com/tag/feed/" rel="tag">Feed</a>, <a href="http://orzdream.com/tag/feedburner/" rel="tag">FeedBurner</a>, <a href="http://orzdream.com/tag/feedsky/" rel="tag">FeedSky</a>, <a href="http://orzdream.com/tag/google/" rel="tag">Google</a>, <a href="http://orzdream.com/tag/icon/" rel="tag">Icon</a>, <a href="http://orzdream.com/tag/rss/" rel="tag">RSS</a><br/>
</small>]]></content:encoded>
			<wfw:commentRss>http://orzdream.com/2009/01/display-feedsky-feerburner-googlefeed-subscriber-count-in-text/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Merry Christmas - 鲜果工具箱的礼物</title>
		<link>http://orzdream.com/2008/12/merry-christmas/</link>
		<comments>http://orzdream.com/2008/12/merry-christmas/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 05:40:42 +0000</pubDate>
		<dc:creator>NetPuter</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Icon]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[圣诞]]></category>

		<guid isPermaLink="false">http://orzdream.com/?p=156</guid>
		<description><![CDATA[孩子们， Merry Christmas 哦， Happy New Year 哦， Happy Spring Festival 哦，星星和月亮会永远守护我们的哦~放上一个很有 Christmas 味道的 RSS Feed 图标（via）： 圣诞老公公背着满满的 OrzDream 的 RSS Feed 来啦！想要吗？快快订阅吧（请把视角移到右上方）！ 鲜果工具箱的礼物 嘿嘿，最近突然发现，鲜果工具箱更新了（其实更新了很久了吧），就是在 鲜果订阅按钮 这里增加了一个订阅数版，可以在你的 Blog 显示鲜果的订阅数： 囧！订阅数怎么才16，鲜果RSS阅读器里统计的数字是66吖？ 另外，今天是 Christmas ，看看幻彩版（会随着节日变换不同风格，而且还有节日倒计时，提醒你即将来临的快乐日子）是什么图片？ 再囧，就显示个时期，莫非 Christmas 不是节日？ 不管啦， Just For Fun ，最后再祝大家 圣诞快乐！新年快乐！天天Orz！天天快乐！ 20+很Amazing的RSS Feed ICONS（图标）分享 (32)显示 FeedSky,FeedBurner,Google Feed 的文本统计数字的方法 (37)一个鲜果粉丝眼中的 Beta 版鲜果 (27)原来鲜果也有墙 (28)通过 RSS [...]]]></description>
			<content:encoded><![CDATA[<p>孩子们， <strong>Merry Christmas</strong> 哦， <strong>Happy New Year</strong> 哦， <strong>Happy Spring Festival</strong> 哦，星星和月亮会永远守护我们的哦~放上一个很有 Christmas 味道的 RSS Feed 图标（<a href="http://xiao-xiao.yo2.cn/2008/12/santarssicon.html">via</a>）：</p>
<p style="text-align:center;"><a href="http://feed.feedsky.com/netputer"><img src="http://photie.com/p/original/20630.jpg" title="santarssicon.jpg" border="0" /></a></p>
<p>圣诞老公公背着满满的 OrzDream 的 RSS Feed 来啦！想要吗？快快订阅吧（请把视角移到右上方）！</p>
<h2>鲜果工具箱的礼物</h2>
<blockquote><p>
嘿嘿，最近突然发现，<a href="http://tools.xianguo.com/">鲜果工具箱</a>更新了（其实更新了很久了吧），就是在 <a href="http://tools.xianguo.com/tools-subbutton.html">鲜果订阅按钮</a> 这里增加了一个<strong>订阅数版</strong>，可以在你的 Blog 显示鲜果的订阅数：</p>
<blockquote><p><a target="_blank" href="http://www.xianguo.com/subscribe.php?url=http%3A%2F%2Ffeed.feedsky.com%2Fnetputer"><img src="http://www.xianguo.com/icon/subscribe_num.php?url=http%3A%2F%2Ffeed.feedsky.com%2Fnetputer"></img></a></p></blockquote>
<p>囧！订阅数怎么才16，鲜果RSS阅读器里统计的数字是66吖？</p>
<p>另外，今天是 Christmas ，看看<strong>幻彩版</strong>（会随着节日变换不同风格，而且还有节日倒计时，提醒你即将来临的快乐日子）是什么图片？</p>
<blockquote><p><a target="_blank" href="http://www.xianguo.com/subscribe.php?url=http%3A%2F%2Ffeed.feedsky.com%2Fnetputer"><img src='http://www.xianguo.com/icon/sub.php?t=big' border='0' alt='鲜果阅读器订阅图标' /></a></p></blockquote>
<p>再囧，就显示个时期，莫非 Christmas 不是节日？<br />
不管啦， Just For Fun ，最后再祝大家 <strong>圣诞快乐</strong>！新年快乐！天天Orz！天天快乐！
</p></blockquote>
<ul class="related_post"><li><a href="http://orzdream.com/2008/12/22-amazing-styles-of-rss-feed-icons/" title="20+很Amazing的RSS Feed ICONS（图标）分享">20+很Amazing的RSS Feed ICONS（图标）分享</a> (32)</li><li><a href="http://orzdream.com/2009/01/display-feedsky-feerburner-googlefeed-subscriber-count-in-text/" title="显示 FeedSky,FeedBurner,Google Feed 的文本统计数字的方法">显示 FeedSky,FeedBurner,Google Feed 的文本统计数字的方法</a> (37)</li><li><a href="http://orzdream.com/2009/01/xianguo-beta-in-my-eyes/" title="一个鲜果粉丝眼中的 Beta 版鲜果">一个鲜果粉丝眼中的 Beta 版鲜果</a> (27)</li><li><a href="http://orzdream.com/2008/10/xianguo-wall/" title="原来鲜果也有墙">原来鲜果也有墙</a> (28)</li><li><a href="http://orzdream.com/2008/09/get-google-chromium-lasted-version-via-rss/" title="通过 RSS 获取 Google Chrome 的最新开发版本">通过 RSS 获取 Google Chrome 的最新开发版本</a> (44)</li></ul><hr />
<p><small>© NetPuter for <a href="http://orzdream.com">OrzDream</a>, 2008. |
<a href="http://orzdream.com/2008/12/merry-christmas/">查看原文</a> |
<a href="http://orzdream.com/2008/12/merry-christmas/#comments">发表评论</a> | 
<a href="https://twitter.com/netputer">Follow @NetPuter</a>
<br/>
Tags: <a href="http://orzdream.com/tag/icon/" rel="tag">Icon</a>, <a href="http://orzdream.com/tag/rss/" rel="tag">RSS</a>, <a href="http://orzdream.com/tag/web20/" rel="tag">Web2.0</a>, <a href="http://orzdream.com/tag/%e5%9c%a3%e8%af%9e/" rel="tag">圣诞</a><br/>
</small>]]></content:encoded>
			<wfw:commentRss>http://orzdream.com/2008/12/merry-christmas/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>20+很Amazing的RSS Feed ICONS（图标）分享</title>
		<link>http://orzdream.com/2008/12/22-amazing-styles-of-rss-feed-icons/</link>
		<comments>http://orzdream.com/2008/12/22-amazing-styles-of-rss-feed-icons/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 12:24:15 +0000</pubDate>
		<dc:creator>NetPuter</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Icon]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Web2.0]]></category>

		<guid isPermaLink="false">http://orzdream.com/?p=150</guid>
		<description><![CDATA[这几天在 SpeckyBoy 看到了《22 Amazing Styles of RSS Icons Free for your Blog》，里面有一些 RSS Feed 图标是之前在许多分享推荐中没有看到的，希望大家喜欢！直接点击图图准备下载吧~ MyCircles RSS Icon by ~burnsflipper RSS Icons Campaign Wax Seals by *sniffels ACID RSS by ~Cavin RSS Bot by *leoblanchette Recursos Grafikos Iconos Hat RSS Icon by ~LoafNinja Christmas Feed Icons by ~webfruits RSS Icons by ~OneDevGiant Mouse RSS Bottle [...]]]></description>
			<content:encoded><![CDATA[<p>这几天在 <a href="http://speckyboy.com/">SpeckyBoy</a> 看到了《<a href="http://speckyboy.com/2008/11/19/22-amazing-styles-of-rss-icons-free-for-your-blog/"><strong>22 Amazing Styles of RSS Icons Free for your Blog</strong></a>》，里面有一些 RSS Feed 图标是之前在许多分享推荐中没有看到的，希望大家喜欢！直接点击图图准备下载吧~</p>
<h3>MyCircles RSS Icon by ~burnsflipper</h3>
<blockquote><p><a href="http://burnsflipper.deviantart.com/art/MyCircles-RSS-Icon-40357449"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon1.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>RSS Icons Campaign</h3>
<blockquote><p><a href="http://www.design-freak.com/2008/05/06/rss-icons-campaign/"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon2.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>Wax Seals by *sniffels</h3>
<blockquote><p><a href="http://sniffels.deviantart.com/art/Wax-Seals-80878213"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon3.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>ACID RSS by ~Cavin</h3>
<blockquote><p><a href="http://cavin.deviantart.com/art/ACID-RSS-41185577"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon4.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>RSS Bot by *leoblanchette</h3>
<blockquote><p><a href="http://leoblanchette.deviantart.com/art/RSS-Bot-69900174"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon5.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>Recursos Grafikos Iconos</h3>
<blockquote><p><a href="http://recursosgrafikos.blogspot.com/search/label/Iconos%20%2F%20Icons"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon6.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>Hat RSS Icon by ~LoafNinja</h3>
<blockquote><p><a href="http://loafninja.deviantart.com/art/Hat-RSS-Icon-80717627"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon7.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>Christmas Feed Icons by ~webfruits</h3>
<blockquote><p><a href="http://webfruits.deviantart.com/art/Christmas-Feed-Icons-72991903"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon8.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>RSS Icons by ~OneDevGiant</h3>
<blockquote><p><a href="http://onedevgiant.deviantart.com/art/rss-icons-98319327"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon9.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>Mouse RSS</h3>
<blockquote><p><a href="http://blogs.voices.com/voxdaily/mouse-rss-symbol.jpg"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon10.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>Bottle Caps by ~neoworxspace</h3>
<blockquote><p><a href="http://neoworxspace.deviantart.com/art/RSS-Feeds-Icons-Bottle-Caps-99577029"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon11.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>Social Bookmark Icons</h3>
<blockquote><p><a href="http://fasticon.com/freeware/index.php/web-2-social-bookmark-icons/"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon12.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>Iconos en 3D</h3>
<blockquote><p><a href="http://lrvisual.net/blog/index.php/2008/05/03/iconos-en-3d"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon13.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>RSS feed 17 icons-sign v1.0 by ~CorouD</h3>
<blockquote><p><a href="http://coroud.deviantart.com/art/RSS-feed-17-icons-sign-v1-0-84684288"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon14.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>RSS by *sniffels</h3>
<blockquote><p><a href="http://sniffels.deviantart.com/art/RSS-81858462"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon15.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>DrinkRSS</h3>
<blockquote><p><a href="http://www.l2design.be/drinkrss/"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon16.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>Nice 'n' Simple Subscribe Badges</h3>
<blockquote><p><a href="http://www.photoshopstar.com/web-graphics/nice-simple-subscribe-badges/"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon17.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>StickerFeed by ~bati1975</h3>
<blockquote><p><a href="http://bati1975.deviantart.com/art/StickerFeed-69353791"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon18.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>Feed icons for blogging guitarists</h3>
<blockquote><p><a href="http://lorinator.feminoise.com/feed-icons-for-blogging-guitarists/"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon19.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>rss icon 1 by ~khaoze</h3>
<blockquote><p><a href="http://khaoze.deviantart.com/art/rss-icon-1-86647943"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon20.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>Free Glossy Blogging Icons Set for Bloggers</h3>
<blockquote><p><a href="http://www.blogperfume.com/free-glossy-blogging-icons-set-for-bloggers/"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon21.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<h3>(max)Icone Blog - Set 2</h3>
<blockquote><p><a href="http://www.webfruits.it/dblog/articolo.asp?articolo=36"><img src="http://speckyboy.com/wp-content/uploads/2008/11/rssicon22.jpg" alt="RSS Feed Icon" /></a></p></blockquote>
<p>PS：突然发现这个主题在文章部分太窄了，好吧，准备换新主题了，SearchING……</p>
<ul class="related_post"><li><a href="http://orzdream.com/2008/12/merry-christmas/" title="Merry Christmas &#8211; 鲜果工具箱的礼物">Merry Christmas &#8211; 鲜果工具箱的礼物</a> (21)</li><li><a href="http://orzdream.com/2009/01/display-feedsky-feerburner-googlefeed-subscriber-count-in-text/" title="显示 FeedSky,FeedBurner,Google Feed 的文本统计数字的方法">显示 FeedSky,FeedBurner,Google Feed 的文本统计数字的方法</a> (37)</li><li><a href="http://orzdream.com/2009/01/xianguo-beta-in-my-eyes/" title="一个鲜果粉丝眼中的 Beta 版鲜果">一个鲜果粉丝眼中的 Beta 版鲜果</a> (27)</li><li><a href="http://orzdream.com/2008/10/xianguo-wall/" title="原来鲜果也有墙">原来鲜果也有墙</a> (28)</li><li><a href="http://orzdream.com/2008/09/get-google-chromium-lasted-version-via-rss/" title="通过 RSS 获取 Google Chrome 的最新开发版本">通过 RSS 获取 Google Chrome 的最新开发版本</a> (44)</li></ul><hr />
<p><small>© NetPuter for <a href="http://orzdream.com">OrzDream</a>, 2008. |
<a href="http://orzdream.com/2008/12/22-amazing-styles-of-rss-feed-icons/">查看原文</a> |
<a href="http://orzdream.com/2008/12/22-amazing-styles-of-rss-feed-icons/#comments">发表评论</a> | 
<a href="https://twitter.com/netputer">Follow @NetPuter</a>
<br/>
Tags: <a href="http://orzdream.com/tag/icon/" rel="tag">Icon</a>, <a href="http://orzdream.com/tag/rss/" rel="tag">RSS</a>, <a href="http://orzdream.com/tag/web20/" rel="tag">Web2.0</a><br/>
</small>]]></content:encoded>
			<wfw:commentRss>http://orzdream.com/2008/12/22-amazing-styles-of-rss-feed-icons/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
	</channel>
</rss>
