<?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>mariabustoss</title>
	<atom:link href="http://mariabustoss.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mariabustoss.wordpress.com</link>
	<description>Just another WordPress.com site</description>
	<lastBuildDate>Thu, 26 Jan 2012 06:35:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mariabustoss.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>mariabustoss</title>
		<link>http://mariabustoss.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mariabustoss.wordpress.com/osd.xml" title="mariabustoss" />
	<atom:link rel='hub' href='http://mariabustoss.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Building my first RPM package</title>
		<link>http://mariabustoss.wordpress.com/2012/01/26/building-my-first-rpm-package/</link>
		<comments>http://mariabustoss.wordpress.com/2012/01/26/building-my-first-rpm-package/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 06:35:40 +0000</pubDate>
		<dc:creator>mariabustoss</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mariabustoss.wordpress.com/?p=52</guid>
		<description><![CDATA[This is my attempt at building an RPM package for ed. At first I followed the simple instructions from lab: Move the tarball to ~/rpmbuild/SOURCES/: mv ed-1.6.tar.gz ~/rpmbuild/SOURCES/ Create an empty skeleton spec file: rpmdev-newspec ed-1.6 Then I edited the spec file using vi: vi ed-1.6.spec After filling in all the required sections of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mariabustoss.wordpress.com&amp;blog=31705256&amp;post=52&amp;subd=mariabustoss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my attempt at building an RPM package for ed.</p>
<p>At first I followed the simple instructions from lab:</p>
<p>Move the tarball to ~/rpmbuild/SOURCES/:</p>
<p><em>mv ed-1.6.tar.gz ~/rpmbuild/SOURCES</em>/</p>
<p>Create an empty skeleton spec file:</p>
<p><em><code>rpmdev-newspec ed-1.6</code></em></p>
<p><em><code></code></em>Then I edited the spec file using vi:</p>
<p><em>vi ed-1.6.spec</em></p>
<p><em></em>After filling in all the required sections of the spec file I attempted to build the package by running:</p>
<p><em><code>rpmbuild -ba ed-1.6.spec</code></em></p>
<p>I got the following errors:</p>
<p><em>error: Installed (but unpackaged) file(s) found:</em><br />
<em>   /usr/share/info/dir</em><br />
<em>   /usr/share/info/ed.info.gz</em></p>
<p><em>RPM build errors:</em><br />
<em>    Installed (but unpackaged) file(s) found:</em><br />
<em>   /usr/share/info/dir</em><br />
<em>   /usr/share/info/ed.info.gz</em></p>
<p>I proceeded to browse on google for a solution and it didn&#8217;t take long before I came across a <a title="solution" href="http://www.cyberciti.biz/faq/rhel-centos-linuxrpmbuild-error-installed-but-unpackaged-files-found/" target="_blank">solution</a>.</p>
<p>To fix this error I needed to specify the list of files that would be installed.</p>
<p>I added this to the %files section of the spec file:</p>
<p><em>%files</em><br />
<em>%doc README</em><br />
<em>%defattr(-,root,root,-)</em><br />
<em>%{_bindir}/*</em><br />
<em>%{_mandir}/man1/*</em><br />
<em>/usr/share/info/</em></p>
<p>And finally! I got it to work.</p>
<p>Run te rmplint command to check the spec file RPM and SRPM for Errors or warnings:</p>
<p><em></em><em>[root@mbustosroman SPECS]# rpmlint ed-1.6.spec<br />
ed-1.6.spec:21: W: configure-without-libdir-spec<br />
ed-1.6.spec:23: W: macro-in-comment %configure<br />
ed-1.6.spec:7: W: mixed-use-of-spaces-and-tabs (spaces: line 1, tab: line 7)<br />
0 packages and 1 specfiles checked; 0 errors, 3 warnings.</em></p>
<p><em>[root@mbustosroman SRPMS]# rpmlint ed-1.6-1.src.rpm<br />
ed.src: I: enchant-dictionary-not-found en_US<br />
ed.src: W: summary-not-capitalized C text-editor<br />
ed.src: E: no-changelogname-tag<br />
ed.src: W: invalid-license GNU<br />
ed.src: E: invalid-spec-name<br />
ed.src:21: W: configure-without-libdir-spec<br />
ed.src:23: W: macro-in-comment %configure<br />
ed.src:7: W: mixed-use-of-spaces-and-tabs (spaces: line 1, tab: line 7)<br />
1 packages and 0 specfiles checked; 2 errors, 5 warnings.</em></p>
<p><em>[root@mbustosroman x86_64]# rpmlint ed-debuginfo-1.6-1.x86_64.rpm<br />
ed-debuginfo.x86_64: I: enchant-dictionary-not-found en_US<br />
ed-debuginfo.x86_64: E: no-changelogname-tag<br />
ed-debuginfo.x86_64: W: invalid-license GNU<br />
ed-debuginfo.x86_64: E: debuginfo-without-sources<br />
1 packages and 0 specfiles checked; 2 errors, 1 warnings.</p>
<p></em>Even though I got the the rpm to build there are still some errors I have to fix. I found it extremely useful the rpmlint command tells you exactly what the error is, it is very straight forward. I think I&#8217;ve got a pretty good idea on how to fix the errors and will post one I am done. It is somehow 2am now! Will update this tomorrow.<em><br />
</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mariabustoss.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mariabustoss.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mariabustoss.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mariabustoss.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mariabustoss.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mariabustoss.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mariabustoss.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mariabustoss.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mariabustoss.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mariabustoss.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mariabustoss.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mariabustoss.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mariabustoss.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mariabustoss.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mariabustoss.wordpress.com&amp;blog=31705256&amp;post=52&amp;subd=mariabustoss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mariabustoss.wordpress.com/2012/01/26/building-my-first-rpm-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3cce2d51a1f5cf2d496557159b6f3a6d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mariabustoss</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing gzip &#8211; A data compression program</title>
		<link>http://mariabustoss.wordpress.com/2012/01/26/installing-gzip-a-data-compression-program/</link>
		<comments>http://mariabustoss.wordpress.com/2012/01/26/installing-gzip-a-data-compression-program/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 00:59:57 +0000</pubDate>
		<dc:creator>mariabustoss</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mariabustoss.wordpress.com/?p=36</guid>
		<description><![CDATA[This blog-post will be a guideline of my experience installing gzip. The original link for this software is http://www.gnu.org/software/gzip/ . This is a very popular compression program, its installation is also easy and does not take too long to install. Download and Extract To Download the program go to the following link: Download http://ftp.gnu.org/gnu/gzip/ and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mariabustoss.wordpress.com&amp;blog=31705256&amp;post=36&amp;subd=mariabustoss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This blog-post will be a guideline of my experience installing gzip. The original link for this software is <a title="gzip" href="http://www.gnu.org/software/gzip/" target="_blank">http://www.gnu.org/software/gzip/</a> . This is a very popular compression program, its installation is also easy and does not take too long to install.</p>
<p><strong>Download and Extract</strong></p>
<p><strong></strong>To Download the program go to the following link:</p>
<p><a title="gnu/gzip" href="http://ftp.gnu.org/gnu/gzip/" target="_blank">Download http://ftp.gnu.org/gnu/gzip/</a> and click on one of the latest modified tar balls.</p>
<p>Extract the file with the following command:</p>
<p><em>tar xzvf gzip-1.4.tar.gz<br />
</em></p>
<p>Move into the newly created directory ed-1.6:<em></em></p>
<p><em>cd gzip-1.4/<br />
</em></p>
<p>Now you need to find a script that runs the build of the program, more often then not it will be this:<em></em></p>
<p><em>./configure</em></p>
<p>When successful, run:<br />
<em>make</em></p>
<p><em></em>followed by :<br />
<em>make install</em></p>
<p>To check the time it took the command to execute we type:</p>
<p><em>time make<br />
</em></p>
<p>real    0m2.213s<br />
user    0m0.316s<br />
sys    0m0.955s</p>
<p>If done correctly the software should have now been succesfully installed and ready to run.</p>
<p>Here is a quick example that might be useful&#8230;</p>
<p><a href="http://mariabustoss.files.wordpress.com/2012/01/screenshot-at-2012-01-25-1932122.png"><img class="alignleft size-full wp-image-42" title="Example" src="http://mariabustoss.files.wordpress.com/2012/01/screenshot-at-2012-01-25-1932122.png?w=575&#038;h=175" alt="" width="575" height="175" /></a></p>
<p>Use the command <em>gzip </em>followed by the file(s) name to compress. Notice the decrease in size of the file after compression.</p>
<p>To decompress just use gunzip instead. Go to the gzip man page for more information on additional options.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mariabustoss.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mariabustoss.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mariabustoss.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mariabustoss.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mariabustoss.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mariabustoss.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mariabustoss.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mariabustoss.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mariabustoss.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mariabustoss.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mariabustoss.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mariabustoss.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mariabustoss.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mariabustoss.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mariabustoss.wordpress.com&amp;blog=31705256&amp;post=36&amp;subd=mariabustoss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mariabustoss.wordpress.com/2012/01/26/installing-gzip-a-data-compression-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3cce2d51a1f5cf2d496557159b6f3a6d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mariabustoss</media:title>
		</media:content>

		<media:content url="http://mariabustoss.files.wordpress.com/2012/01/screenshot-at-2012-01-25-1932122.png" medium="image">
			<media:title type="html">Example</media:title>
		</media:content>
	</item>
		<item>
		<title>Install Ed &#8211; A line oriented text editor</title>
		<link>http://mariabustoss.wordpress.com/2012/01/25/install-ed-a-line-oriented-text-editor/</link>
		<comments>http://mariabustoss.wordpress.com/2012/01/25/install-ed-a-line-oriented-text-editor/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 23:25:03 +0000</pubDate>
		<dc:creator>mariabustoss</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mariabustoss.wordpress.com/?p=29</guid>
		<description><![CDATA[This blog-post will be a guideline with my experience in installing ed. The original link for this software is http://www.gnu.org/software/ed/ . The installation didn&#8217;t take very long and is fairly easy. Download and Extract To download the program go to the following link: Download http://ftpmirror.gnu.org/ed/ and click on one of the latest modified tar balls. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mariabustoss.wordpress.com&amp;blog=31705256&amp;post=29&amp;subd=mariabustoss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This blog-post will be a guideline with my experience in installing ed. The original link for this software is <a title="software/ed" href="http://www.gnu.org/software/ed/" target="_blank">http://www.gnu.org/software/ed/ </a>. The installation didn&#8217;t take very long and is fairly easy.</p>
<p><strong>Download and Extract</strong></p>
<p>To download the program go to the following link:</p>
<p><a href="http://ftpmirror.gnu.org/ed/">Download http://ftpmirror.gnu.org/ed/</a> and click on one of the latest modified tar balls.</p>
<p>Extract the file with the following command:</p>
<p><em>tar xzvf ed-1.6.tar.gz</em></p>
<p>Move into the newly created directory ed-1.6:</p>
<p><em>cd ed-1.6/</em></p>
<p>Now you need to find a script that runs the build of the program, more often then not it will be this:<em></em></p>
<p><em>./configure</em></p>
<p>When successful, run:<br />
<em>make</em></p>
<p><em></em>followed by :<br />
<em>make install</em></p>
<p>To check the time it took to execute we use:</p>
<p><em>time make</em></p>
<p>real    0m4.223s<br />
user    0m3.422s<br />
sys    0m0.523s</p>
<p>If done correctly the software should have now been succesfully installed and ready to run. Go to the ed man page for more information on how to use!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mariabustoss.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mariabustoss.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mariabustoss.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mariabustoss.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mariabustoss.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mariabustoss.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mariabustoss.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mariabustoss.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mariabustoss.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mariabustoss.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mariabustoss.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mariabustoss.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mariabustoss.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mariabustoss.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mariabustoss.wordpress.com&amp;blog=31705256&amp;post=29&amp;subd=mariabustoss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mariabustoss.wordpress.com/2012/01/25/install-ed-a-line-oriented-text-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3cce2d51a1f5cf2d496557159b6f3a6d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mariabustoss</media:title>
		</media:content>
	</item>
		<item>
		<title>SBR600 Introduction</title>
		<link>http://mariabustoss.wordpress.com/2012/01/19/sbr600-introduction/</link>
		<comments>http://mariabustoss.wordpress.com/2012/01/19/sbr600-introduction/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 23:19:55 +0000</pubDate>
		<dc:creator>mariabustoss</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mariabustoss.wordpress.com/?p=26</guid>
		<description><![CDATA[Hello, My name is Maria Bustos-Roman and I am currently enrolled at Seneca College in the CTY program. This blog will be dedicated to my SBR600 class. Some of my hobbies are to play the guitar, travel, and music. I have just recently learned about the Rapberry Pi project. Raspberri Pi is a credit card [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mariabustoss.wordpress.com&amp;blog=31705256&amp;post=26&amp;subd=mariabustoss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>My name is Maria Bustos-Roman and I am currently enrolled at Seneca College in the CTY program. This blog will be dedicated to my SBR600 class. Some of my hobbies are to play the guitar, travel, and music.</p>
<p>I have just recently learned about the Rapberry Pi project. Raspberri Pi is a credit card sized computer that is capable of doing much of the things a desktop computer does. One of their intents is to get young people more interested in computers which I believe is a great idea. Also it only runs linux which will hopefully make young people more aware of the linux operating systems. Also the price being $25 for Model A and $35 for Model B makes it accessible and affordable. I feel that its price and funcitonality overrides its limitations.</p>
<p>After reading about IRC a little bit more I decided to install and run HydraIRC. Here is an image of my very first conversation!:)</p>
<div>
<dl>
<dt><a href="http://mariabustoss.files.wordpress.com/2012/01/sbr600irc.png"><img title="SBR600IRC" src="http://mariabustoss.files.wordpress.com/2012/01/sbr600irc.png?w=300&#038;h=153" alt="" width="300" height="153" /></a></dt>
<dd>My very first conversation in HydraIRC conversation</dd>
</dl>
</div>
<ul>
<li>Here are some <strong>LINKS </strong>to my other pages:</li>
</ul>
<p><a title="My Seneca Wiki Page" href="http://zenit.senecac.on.ca/wiki/index.php/User:Mbustos-roman">My Seneca Wiki Page</a></p>
<p><a title="My Fedora Wiki Page" href="https://fedoraproject.org/wiki/User:Mbustosroman">My Fedora Wiki Page</a></p>
<ul>
<li><strong>IRC</strong> nicknames: mbustosroman, mb001</li>
</ul>
<ul>
<li>Seneca <strong>LEARN ID:</strong>mbustos-roman</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mariabustoss.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mariabustoss.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mariabustoss.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mariabustoss.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mariabustoss.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mariabustoss.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mariabustoss.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mariabustoss.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mariabustoss.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mariabustoss.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mariabustoss.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mariabustoss.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mariabustoss.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mariabustoss.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mariabustoss.wordpress.com&amp;blog=31705256&amp;post=26&amp;subd=mariabustoss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mariabustoss.wordpress.com/2012/01/19/sbr600-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3cce2d51a1f5cf2d496557159b6f3a6d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mariabustoss</media:title>
		</media:content>

		<media:content url="http://mariabustoss.files.wordpress.com/2012/01/sbr600irc.png?w=300" medium="image">
			<media:title type="html">SBR600IRC</media:title>
		</media:content>
	</item>
	</channel>
</rss>
