<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	>
<channel>
	<title>Comments on: What is RSS?</title>
	<atom:link href="http://thereasoner.com/articles/online/what-is-rss/feed" rel="self" type="application/rss+xml" />
	<link>http://thereasoner.com/articles/online/what-is-rss</link>
	<description>Analysis of Reason - Finding out the reasons for the insanity in the universe</description>
	<pubDate>Thu, 08 Jan 2009 13:13:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Bes</title>
		<link>http://thereasoner.com/articles/online/what-is-rss/comment-page-1#comment-55099</link>
		<dc:creator>Bes</dc:creator>
		<pubDate>Sat, 11 Aug 2007 00:28:32 +0000</pubDate>
		<guid isPermaLink="false">http://thereasoner.com/blog/what-is-rss/#comment-55099</guid>
		<description>&lt;strong&gt;wentworth&lt;/strong&gt;, thanks for the comment. By "&lt;em&gt;bugging out&lt;/em&gt;", do you mean it is crashing or not showing updates? Also, how long has this problem been going on? I know &lt;a href="http://www.ronalfy.com" title="Ronald"&gt;Ronald&lt;/a&gt; [another reader here] uses Google Reader a lot every single day, and I think he loves it. I will ask him to see if he is noticing any similar issues or if he has a workaround.

One of the RSS readers that I have been using for a while is &lt;a href="http://www.netvibes.com" title="Netvibes"&gt;Netvibes&lt;/a&gt;, though for a while now I have not logged into it that much.

