<?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</title>
	<atom:link href="http://abaltazar.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://abaltazar.org</link>
	<description>Technology / Security / Free Software / Programming</description>
	<lastBuildDate>Wed, 03 Mar 2010 05:58:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Total quality</title>
		<link>http://abaltazar.org/2010/02/27/total-quality/</link>
		<comments>http://abaltazar.org/2010/02/27/total-quality/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 23:51:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sports]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=120</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/0rOSRBmituA&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/0rOSRBmituA&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2010/02/27/total-quality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCALE 8x</title>
		<link>http://abaltazar.org/2010/02/22/scale-8x/</link>
		<comments>http://abaltazar.org/2010/02/22/scale-8x/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 04:51:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=100</guid>
		<description><![CDATA[Being my first Linux conference, overall I had a really good time. Seeing and talking to a lot of famous Open Source figures was pretty kool.
I only managed to see four different talks.
My favorite talk was Jono Bacon&#8217;s talk on the evolution of the Free Software/Open Source movement to what now will be  fun [...]]]></description>
			<content:encoded><![CDATA[<p>Being my first Linux conference, overall I had a really good time. Seeing and talking to a lot of famous Open Source figures was pretty kool.</p>
<p>I only managed to see four different talks.<br />
My favorite talk was Jono Bacon&#8217;s talk on the evolution of the Free Software/Open Source movement to what now will be  fun and rapid development using a new development approach. Essentially, Cononical has developed a Python software development framework called Quickly (reminds me of Ruby on Rails, though I haven&#8217;t hacked much on it to even compare its similarities) That makes it real easy to package (.deb only) and publish.</p>
<p><strong>BSD for Linux users:</strong><br />
This talk was mainly focused on the difference and advantages of using the BSD&#8217; s (NetBSD, FreeBSD, OpenBSD) compared  to Linux. Now more then I ever, I&#8217;m thinking of delaying a DNS BIND server on my local network running on OpenBSD. </p>
<p><strong>Basic Introduction to KDE:</strong><br />
As the name implies, it was definitely, an introduction to KDE 4. Although I prefer using Gnome, the </p>
<p><strong>Python for non programmers:</strong><br />
Also, as the name implies, this was a definite introduction to Python. Although I&#8217;m not big on Python, I definitely felt like an advance Python hacker by being on this talk. </p>
<p>Even though I only attended the Saturday event, I really enjoyed SCALE. It definitely felt like a community conference and it didn&#8217;t felt corporate what so ever.  </p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2010/02/22/scale-8x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mod_ruby and eRuby</title>
		<link>http://abaltazar.org/2010/02/16/mod_ruby-and-eruby/</link>
		<comments>http://abaltazar.org/2010/02/16/mod_ruby-and-eruby/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 07:13:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=75</guid>
		<description><![CDATA[I finally had some time to install mod_ruby and eRuby on my server. 
Prerequisites:
httpd-devel ruby ruby-devel eruby
yum install httpd-devel ruby ruby-devel eruby
Installing mod_ruby was pretty confusing, as module default compilation is intended for Apache 1.3
If you&#8217;re running Apache 2.0 or higher,  I managed to successfully compiled mod_ruby as the following:
 ./configure.rb &#8211;with-apr-includes=/usr/include/apr-1
make
make install
After the [...]]]></description>
			<content:encoded><![CDATA[<p>I finally had some time to install mod_ruby and eRuby on my server. </p>
<p>Prerequisites:<br />
httpd-devel ruby ruby-devel eruby<br />
yum install httpd-devel ruby ruby-devel eruby</p>
<p>Installing mod_ruby was pretty confusing, as module default compilation is intended for Apache 1.3</p>
<p>If you&#8217;re running Apache 2.0 or higher,  I managed to successfully compiled mod_ruby as the following:<br />
 ./configure.rb &#8211;with-apr-includes=/usr/include/apr-1<br />
make<br />
make install</p>
<p>After the install, then its a matter of just adding the custom ruby http conf file to httpd conf.d directory.</p>
<p>SAMPLE:<br />
<code><br />
AddType text/html .rhtml<br />
LoadModule ruby_module modules/mod_ruby.so</p>
<p><IfModule mod_ruby.c><br />
  RubyRequire apache/ruby-run<br />
  #RubyRequire apache/ruby-debug</p>
<p>  RubyRequire apache/eruby-run<br />
  #RubyRequire apache/eruby-debug</p>
<p>  # Execute *.rbx files as Ruby scripts<br />
  <Files *.rbx><br />
    Options ExecCGI<br />
    SetHandler ruby-object<br />
    RubyHandler Apache::RubyRun.instance<br />
    #RubyHandler Apache::RubyDebug.instance<br />
  </Files></p>
<p>  # Handle *.rhtml files as eRuby files<br />
  <Files *.rhtml><br />
    SetHandler ruby-object<br />
    RubyHandler Apache::ERubyRun.instance<br />
    RubyHandler Apache::ERubyDebug.instance<br />
  </Files><br />
</IfModule><br />
</code></p>
<p>Now I can embed Ruby code on standard html pages serving and running natively using Apache and eRuby. <img src='http://abaltazar.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
Hence, <a href="http://perlninja.pl">perlninja.pl</a></p>
<p>References:<br />
<a href="http://www.modruby.net/en/">http://www.modruby.net/en/</a><br />
<a href="http://www.ptwit.ac.th/seksan/blog/?p=59">http://www.ptwit.ac.th/seksan/blog/?p=59</a></p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2010/02/16/mod_ruby-and-eruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Upgrade</title>
		<link>http://abaltazar.org/2010/02/15/wordpress-upgrade/</link>
		<comments>http://abaltazar.org/2010/02/15/wordpress-upgrade/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 02:17:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=60</guid>
		<description><![CDATA[WordPress upgrade went real smooth. At a glance, WordPress 1.4 and 2.9 seem to be worlds apart.
]]></description>
			<content:encoded><![CDATA[<p>WordPress upgrade went real smooth. At a glance, WordPress 1.4 and 2.9 seem to be worlds apart.</p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2010/02/15/wordpress-upgrade/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>I&#8217;m LPIC-1 Certified</title>
		<link>http://abaltazar.org/2010/01/30/im-lpic-1-certified/</link>
		<comments>http://abaltazar.org/2010/01/30/im-lpic-1-certified/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 02:42:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>

		<guid isPermaLink="false">http://abaltazar.org/2010/01/30/im-lpic-1-certified/</guid>
		<description><![CDATA[A month after my initial planning, I finally manage to pass both LPIC-1 exams.

]]></description>
			<content:encoded><![CDATA[<p>A month after my initial planning, I finally manage to pass both LPIC-1 exams.<br />
<img src="http://www.lpi.org/var/ezwebin_site/storage/images/media/images/lpic1_large/6903-1-eng-US/lpic1_large.gif" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2010/01/30/im-lpic-1-certified/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer upgrades</title>
		<link>http://abaltazar.org/2010/01/10/computer-upgrades/</link>
		<comments>http://abaltazar.org/2010/01/10/computer-upgrades/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 05:13:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Linux/Unix]]></category>

		<guid isPermaLink="false">http://abaltazar.org/2010/01/10/computer-upgrades/</guid>
		<description><![CDATA[I finally upgraded the hard drives on my MacBook, Mac Mini (Server), and my main desktop Mac Mini.
Macbook (Leopard)
For some strange reason, I wasn&#8217;t able to clone my existing Leopard system to the new 500 GB as the clone process failed about 10% &#8211; 15% completion.  So I just backed up all my files [...]]]></description>
			<content:encoded><![CDATA[<p>I finally upgraded the hard drives on my MacBook, Mac Mini (Server), and my main desktop Mac Mini.</p>
<p>Macbook (Leopard)<br />
For some strange reason, I wasn&#8217;t able to clone my existing Leopard system to the new 500 GB as the clone process failed about 10% &#8211; 15% completion.  So I just backed up all my files and installed Snow Leopard from scratch.</p>
<p>Mac Mini (Leopard)<br />
Unlike with my MacBook, cloning the existing Leopard system to the new hard drive worked flawlessly on my desktop Mac Mini.<br />
After that, upgrading to Snow Leopard worked like a charm.</p>
<p>Mac Mini (CentOS)<br />
Upgrading the RAM on the Mini to 2 GB was simple, the hard drive upgrade was a completely different story. First, I wasn&#8217;t able to find any open source program that would allow me to clone to an attach mass storage USB drive. Unless I didn&#8217;t read the documentation properly, both CloneZilla and FOG only allow the clone output image to be saved on a network system and not locally, even if its a different hard drive. </p>
<p>Little that I knew. dd was everything I needed to clone the hard drive.<br />
commands I used:</p>
<p><code>dd if=/dev/sda of=/dev/sdb</code></p>
<p>After the dd copy was finished, I rebotted to the new hard drive only to find out that <code>/dev/sda5 , /dev/sda6 and /dev/sda7</code> were not copied properly to the new hard drive. So I had to reboot into rescue mode using the original CentOS install DVD and ran the  following commands:<br />
<code>dd if=/dev/sda5 of=/dev/sdb5</code><br />
<code>dd if=/dev/sda6 of=/dev/sdb6</code><br />
<code>dd if=/dev/sda7 of=/dev/sdb7</code></p>
<p>On my second reboot to the new 500 GB hard drive, Linux was able to boot perfectly fine with all my original settings!!! Until&#8230; I opened up fdisk only to find out that I wasn&#8217;t able to add partition (I had over 400 GB of free space in the drive) because I wasnt able to modify my existing partition table that consisted of 3 primary partions and 1 extended partition that consisted of three logic partitions within it. So I just download the live GParted program and I was able to created the additional 400 GB logical drive from there.</p>
<p>On the third attempt to boot into the new 500 GB hard drive, Linux had to do filesystem check to /dev/sda7 which happened to be my /home partition. The fsck completely wiped out all of the contents that was in my home directory. Which wasn&#8217;t a big of a deal since I already had a full backup of all my files.</p>
<p>Conclusion<br />
Overall upgrading  the hard drive on a Mac Mini running CentOS was really painful, but I had the feeling that it could have been worse.</p>
<p><a href="http://www.centos.org">CentOS<a/><br />
<a href="http://gparted.sourceforge.net/livecd.php">GParted Live CD <a/></p>
<p>-Alpha01</p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2010/01/10/computer-upgrades/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome is finally ready for prime time</title>
		<link>http://abaltazar.org/2009/12/07/google-chrome-is-finally-ready-for-prime-time/</link>
		<comments>http://abaltazar.org/2009/12/07/google-chrome-is-finally-ready-for-prime-time/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 08:21:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://abaltazar.org/2009/12/07/google-chrome-is-finally-ready-for-prime-time/</guid>
		<description><![CDATA[At least for me that is. Now that I finally installed Chromium on my Ubuntu MSI Wind netbook, Chrome has become my primary web browser in all of my computers. Apart from being extremely fast, it&#8217;s not a memory hog like Firefox. After using it daily for a couple of months now, I only seem [...]]]></description>
			<content:encoded><![CDATA[<p>At least for me that is. Now that I finally installed Chromium on my Ubuntu MSI Wind netbook, Chrome has become my primary web browser in all of my computers. Apart from being extremely fast, it&#8217;s not a memory hog like Firefox. After using it daily for a couple of months now, I only seem to notice tiny Flash related issues of which I&#8217;m not sure to blame Chrome for the problems due to how unstable Flash is on any browser for that matter.</p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2009/12/07/google-chrome-is-finally-ready-for-prime-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chalie Miller is my hero</title>
		<link>http://abaltazar.org/2009/12/03/chalie-miller-is-my-hero/</link>
		<comments>http://abaltazar.org/2009/12/03/chalie-miller-is-my-hero/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 04:38:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://abaltazar.org/2009/12/03/chalie-miller-is-my-hero/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/no11eIx0x6w&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/no11eIx0x6w&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2009/12/03/chalie-miller-is-my-hero/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Almost three years later</title>
		<link>http://abaltazar.org/2009/11/30/almost-three-years-later/</link>
		<comments>http://abaltazar.org/2009/11/30/almost-three-years-later/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 06:26:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://abaltazar.org/2009/11/30/almost-three-years-later/</guid>
		<description><![CDATA[I finally got an iPhone.
]]></description>
			<content:encoded><![CDATA[<p>I finally got an iPhone.</p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2009/11/30/almost-three-years-later/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
