<?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>Tony Baltazar &#187; Programming</title>
	<atom:link href="http://abaltazar.org/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://abaltazar.org</link>
	<description>Technology / Security / Free Software / Programming</description>
	<lastBuildDate>Tue, 27 Jul 2010 06:21:56 +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>Hacker humor</title>
		<link>http://abaltazar.org/2010/05/01/hacker-humor/</link>
		<comments>http://abaltazar.org/2010/05/01/hacker-humor/#comments</comments>
		<pubDate>Sat, 01 May 2010 08:15:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=159</guid>
		<description><![CDATA[While reading the regex portion of Apress&#8217;s Beginning Perl Second Edition by James Lee, the following sample code totally made my day. #!/usr/bin/perl -w use strict; $_ = "There are two major products that came out of Berkeley: LSD and UNIX"; s/(\w+)\s+(\w+)/$2 $1/; $_ = ucfirst($_); print $_, "?\n";]]></description>
			<content:encoded><![CDATA[<p>While reading the regex portion of Apress&#8217;s Beginning Perl Second Edition by James Lee, the following sample code totally made my day.</p>
<p><code><br />
#!/usr/bin/perl -w<br />
use strict;</p>
<p>$_ = "There are two major products that came out of Berkeley: LSD and UNIX";</p>
<p>s/(\w+)\s+(\w+)/$2 $1/;</p>
<p>$_ = ucfirst($_);<br />
print $_, "?\n";<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2010/05/01/hacker-humor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 years and counting</title>
		<link>http://abaltazar.org/2010/04/22/3-years-and-counting/</link>
		<comments>http://abaltazar.org/2010/04/22/3-years-and-counting/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 03:56:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=152</guid>
		<description><![CDATA[It&#8217;s been three years since this blog came into existence and it doesn&#8217;t look like I&#8217;ll be posting any meaningful or relevant content to it anytime soon.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been three years since this blog came into existence and it doesn&#8217;t look like I&#8217;ll be posting any meaningful or relevant content to it anytime soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2010/04/22/3-years-and-counting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New domain name registered: perlninja.pl</title>
		<link>http://abaltazar.org/2010/02/05/new-domain-name-registered-perlninjapl/</link>
		<comments>http://abaltazar.org/2010/02/05/new-domain-name-registered-perlninjapl/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 07:22:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://abaltazar.org/2010/02/05/new-domain-name-registered-perlninjapl/</guid>
		<description><![CDATA[I may not be a perl ninja (just yet) but the domain name kicks ass. perlninja.pl]]></description>
			<content:encoded><![CDATA[<p>I may not be a perl ninja (just yet) but the domain name kicks ass.<br />
<br /><a href="http://www.perlninja.pl">perlninja.pl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2010/02/05/new-domain-name-registered-perlninjapl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goodbye Eclipse and hello vim</title>
		<link>http://abaltazar.org/2009/04/19/goodbye-eclipse-and-hello-vim/</link>
		<comments>http://abaltazar.org/2009/04/19/goodbye-eclipse-and-hello-vim/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 07:59:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://abaltazar.org/2009/04/19/goodbye-eclipse-and-hello-vim/</guid>
		<description><![CDATA[Apparently Apple doesn&#8217;t think its a good idea to ship vi with syntax highlighting turned on by default, giving how really easy it is to enable. I simply had to edit the /usr/share/vim/vimrc file. Full instructions are in http://www.geekology.co.za/blog/2009/03/enable-syntax-highlighting-other-options-in-vim-mac-osx-leopard]]></description>
			<content:encoded><![CDATA[<p>Apparently Apple doesn&#8217;t think its a good idea to ship vi with syntax highlighting turned on by default, giving how really easy it is to enable.</p>
<p>I simply had to edit the <em>/usr/share/vim/vimrc</em> file. Full instructions are in <a href="http://www.geekology.co.za/blog/2009/03/enable-syntax-highlighting-other-options-in-vim-mac-osx-leopard">http://www.geekology.co.za/blog/2009/03/enable-syntax-highlighting-other-options-in-vim-mac-osx-leopard</a></p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2009/04/19/goodbye-eclipse-and-hello-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Novice Programming</title>
		<link>http://abaltazar.org/2008/05/12/novice-programming/</link>
		<comments>http://abaltazar.org/2008/05/12/novice-programming/#comments</comments>
		<pubDate>Mon, 12 May 2008 07:19:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://abaltazar.org/2008/05/12/novice-programming/</guid>
		<description><![CDATA[I started developing my very first web application from scratch earlier this week.  It will remain a secret as I will try to make some money from it. It will be written entirely in PHP and backed by MySQL. Hopefully I would have an alpha or yet even better a beta release by the end [...]]]></description>
			<content:encoded><![CDATA[<p>I started developing my very first web application from scratch earlier this week.  It will remain a secret as I will try to make some money from it. It will be written entirely in PHP and backed by MySQL. Hopefully I would have an alpha or yet even better a beta release by the end of the year. I&#8217;ve said enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2008/05/12/novice-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quest towards self-taught computer programming</title>
		<link>http://abaltazar.org/2007/07/10/quest-towards-self-though-computer-programming/</link>
		<comments>http://abaltazar.org/2007/07/10/quest-towards-self-though-computer-programming/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 06:00:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=5</guid>
		<description><![CDATA[After a three week hiatus I&#8217;ve got back againg reading my PHP and Bash shell programming books.]]></description>
			<content:encoded><![CDATA[<p>After a three week hiatus I&#8217;ve got back againg reading my PHP and Bash shell programming books.<br />
<br />
<img src="http://images.amazon.com/images/P/0672327627.01.MZZZZZZZ.jpg" /></p>
<p><img src="http://images.amazon.com/images/P/0672314819.01.MZZZZZZZ.jpg" alt="Bash " /></p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2007/07/10/quest-towards-self-though-computer-programming/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Writing shell scripts</title>
		<link>http://abaltazar.org/2007/06/24/writing-shell-scripts/</link>
		<comments>http://abaltazar.org/2007/06/24/writing-shell-scripts/#comments</comments>
		<pubDate>Sun, 24 Jun 2007 08:00:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://abaltazar.org/wordpress/?p=3</guid>
		<description><![CDATA[I&#8217;m tired of writing shell scripts all night long. Tired but not feeling like sleeping yet.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m tired of writing shell scripts all night long. Tired but not feeling like sleeping yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2007/06/24/writing-shell-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