Do you have many feeds in Google Reader? The number of feeds can affect the migration from one feed to another, unless Google Reader offers a way to export the feed list and the new service you try allows you to import any exported feed list. I would recommend trying Netvibes or one of the above list services, if you want something online only and not offline like Thunderbird, for a while so you can see if you prefer the new reader or if you would like to keep using Google Reader.</description>
		<content:encoded><![CDATA[<p><strong>wentworth</strong>, thanks for the comment. By &#8220;<em>bugging out</em>&#8220;, do you mean it is crashing or not showing updates? Also, how long has this problem been going on? I know <a href="http://www.ronalfy.com" title="Ronald">Ronald</a> [another reader here] uses Google Reader a lot every single day, and I think he loves it. I will ask him to see if he is noticing any similar issues or if he has a workaround.</p>
<p>One of the RSS readers that I have been using for a while is <a href="http://www.netvibes.com" title="Netvibes">Netvibes</a>, though for a while now I have not logged into it that much.</p>
<p>Do you have many feeds in Google Reader? The number of feeds can affect the migration from one feed to another, unless Google Reader offers a way to export the feed list and the new service you try allows you to import any exported feed list. I would recommend trying Netvibes or one of the above list services, if you want something online only and not offline like Thunderbird, for a while so you can see if you prefer the new reader or if you would like to keep using Google Reader.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wentworth</title>
		<link>http://thereasoner.com/articles/online/what-is-rss/comment-page-1#comment-54756</link>
		<dc:creator>wentworth</dc:creator>
		<pubDate>Wed, 08 Aug 2007 22:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://thereasoner.com/blog/what-is-rss/#comment-54756</guid>
		<description>I am currently using google reader for my RSS feeds, and am relatively happy with it. Although lately it has started bugging out almost once a week. Do you think I should switch to a different reader?</description>
		<content:encoded><![CDATA[<p>I am currently using google reader for my RSS feeds, and am relatively happy with it. Although lately it has started bugging out almost once a week. Do you think I should switch to a different reader?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bes</title>
		<link>http://thereasoner.com/articles/online/what-is-rss/comment-page-1#comment-44829</link>
		<dc:creator>Bes</dc:creator>
		<pubDate>Sun, 01 Jul 2007 02:10:06 +0000</pubDate>
		<guid isPermaLink="false">http://thereasoner.com/blog/what-is-rss/#comment-44829</guid>
		<description>If you receive this comment via e-mail and the code looks weird, please visit the website to view it in proper formatting, or e-mail me and I will send you another version. Thank you.

&lt;strong&gt;Jess&lt;/strong&gt;, here we go! :) Thanks for the comment, and for the excellent question! I'm glad this answers some of your questions. About me doing something odd on the street, I'm sure you would pay to watch such a thing, right? :)

Yes, if you write your own script, it is still possible to have RSS. RSS is possible on almost any kind of website; RSS itself is a piece of coding. It is a file that has certain commands that can be read by any RSS software on any platform [cell phones, computers, etc]. Those commands, or code, simply take the content of every page or a post and present them in a simplified form, so that they can be read universally by most RSS software.

In WordPress, RSS is created as a file by WordPress itself, automatically. Thus, WordPress comes with the function of creating RSS automatically, on the go; you do not need to do anything to enable it. This indeed can be a separate article, though I'll add it here in this comment for now. 

Summary: it is a piece of coding in a file. For example, below is the actual code of my customized RSS file in WordPress that outputs/creates the final RSS coding for this site: 

****** Actual RSS Code *******

&lt;blockquote&gt;&lt;code&gt;
&#60;?php
header('Content-type: text/xml; charset=' . get_option('blog_charset'), true);
$more = 1;

?&#62;
&#60;?php echo '&#60;?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'&#62;'; ?&#62;

&#60;!-- generator="wordpress/&#60;?php bloginfo_rss('version') ?&#62;" --&#62;
&#60;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/"
	&#60;?php do_action('rss2_ns'); ?&#62;
&#62;

&#60;channel&#62;
	&#60;title&#62;&#60;?php bloginfo_rss('name'); wp_title_rss(); ?&#62;&#60;/title&#62;
	&#60;link&#62;&#60;?php bloginfo_rss('url') ?&#62;&#60;/link&#62;
	&#60;description&#62;&#60;?php bloginfo_rss("description") ?&#62;&#60;/description&#62;
	&#60;pubDate&#62;&#60;?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?&#62;&#60;/pubDate&#62;
	&#60;generator&#62;http://wordpress.org/?v=&#60;?php bloginfo_rss('version'); ?&#62;&#60;/generator&#62;
	&#60;language&#62;&#60;?php echo get_option('rss_language'); ?&#62;&#60;/language&#62;
	&#60;?php do_action('rss2_head'); ?&#62;
	&#60;?php while( have_posts()) : the_post(); ?&#62;
	&#60;item&#62;
		&#60;title&#62;&#60;?php the_title_rss() ?&#62;&#60;/title&#62;
		&#60;link&#62;&#60;?php permalink_single_rss() ?&#62;&#60;/link&#62;
		&#60;comments&#62;&#60;?php comments_link(); ?&#62;&#60;/comments&#62;
		&#60;pubDate&#62;&#60;?php echo mysql2date('D, d M Y H:i:s +0000', get_post_time('Y-m-d H:i:s', true), false); ?&#62;&#60;/pubDate&#62;
		&#60;dc:creator&#62;&#60;?php the_author() ?&#62;&#60;/dc:creator&#62;
		&#60;?php the_category_rss() ?&#62;

		&#60;guid isPermaLink="false"&#62;&#60;?php the_guid(); ?&#62;&#60;/guid&#62;
&#60;?php if (get_option('rss_use_excerpt')) : ?&#62;
		&#60;description&#62;&#60;![CDATA[&#60;?php the_content_rss() ?&#62;]]&#62;&#60;/description&#62;
&#60;?php else : ?&#62;
		&#60;description&#62;&#60;![CDATA[&#60;?php the_content_rss() ?&#62;]]&#62;&#60;/description&#62;
	&#60;?php if ( strlen( $post-&#62;post_content ) &#62; 0 ) : ?&#62;
		&#60;content:encoded&#62;&#60;![CDATA[&#60;?php &lt;font color="red"&gt;;the_content&lt;/font&gt;() ?&#62;]]&#62;&#60;/content:encoded&#62;
	&#60;?php else : ?&#62;
		&#60;content:encoded&#62;&#60;![CDATA[&#60;?php &lt;font color="red"&gt;the_content_rss&lt;/font&gt;() ?&#62;]]&#62;&#60;/content:encoded&#62;
	&#60;?php endif; ?&#62;
&#60;?php endif; ?&#62;
		&#60;wfw:commentRss&#62;&#60;?php echo comments_rss(); ?&#62;&#60;/wfw:commentRss&#62;
&#60;?php rss_enclosure(); ?&#62;
	&#60;?php do_action('rss2_item'); ?&#62;
	&#60;/item&#62;
	&#60;?php endwhile; ?&#62;
&#60;/channel&#62;
&#60;/rss&#62;
&lt;/code&gt;&lt;/blockquote&gt;


****** End of Actual RSS Code *******


and below is a link to the actual file, in text format, with the actual code:

&lt;a href="http://thereasoner.com/wp-content/uploads/2007/06/feed-rss2.txt" title="RSS Feed Coding for The Reasoner"&gt;The Reasoner's RSS Feed Code in text format&lt;/a&gt;

The above code creates the final RSS file for most of the newer WordPress versions and installations. The different codes above have different functions. Basically, the file is creating an RSS webpage and replacing special commands, like "the_content", with the actual content, which I have highlighted with the color red above as an example. So the code itself will say "&lt;em&gt;the_content&lt;/em&gt;", but the output will replace that the_content with actual content from my website. WordPress came with this file; I simply customized it a bit to suit my needs. The above code, when viewed in a browser or a Feed Reader, automatically produces the proper RSS feed output.

How does that sound? Please let me know if you have more questions. :) Now I am thinking if I should implement this question into my post, or if I should make it a separate post. :)</description>
		<content:encoded><![CDATA[<p>If you receive this comment via e-mail and the code looks weird, please visit the website to view it in proper formatting, or e-mail me and I will send you another version. Thank you.</p>
<p><strong>Jess</strong>, here we go! <img src='http://thereasoner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Thanks for the comment, and for the excellent question! I&#8217;m glad this answers some of your questions. About me doing something odd on the street, I&#8217;m sure you would pay to watch such a thing, right? <img src='http://thereasoner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Yes, if you write your own script, it is still possible to have RSS. RSS is possible on almost any kind of website; RSS itself is a piece of coding. It is a file that has certain commands that can be read by any RSS software on any platform [cell phones, computers, etc]. Those commands, or code, simply take the content of every page or a post and present them in a simplified form, so that they can be read universally by most RSS software.</p>
<p>In WordPress, RSS is created as a file by WordPress itself, automatically. Thus, WordPress comes with the function of creating RSS automatically, on the go; you do not need to do anything to enable it. This indeed can be a separate article, though I&#8217;ll add it here in this comment for now. </p>
<p>Summary: it is a piece of coding in a file. For example, below is the actual code of my customized RSS file in WordPress that outputs/creates the final RSS coding for this site: </p>
<p>****** Actual RSS Code *******</p>
<blockquote><p><code><br />
&lt;?php<br />
header('Content-type: text/xml; charset=' . get_option('blog_charset'), true);<br />
$more = 1;</p>
<p>?&gt;<br />
&lt;?php echo '&lt;?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'&gt;'; ?&gt;</p>
<p>&lt;!-- generator="wordpress/&lt;?php bloginfo_rss('version') ?&gt;" --&gt;<br />
&lt;rss version="2.0"<br />
	xmlns:content="http://purl.org/rss/1.0/modules/content/"<br />
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"<br />
	xmlns:dc="http://purl.org/dc/elements/1.1/"<br />
	&lt;?php do_action('rss2_ns'); ?&gt;<br />
&gt;</p>
<p>&lt;channel&gt;<br />
	&lt;title&gt;&lt;?php bloginfo_rss('name'); wp_title_rss(); ?&gt;&lt;/title&gt;<br />
	&lt;link&gt;&lt;?php bloginfo_rss('url') ?&gt;&lt;/link&gt;<br />
	&lt;description&gt;&lt;?php bloginfo_rss("description") ?&gt;&lt;/description&gt;<br />
	&lt;pubDate&gt;&lt;?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?&gt;&lt;/pubDate&gt;<br />
	&lt;generator&gt;http://wordpress.org/?v=&lt;?php bloginfo_rss('version'); ?&gt;&lt;/generator&gt;<br />
	&lt;language&gt;&lt;?php echo get_option('rss_language'); ?&gt;&lt;/language&gt;<br />
	&lt;?php do_action('rss2_head'); ?&gt;<br />
	&lt;?php while( have_posts()) : the_post(); ?&gt;<br />
	&lt;item&gt;<br />
		&lt;title&gt;&lt;?php the_title_rss() ?&gt;&lt;/title&gt;<br />
		&lt;link&gt;&lt;?php permalink_single_rss() ?&gt;&lt;/link&gt;<br />
		&lt;comments&gt;&lt;?php comments_link(); ?&gt;&lt;/comments&gt;<br />
		&lt;pubDate&gt;&lt;?php echo mysql2date('D, d M Y H:i:s +0000', get_post_time('Y-m-d H:i:s', true), false); ?&gt;&lt;/pubDate&gt;<br />
		&lt;dc:creator&gt;&lt;?php the_author() ?&gt;&lt;/dc:creator&gt;<br />
		&lt;?php the_category_rss() ?&gt;</p>
<p>		&lt;guid isPermaLink="false"&gt;&lt;?php the_guid(); ?&gt;&lt;/guid&gt;<br />
&lt;?php if (get_option('rss_use_excerpt')) : ?&gt;<br />
		&lt;description&gt;&lt;![CDATA[&lt;?php the_content_rss() ?&gt;]]&gt;&lt;/description&gt;<br />
&lt;?php else : ?&gt;<br />
		&lt;description&gt;&lt;![CDATA[&lt;?php the_content_rss() ?&gt;]]&gt;&lt;/description&gt;<br />
	&lt;?php if ( strlen( $post-&gt;post_content ) &gt; 0 ) : ?&gt;<br />
		&lt;content:encoded&gt;&lt;![CDATA[&lt;?php <font color="red">;the_content</font>() ?&gt;]]&gt;&lt;/content:encoded&gt;<br />
	&lt;?php else : ?&gt;<br />
		&lt;content:encoded&gt;&lt;![CDATA[&lt;?php <font color="red">the_content_rss</font>() ?&gt;]]&gt;&lt;/content:encoded&gt;<br />
	&lt;?php endif; ?&gt;<br />
&lt;?php endif; ?&gt;<br />
		&lt;wfw:commentRss&gt;&lt;?php echo comments_rss(); ?&gt;&lt;/wfw:commentRss&gt;<br />
&lt;?php rss_enclosure(); ?&gt;<br />
	&lt;?php do_action(&#8217;rss2_item&#8217;); ?&gt;<br />
	&lt;/item&gt;<br />
	&lt;?php endwhile; ?&gt;<br />
&lt;/channel&gt;<br />
&lt;/rss&gt;<br />
</code></p></blockquote>
<p>****** End of Actual RSS Code *******</p>
<p>and below is a link to the actual file, in text format, with the actual code:</p>
<p><a href="http://thereasoner.com/wp-content/uploads/2007/06/feed-rss2.txt" title="RSS Feed Coding for The Reasoner">The Reasoner&#8217;s RSS Feed Code in text format</a></p>
<p>The above code creates the final RSS file for most of the newer WordPress versions and installations. The different codes above have different functions. Basically, the file is creating an RSS webpage and replacing special commands, like &#8220;the_content&#8221;, with the actual content, which I have highlighted with the color red above as an example. So the code itself will say &#8220;<em>the_content</em>&#8220;, but the output will replace that the_content with actual content from my website. WordPress came with this file; I simply customized it a bit to suit my needs. The above code, when viewed in a browser or a Feed Reader, automatically produces the proper RSS feed output.</p>
<p>How does that sound? Please let me know if you have more questions. <img src='http://thereasoner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Now I am thinking if I should implement this question into my post, or if I should make it a separate post. <img src='http://thereasoner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bes</title>
		<link>http://thereasoner.com/articles/online/what-is-rss/comment-page-1#comment-44828</link>
		<dc:creator>Bes</dc:creator>
		<pubDate>Sun, 01 Jul 2007 02:02:46 +0000</pubDate>
		<guid isPermaLink="false">http://thereasoner.com/blog/what-is-rss/#comment-44828</guid>
		<description>&lt;strong&gt;Jerine&lt;/strong&gt;, heh, sorry that it's long! Also, yes, RSS = Really Scary Squirrel :D. 

Hmmm, I think the reason the page takes a long time to load is because of some external image loading. When the page was loading, did you see any words like "pub" or "mybloglog" or "yahoo" in the status bar, or maybe the MyBlogLog code on the right hand side was taking some time to load? For me, when my site loads slow, it is usually MyBlogLog, and it happens regularly, unfortunately.

&lt;strong&gt;Valerie&lt;/strong&gt;, hmmm, thanks for pointing that out! Those 2 files should indeed work most of the time. I will check the different versions later to see what is compatible with which version. I'll update the article with that info, thank you. :)

&lt;strong&gt;Layouts&lt;/strong&gt;, thanks for coming and the comment. More information on the scary squirrel is on its way. ;) What do you think about RSS itself?</description>
		<content:encoded><![CDATA[<p><strong>Jerine</strong>, heh, sorry that it&#8217;s long! Also, yes, RSS = Really Scary Squirrel :D. </p>
<p>Hmmm, I think the reason the page takes a long time to load is because of some external image loading. When the page was loading, did you see any words like &#8220;pub&#8221; or &#8220;mybloglog&#8221; or &#8220;yahoo&#8221; in the status bar, or maybe the MyBlogLog code on the right hand side was taking some time to load? For me, when my site loads slow, it is usually MyBlogLog, and it happens regularly, unfortunately.</p>
<p><strong>Valerie</strong>, hmmm, thanks for pointing that out! Those 2 files should indeed work most of the time. I will check the different versions later to see what is compatible with which version. I&#8217;ll update the article with that info, thank you. <img src='http://thereasoner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Layouts</strong>, thanks for coming and the comment. More information on the scary squirrel is on its way. <img src='http://thereasoner.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> What do you think about RSS itself?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://thereasoner.com/articles/online/what-is-rss/comment-page-1#comment-44787</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sun, 01 Jul 2007 01:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://thereasoner.com/blog/what-is-rss/#comment-44787</guid>
		<description>i was hoping for really scary squirrel :(

haha...very informative post, thanks!</description>
		<content:encoded><![CDATA[<p>i was hoping for really scary squirrel <img src='http://thereasoner.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>haha&#8230;very informative post, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: valerie</title>
		<link>http://thereasoner.com/articles/online/what-is-rss/comment-page-1#comment-44610</link>
		<dc:creator>valerie</dc:creator>
		<pubDate>Sat, 30 Jun 2007 12:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://thereasoner.com/blog/what-is-rss/#comment-44610</guid>
		<description>As far as hosted WordPress blogs, I think that you can only use the /feed/ URL if the owner has changed settings and setup nicer URLs for permalinks.  Otherwise I believe it's still /wp-rss2.php or /wp-atom.php.  At least it used to be that way, not sure about the newer versions, but if the /feed/ doesn't work, either of those other ones should work since they're the link to the actual file.</description>
		<content:encoded><![CDATA[<p>As far as hosted WordPress blogs, I think that you can only use the /feed/ URL if the owner has changed settings and setup nicer URLs for permalinks.  Otherwise I believe it&#8217;s still /wp-rss2.php or /wp-atom.php.  At least it used to be that way, not sure about the newer versions, but if the /feed/ doesn&#8217;t work, either of those other ones should work since they&#8217;re the link to the actual file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jerine</title>
		<link>http://thereasoner.com/articles/online/what-is-rss/comment-page-1#comment-44608</link>
		<dc:creator>jerine</dc:creator>
		<pubDate>Sat, 30 Jun 2007 12:12:29 +0000</pubDate>
		<guid isPermaLink="false">http://thereasoner.com/blog/what-is-rss/#comment-44608</guid>
		<description>So long... gave up while half way reading. maybe it bores me because i already know what rss means. but i didnt know its actually really scary squirrel. bwahahahahhaa.... is it because your post are so long, that's why it takes time for the page to load? i don't think it does make any sense, but it takes about one minute waiting time for loading.</description>
		<content:encoded><![CDATA[<p>So long&#8230; gave up while half way reading. maybe it bores me because i already know what rss means. but i didnt know its actually really scary squirrel. bwahahahahhaa&#8230;. is it because your post are so long, that&#8217;s why it takes time for the page to load? i don&#8217;t think it does make any sense, but it takes about one minute waiting time for loading.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jess</title>
		<link>http://thereasoner.com/articles/online/what-is-rss/comment-page-1#comment-44546</link>
		<dc:creator>Jess</dc:creator>
		<pubDate>Sat, 30 Jun 2007 07:53:24 +0000</pubDate>
		<guid isPermaLink="false">http://thereasoner.com/blog/what-is-rss/#comment-44546</guid>
		<description>=) Thanks Bes. This answered some of my questions, and I loved the analogy of watching you doing something odd on the street and on videotape =D Very descriptive indeed, hmmm.

But what about this, I know this is a little more in detail... if my news/blogs/whatever is not hosted by anything... perhaps if I was smart enough to write my own script, or I simply manually added news onto my site (and it was my own domain), is it still possible to use RSS? Is RSS a piece of coding, or is it an actual software or something. I know Wordpress and other blogging systems have it built in, but if I were to do everything manually... how is RSS 'installed'?

Just wondering =) I realise that may be a whole topic of its own... you can just answer simply then. Such as, it's just a piece of coding or if it is a software or whatnot.</description>
		<content:encoded><![CDATA[<p>=) Thanks Bes. This answered some of my questions, and I loved the analogy of watching you doing something odd on the street and on videotape =D Very descriptive indeed, hmmm.</p>
<p>But what about this, I know this is a little more in detail&#8230; if my news/blogs/whatever is not hosted by anything&#8230; perhaps if I was smart enough to write my own script, or I simply manually added news onto my site (and it was my own domain), is it still possible to use RSS? Is RSS a piece of coding, or is it an actual software or something. I know Wordpress and other blogging systems have it built in, but if I were to do everything manually&#8230; how is RSS &#8216;installed&#8217;?</p>
<p>Just wondering =) I realise that may be a whole topic of its own&#8230; you can just answer simply then. Such as, it&#8217;s just a piece of coding or if it is a software or whatnot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bes</title>
		<link>http://thereasoner.com/articles/online/what-is-rss/comment-page-1#comment-44465</link>
		<dc:creator>Bes</dc:creator>
		<pubDate>Sat, 30 Jun 2007 01:29:50 +0000</pubDate>
		<guid isPermaLink="false">http://thereasoner.com/blog/what-is-rss/#comment-44465</guid>
		<description>&lt;strong&gt;John&lt;/strong&gt;, thanks for the comment. I am happy that you find this intro interesting. :)

I have added Illumio to the list above, thank you. That is indeed a very nice service for many people. 

I was wondering if it works by searching through keywords in every RSS feed. Have you used it so far? Does it help you track specific websites easily too, in addition to finding out about new feeds? Or does it go through feeds of the sites you specify and then show you only the feeds related to your interest?

Thanks again John. I really appreciate your comment and the information.</description>
		<content:encoded><![CDATA[<p><strong>John</strong>, thanks for the comment. I am happy that you find this intro interesting. <img src='http://thereasoner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I have added Illumio to the list above, thank you. That is indeed a very nice service for many people. </p>
<p>I was wondering if it works by searching through keywords in every RSS feed. Have you used it so far? Does it help you track specific websites easily too, in addition to finding out about new feeds? Or does it go through feeds of the sites you specify and then show you only the feeds related to your interest?</p>
<p>Thanks again John. I really appreciate your comment and the information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://thereasoner.com/articles/online/what-is-rss/comment-page-1#comment-44461</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sat, 30 Jun 2007 00:11:56 +0000</pubDate>
		<guid isPermaLink="false">http://thereasoner.com/blog/what-is-rss/#comment-44461</guid>
		<description>Great intro to RSS feeds.  I thought you might be interested in a next generation offline feed reader called illumio (www.illumio.com) that actually alerts you to the feed content that matches your interests.  It's a great way to subscribe to a bunch of web feeds and then have illumio intelligently show you only what you care about.</description>
		<content:encoded><![CDATA[<p>Great intro to RSS feeds.  I thought you might be interested in a next generation offline feed reader called illumio (www.illumio.com) that actually alerts you to the feed content that matches your interests.  It&#8217;s a great way to subscribe to a bunch of web feeds and then have illumio intelligently show you only what you care about.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
