<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Dade's Blog</title>
	<atom:link href="http://deadbadger.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://deadbadger.wordpress.com</link>
	<description>The eternal ramblings of a spotted mind</description>
	<lastBuildDate>Thu, 24 Apr 2008 14:25:55 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='deadbadger.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/a3e2bc125b2b571f201bf3328b52f2eb?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Dade's Blog</title>
		<link>http://deadbadger.wordpress.com</link>
	</image>
			<item>
		<title>Yum&#8230;.</title>
		<link>http://deadbadger.wordpress.com/2008/04/24/yum/</link>
		<comments>http://deadbadger.wordpress.com/2008/04/24/yum/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 14:19:11 +0000</pubDate>
		<dc:creator>deadbadger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hash]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://deadbadger.wordpress.com/?p=8</guid>
		<description><![CDATA[def password=(pw)
	@password = pw
	salt = [Array.new(6){rand(256).chr}.join].pack("m").chomp
	self.password_salt, self.password_hash = salt, Digest::MD5.hexdigest(pw + salt)
end
Note that the line [Array.new(6){rand(250).chr}.join].pack("m").chomp is a good way to auto-generate passwords.   Have a bit of fun with it.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deadbadger.wordpress.com&blog=3214454&post=8&subd=deadbadger&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><code>def password=(pw)<br />
	@password = pw<br />
	salt = [Array.new(6){rand(256).chr}.join].pack("m").chomp<br />
	self.password_salt, self.password_hash = salt, Digest::MD5.hexdigest(pw + salt)<br />
end</code></p>
<p>Note that the line <code>[Array.new(6){rand(250).chr}.join].pack("m").chomp</code> is a good way to auto-generate passwords. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Have a bit of fun with it.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadbadger.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadbadger.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadbadger.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadbadger.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadbadger.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadbadger.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadbadger.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadbadger.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadbadger.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadbadger.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadbadger.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadbadger.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deadbadger.wordpress.com&blog=3214454&post=8&subd=deadbadger&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://deadbadger.wordpress.com/2008/04/24/yum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4e6ce3032d4d3920fdfe6564e730171?s=96&#38;d=identicon" medium="image">
			<media:title type="html">deadbadger</media:title>
		</media:content>
	</item>
		<item>
		<title>Rails :: Some minor view sorting</title>
		<link>http://deadbadger.wordpress.com/2008/04/22/rails-some-minor-view-sorting/</link>
		<comments>http://deadbadger.wordpress.com/2008/04/22/rails-some-minor-view-sorting/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 00:17:07 +0000</pubDate>
		<dc:creator>deadbadger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[views]]></category>

		<guid isPermaLink="false">http://deadbadger.wordpress.com/?p=7</guid>
		<description><![CDATA[You would not believe the trouble I went to just to get the correct form of arranging &#8216;posts&#8217; on the index of one of my side projects. Well, it was about 20 minutes&#8217; trouble, but still more trouble than I would have liked!
The project is something I&#8217;m making for a friend to keep track of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deadbadger.wordpress.com&blog=3214454&post=7&subd=deadbadger&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You would not believe the trouble I went to just to get the correct form of arranging &#8216;posts&#8217; on the index of one of my side projects. Well, it was about 20 minutes&#8217; trouble, but still more trouble than I would have liked!</p>
<p>The project is something I&#8217;m making for a friend to keep track of his DVD collection, which has the field :loaned as a boolean. What I was trying to do is make it so that there were two tables on the index page. One that listed available DVDs, and another to list those that were already loaned out and obviously their relevant information (which isn&#8217;t so important at this time).</p>
<p>So here&#8217;s how I managed it&#8230;. :/</p>
<p><code>def index<br />
@loaned = Movie.find(:all, :conditions =&gt; { :loaned =&gt; true })<br />
@not_loaned = Movie.find(:all, :conditions =&gt; { :loaned =&gt; false })<br />
end</code></p>
<p>(Looks simple I know, but it took me at least 20 minutes to work out <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  ). Then in the &#8216;index.html.erb&#8217; file you will need something similar to&#8230;</p>
<p><code>....<br />
Available to Loan<br />
&lt;%- for movie in @not_loaned -%&gt;<br />
&lt;%=h movie.information_etc_etc %&gt;<br />
&lt;%- end -%&gt;<br />
&lt;br/&gt;&lt;hr/&gt;&lt;br/&gt;<br />
Loaned out<br />
&lt;%- for movie in @loaned -%&gt;<br />
&lt;%=h movie.information_etc_etc %&gt;<br />
&lt;%- end -%&gt;<br />
.....</code></p>
<p>And it works. Well, it should do. As a side note: the erubis tags <code>&lt;%- code -%&gt;</code> removes the double spacing in the Source View of your webpage, as opposed to the standard <code>&lt;% code %&gt;</code>. There is a <a href="railscasts.com" target="_blank">RailsCasts</a> episode that goes over this I believe. Just a tidbit for you. :p</p>
<p>Sorry for the realllllly bad code pasting. WordPress.com doesn&#8217;t like code pastes. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadbadger.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadbadger.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadbadger.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadbadger.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadbadger.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadbadger.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadbadger.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadbadger.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadbadger.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadbadger.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadbadger.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadbadger.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deadbadger.wordpress.com&blog=3214454&post=7&subd=deadbadger&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://deadbadger.wordpress.com/2008/04/22/rails-some-minor-view-sorting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4e6ce3032d4d3920fdfe6564e730171?s=96&#38;d=identicon" medium="image">
			<media:title type="html">deadbadger</media:title>
		</media:content>
	</item>
		<item>
		<title>Restful Authentication for Rails 2.0</title>
		<link>http://deadbadger.wordpress.com/2008/04/08/restful-authentication-for-rails-20/</link>
		<comments>http://deadbadger.wordpress.com/2008/04/08/restful-authentication-for-rails-20/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 07:22:19 +0000</pubDate>
		<dc:creator>deadbadger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[rails 2.0]]></category>
		<category><![CDATA[restful authentication]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[user guide]]></category>

		<guid isPermaLink="false">http://deadbadger.wordpress.com/?p=6</guid>
		<description><![CDATA[You should look to the following article link to find out how to do it for Rails 2.0. I won&#8217;t post here the whole thing as I&#8217;d only be copying (roughly) someone else&#8217;s work anyway. Just a few points to note though.
include AuthenticatedSystemshould go under your class declaration in the app/controllers/application.rb file. Also, in the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deadbadger.wordpress.com&blog=3214454&post=6&subd=deadbadger&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You should look to the following article link to find out how to do it for Rails 2.0. I won&#8217;t post here the whole thing as I&#8217;d only be copying (roughly) someone else&#8217;s work anyway. Just a few points to note though.</p>
<p><code>include AuthenticatedSystem</code><br />should go under your class declaration in the app/controllers/application.rb file. Also, in the application.html.erb layout you want (right have the very end of the document) the following:<br />
<code>&lt;%= yield %&gt;</code></p>
<p>Don&#8217;t be a twat and forget that like I did, and then sit there wondering why the hell it wasn&#8217;t showing the content.</p>
<p>Anyway, here&#8217;s the post: <a href="http://www.railsforum.com/viewtopic.php?id=14216" target="_blank">Restful Authentication Rails 2.0</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadbadger.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadbadger.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadbadger.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadbadger.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadbadger.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadbadger.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadbadger.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadbadger.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadbadger.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadbadger.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadbadger.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadbadger.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deadbadger.wordpress.com&blog=3214454&post=6&subd=deadbadger&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://deadbadger.wordpress.com/2008/04/08/restful-authentication-for-rails-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4e6ce3032d4d3920fdfe6564e730171?s=96&#38;d=identicon" medium="image">
			<media:title type="html">deadbadger</media:title>
		</media:content>
	</item>
		<item>
		<title>#01 &#8211; Deploying a Rails Application</title>
		<link>http://deadbadger.wordpress.com/2008/03/26/01-deploying-a-rails-application/</link>
		<comments>http://deadbadger.wordpress.com/2008/03/26/01-deploying-a-rails-application/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 10:51:18 +0000</pubDate>
		<dc:creator>deadbadger</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[rails 2.0]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://deadbadger.wordpress.com/?p=5</guid>
		<description><![CDATA[This is a really, really simple way to create a new application in Rails 2.0. I will write more when I have the time so that this application is then further developed. However, for now you just need this to start work.The first thing you need to do is make sure Rails is properly install.I&#8217;m [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deadbadger.wordpress.com&blog=3214454&post=5&subd=deadbadger&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is a really, really simple way to create a new application in Rails 2.0. I will write more when I have the time so that this application is then further developed. However, for now you just need this to start work.The first thing you need to do is make sure Rails is properly install.I&#8217;m assuming you have Ruby installed already. If not, go to <a href="http://www.ruby-lang.org/en/downloads" target="_blank">Ruby-Lang.org</a> to find the relevant installation for your OS.</p>
<p>Open a command shell/prompt of your choice and run: </p>
<p><code>gem install rails --include-dependencies</code></p>
<p>..and go make a quick cup of coffee while it does its thing. Once install, you want to create a project folder for all your rails application. For simplicity&#8217;s sake I stuck this in MyDocuments\Rails (for my Windows development platform). This will store all your projects from now on. Use the command shell to navigate to the Rails folder you created and run:</p>
<p><code>rails MyProject</code></p>
<p>to create your project folders, etc. Rails follows the <abbr title="Model-View-Controller">MVC</abbr> paradigm. You can read more about this <a href="http://en.wikipedia.org/wiki/Model-view-controller" target="_blank">here</a>.</p>
<p>Now you want to go into the project folder you just created. In the case of this tutorial it is &#8216;MyProject&#8217;. The next command you want to get things up and running quickly is the scaffold command.</p>
<p><code>ruby script\generate scaffold Todo title:string priority:integer done:boolean</code></p>
<p>This will create a &#8217;skeleton&#8217;, otherwise known as a scaffold, for your project. The <b>title:string priority:integer done:boolean</b> part of the code is your database creation. This creates a column with the name of the word -before- the colon of a type specified -after- the colon.</p>
<p>You&#8217;re done. You now have a skeleton for you project. Go ahead and load up a server with the command:</p>
<p><code>ruby script\server</code></p>
<p>Open the URL <a href="http://localhost:3000/todos/" target="_blank">http://localhost:3000/todos/</a> to see what you&#8217;ve just created.</p>
<p>NOTE: In the scaffold command we gave the scaffold a name of &#8216;Todo&#8217;. ActiveRecord will automatically pluralise this when you use the scaffolding method, so the URL turns into &#8216;/todos/&#8217;</p>
<p>Have a poke around the files within the project folder and see how the system works. Also, you should check out <a href="http://www.akitaonrails.com/" target="_blank">Akita on Rails</a> for a more in-depth look at Rails 2.0</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadbadger.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadbadger.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadbadger.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadbadger.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadbadger.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadbadger.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadbadger.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadbadger.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadbadger.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadbadger.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadbadger.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadbadger.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deadbadger.wordpress.com&blog=3214454&post=5&subd=deadbadger&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://deadbadger.wordpress.com/2008/03/26/01-deploying-a-rails-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4e6ce3032d4d3920fdfe6564e730171?s=96&#38;d=identicon" medium="image">
			<media:title type="html">deadbadger</media:title>
		</media:content>
	</item>
		<item>
		<title>New page opening for business. Fantastic. x)</title>
		<link>http://deadbadger.wordpress.com/2008/03/19/new-page-opening-for-business-fantastic-x/</link>
		<comments>http://deadbadger.wordpress.com/2008/03/19/new-page-opening-for-business-fantastic-x/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 15:55:37 +0000</pubDate>
		<dc:creator>deadbadger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deadbadger.wordpress.com/?p=4</guid>
		<description><![CDATA[This is really just a quick test of some functions. Here goes.
def index
Users.find(:all)
end
Booo, seems that the wordpress.com version isn&#8217;t going to be good for my code pastyness
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deadbadger.wordpress.com&blog=3214454&post=4&subd=deadbadger&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is really just a quick test of some functions. Here goes.</p>
<p><code>def index<br />
Users.find(:all)<br />
end</code></p>
<p>Booo, seems that the wordpress.com version isn&#8217;t going to be good for my code pastyness</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadbadger.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadbadger.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadbadger.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadbadger.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadbadger.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadbadger.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadbadger.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadbadger.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadbadger.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadbadger.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadbadger.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadbadger.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deadbadger.wordpress.com&blog=3214454&post=4&subd=deadbadger&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://deadbadger.wordpress.com/2008/03/19/new-page-opening-for-business-fantastic-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4e6ce3032d4d3920fdfe6564e730171?s=96&#38;d=identicon" medium="image">
			<media:title type="html">deadbadger</media:title>
		</media:content>
	</item>
	</channel>
</rss>