<?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>Casey Watson &#187; Perl</title>
	<atom:link href="http://casedogdesigns.com/wordpress/category/perl/feed/" rel="self" type="application/rss+xml" />
	<link>http://casedogdesigns.com/wordpress</link>
	<description>Outdated Thoughts</description>
	<lastBuildDate>Tue, 01 Dec 2009 22:08:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PerlPod gets new home</title>
		<link>http://casedogdesigns.com/wordpress/perlpod-gets-new-home/</link>
		<comments>http://casedogdesigns.com/wordpress/perlpod-gets-new-home/#comments</comments>
		<pubDate>Fri, 30 Mar 2007 19:58:32 +0000</pubDate>
		<dc:creator>Casey</dc:creator>
				<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://cd2/wordpress/?p=10</guid>
		<description><![CDATA[PerlPod is a command line podcatcher. It will fetch your favorite podcasts. This long dormant project was recently picked by Jonathan Hopkiss. He has extended it to use gnupod to copy the podcasts to your iPod. You can then listen to them at your convenience.
Get PerlPod
]]></description>
			<content:encoded><![CDATA[<p>PerlPod is a command line podcatcher. It will fetch your favorite podcasts. This long dormant project was recently picked by Jonathan Hopkiss. He has extended it to use gnupod to copy the podcasts to your iPod. You can then listen to them at your convenience.</p>
<p><a href="http://sourceforge.net/projects/perlpod/">Get PerlPod</a></p>
]]></content:encoded>
			<wfw:commentRss>http://casedogdesigns.com/wordpress/perlpod-gets-new-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Perl File IO</title>
		<link>http://casedogdesigns.com/wordpress/perl-file-io/</link>
		<comments>http://casedogdesigns.com/wordpress/perl-file-io/#comments</comments>
		<pubDate>Wed, 29 Nov 2006 19:55:03 +0000</pubDate>
		<dc:creator>Casey</dc:creator>
				<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://cd2/wordpress/?p=8</guid>
		<description><![CDATA[I was amazed to see how simple Perl makes it to read the lines of a file into an array.
#!/usr/bin/perl
open(I, &#8220;flavors.txt&#8221;);
@flavors = &#60;I&#62;;
With just two lines of code, you are ready to do some string munching. You can then run through the elements in the array with a loop similar to the following.
for($i=0; $i&#60;@flavors.length; $i++) [...]]]></description>
			<content:encoded><![CDATA[<p>I was amazed to see how simple Perl makes it to read the lines of a file into an array.</p>
<blockquote><p>#!/usr/bin/perl<br />
open(I, &#8220;flavors.txt&#8221;);<br />
@flavors = &lt;I&gt;;</p></blockquote>
<p>With just two lines of code, you are ready to do some string munching. You can then run through the elements in the array with a loop similar to the following.</p>
<blockquote><p>for($i=0; $i&lt;@flavors.length; $i++) {<br />
@flavors[i] =~ s/•//;<br />
}</p></blockquote>
<p>I would enjoy seeing some other ways to iterate through the array.</p>
]]></content:encoded>
			<wfw:commentRss>http://casedogdesigns.com/wordpress/perl-file-io/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
