<?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>Nicholas Hubbard</title>
	<atom:link href="http://nicholashubbard.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nicholashubbard.wordpress.com</link>
	<description>Ramblings of a System Admin and Programmer</description>
	<lastBuildDate>Thu, 19 May 2011 08:32:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='nicholashubbard.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Nicholas Hubbard</title>
		<link>http://nicholashubbard.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://nicholashubbard.wordpress.com/osd.xml" title="Nicholas Hubbard" />
	<atom:link rel='hub' href='http://nicholashubbard.wordpress.com/?pushpress=hub'/>
		<item>
		<title>PHP and Groups of Checkboxes</title>
		<link>http://nicholashubbard.wordpress.com/2007/11/25/php-and-groups-of-checkboxes/</link>
		<comments>http://nicholashubbard.wordpress.com/2007/11/25/php-and-groups-of-checkboxes/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 20:23:45 +0000</pubDate>
		<dc:creator>Nicholas Hubbard</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[checkboxes. mysql]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://nicholashubbard.com/2007/11/25/php-and-groups-of-checkboxes/</guid>
		<description><![CDATA[So I recently ran into a problem of needing a way to store multiple checkboxes as one object in a MySQL database. After researching this for a long time I was able to find about 10 different things that when pieced together make a very nice solutions. test.php &#8211; Code &#60;? # ** This is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=18&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I recently ran into a problem of needing a way to store multiple checkboxes as one object in a MySQL database. After researching this for a long time I was able to find about 10 different things that when pieced together make a very nice solutions.</p>
<p>test.php  &#8211; Code<br />
<code><br />
&lt;?<br />
# ** This is set to create an empty array in case the result is empty **<br />
$group = array();<br />
if ($_SERVER['REQUEST_METHOD'] == 'POST'){<br />
$group = $_POST['group'];<br />
$imploded = implode(",",$group);<br />
# ** You can use this command to turn the imploded result back into an array **<br />
# ** $imploded = the imploded result from your database **<br />
# $group = explode(",",$imploded)<br />
# ** Instead of echoing $imploded you would won't to store the value in the database **<br />
echo $imploded;<br />
}<br />
?&gt;<br />
&lt;br /&gt;<br />
&lt;form action="test.php" method="post"&gt;<br />
&lt;?<br />
# ** This is the code for modifying, it can be used for creating also **<br />
# ** You can remove the PHP if and echo statement, as it is not needed on the create page **<br />
?&gt;<br />
&lt;input name="group[1]" type="checkbox" id="group[1]" value="1" &lt;? if (is_int(array_search("1",$group))) { echo "checked"; } ?&gt;&gt;1&lt;br&gt;<br />
&lt;input name="group[2]" type="checkbox" id="group[2]" value="2" &lt;? if (is_int(array_search("2",$group))) { echo "checked"; } ?&gt;&gt;2&lt;br&gt;<br />
&lt;input name="group[3]" type="checkbox" id="group[3]" value="3" &lt;? if (is_int(array_search("3",$group))) { echo "checked"; } ?&gt;&gt;3&lt;br&gt;<br />
&lt;input name="group[4]" type="checkbox" id="group[4]" value="4" &lt;? if (is_int(array_search("4",$group))) { echo "checked"; } ?&gt;&gt;4&lt;br&gt;<br />
&lt;input name="sumbit" type="submit" value="Submit"&gt;<br />
&lt;/form&gt; </code></p>
<p>Hopefully this will help anyone in the future.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nicholashubbard.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nicholashubbard.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nicholashubbard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nicholashubbard.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nicholashubbard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nicholashubbard.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nicholashubbard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nicholashubbard.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nicholashubbard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nicholashubbard.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nicholashubbard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nicholashubbard.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nicholashubbard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nicholashubbard.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nicholashubbard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nicholashubbard.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=18&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nicholashubbard.wordpress.com/2007/11/25/php-and-groups-of-checkboxes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6beb110aeb9149e20424add853714ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nick</media:title>
		</media:content>
	</item>
		<item>
		<title>Move to WordPress.com</title>
		<link>http://nicholashubbard.wordpress.com/2007/11/16/move-to-wordpresscom/</link>
		<comments>http://nicholashubbard.wordpress.com/2007/11/16/move-to-wordpresscom/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 06:50:17 +0000</pubDate>
		<dc:creator>Nicholas Hubbard</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://nicholashubbard.com/2007/11/16/move-to-wordpresscom/</guid>
		<description><![CDATA[I have made the decission to move this blog over to wordpress.com. This was not an easy choice but I believe it is going to be the right choice. Over the next week or two I will begin the process of moving entries from the wiki over to this blog so now wiki articles are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=16&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have made the decission to move this blog over to wordpress.com. This was not an easy choice but I believe it is going to be the right choice. Over the next week or two I will begin the process of moving entries from the wiki over to this blog so now wiki articles are lost.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nicholashubbard.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nicholashubbard.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nicholashubbard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nicholashubbard.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nicholashubbard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nicholashubbard.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nicholashubbard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nicholashubbard.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nicholashubbard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nicholashubbard.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nicholashubbard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nicholashubbard.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nicholashubbard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nicholashubbard.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nicholashubbard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nicholashubbard.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=16&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nicholashubbard.wordpress.com/2007/11/16/move-to-wordpresscom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6beb110aeb9149e20424add853714ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nick</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing mod_python on DirectAdmin Servers</title>
		<link>http://nicholashubbard.wordpress.com/2007/10/28/installing-mod_python-on-directadmin-servers/</link>
		<comments>http://nicholashubbard.wordpress.com/2007/10/28/installing-mod_python-on-directadmin-servers/#comments</comments>
		<pubDate>Sun, 28 Oct 2007 20:39:22 +0000</pubDate>
		<dc:creator>Nicholas Hubbard</dc:creator>
				<category><![CDATA[DirectAdmin]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[mod_python]]></category>

		<guid isPermaLink="false">http://nicholashubbard.wordpress.com/2007/10/28/installing-mod_python-on-directadmin-servers/</guid>
		<description><![CDATA[To install mod_python on DirectAdmin run the following commands: WARNING: This only works on apache2 and 2.2 cd /usr/local/src wget http://www.apache.org/dist/httpd/modpython/mod_python-3.3.1.tgz tar -zxvf mod_python-3.3.1.tgz cd mod_python-3.3.1 ./configure make make install Then edit /etc/httpd/conf/httpd.conf and add the following line under the php loadmodules: LoadModule python_module /usr/lib/apache/mod_python.so<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=14&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To install mod_python on DirectAdmin run the following commands:</p>
<p><em><strong>WARNING: This only works on apache2 and 2.2</strong></em></p>
<p>cd /usr/local/src<br />
wget http://www.apache.org/dist/httpd/modpython/mod_python-3.3.1.tgz<br />
tar -zxvf mod_python-3.3.1.tgz<br />
cd mod_python-3.3.1<br />
./configure<br />
make<br />
make install</p>
<p>Then edit /etc/httpd/conf/httpd.conf</p>
<p>and add the following line under the php loadmodules:</p>
<p>LoadModule python_module /usr/lib/apache/mod_python.so</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nicholashubbard.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nicholashubbard.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nicholashubbard.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nicholashubbard.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nicholashubbard.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nicholashubbard.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nicholashubbard.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nicholashubbard.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nicholashubbard.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nicholashubbard.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nicholashubbard.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nicholashubbard.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nicholashubbard.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nicholashubbard.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nicholashubbard.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nicholashubbard.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=14&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nicholashubbard.wordpress.com/2007/10/28/installing-mod_python-on-directadmin-servers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6beb110aeb9149e20424add853714ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nick</media:title>
		</media:content>
	</item>
		<item>
		<title>Convert Red Hat Enterprise Linux 5 (RHEL5) to CentOS 5</title>
		<link>http://nicholashubbard.wordpress.com/2007/10/28/convert-red-hat-enterprise-linux-5-rhel5-to-centos-5/</link>
		<comments>http://nicholashubbard.wordpress.com/2007/10/28/convert-red-hat-enterprise-linux-5-rhel5-to-centos-5/#comments</comments>
		<pubDate>Sun, 28 Oct 2007 17:48:26 +0000</pubDate>
		<dc:creator>Nicholas Hubbard</dc:creator>
				<category><![CDATA[RHEL]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[centos5]]></category>
		<category><![CDATA[convert rhel to centos]]></category>
		<category><![CDATA[rhel5]]></category>

		<guid isPermaLink="false">http://nicholashubbard.wordpress.com/2007/10/28/convert-red-hat-enterprise-linux-5-rhel5-to-centos-5/</guid>
		<description><![CDATA[Converting RHEL to CentOS is a lot easier then expected. Especially with EL5. I recently ran into a problem and needed to convert my RHEL5 install to a CentOS 5 install. Below are the instructions I used: yum clean all mkdir ~/centos cd ~/centos/ Then download the following Packages: RPM-GPG-KEY-CentOS-5 centos-release centos-release-notes yum yum-updatesd rpm [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=13&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Converting RHEL to CentOS is a lot easier then expected. Especially with EL5.</p>
<p>I recently ran into a problem and needed to convert my RHEL5 install to a CentOS 5 install. Below are the instructions I used:</p>
<p>yum clean all<br />
mkdir ~/centos<br />
cd ~/centos/</p>
<p>Then download the following Packages:<br />
RPM-GPG-KEY-CentOS-5<br />
centos-release<br />
centos-release-notes<br />
yum<br />
yum-updatesd</p>
<p>rpm &#8211;import RPM-GPG-KEY-CentOS-5<br />
rpm -e &#8211;nodeps redhat-release<br />
rpm -e yum-rhn-plugin</p>
<p>rpm -Uvh *.rpm<br />
yum upgrade</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nicholashubbard.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nicholashubbard.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nicholashubbard.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nicholashubbard.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nicholashubbard.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nicholashubbard.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nicholashubbard.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nicholashubbard.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nicholashubbard.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nicholashubbard.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nicholashubbard.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nicholashubbard.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nicholashubbard.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nicholashubbard.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nicholashubbard.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nicholashubbard.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=13&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nicholashubbard.wordpress.com/2007/10/28/convert-red-hat-enterprise-linux-5-rhel5-to-centos-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6beb110aeb9149e20424add853714ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nick</media:title>
		</media:content>
	</item>
		<item>
		<title>Mac OS X Leopard and MySQL</title>
		<link>http://nicholashubbard.wordpress.com/2007/10/26/mac-os-x-leopard-and-mysql/</link>
		<comments>http://nicholashubbard.wordpress.com/2007/10/26/mac-os-x-leopard-and-mysql/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 01:27:15 +0000</pubDate>
		<dc:creator>Nicholas Hubbard</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://nicholashubbard.wordpress.com/2007/10/26/mac-os-x-leopard-and-mysql/</guid>
		<description><![CDATA[Today I received my copy of OS X Leopard. I have just started using it. I am really enjoying it and have not found any major or minor bugs yet. However I was a little disappointed that MySQL could not have purchased a Developer edition to have it ready to go when it was released. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=12&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I received my copy of OS X Leopard. I have just started using it. I am really enjoying it and have not found any major or minor bugs yet. However I was a little disappointed that MySQL could not have purchased a Developer edition to have it ready to go when it was released. Turns out that the install for 5.0 works just fine. The auto start up item even works without any problems. However it is the preference pane fails to start MySQL. So once you install you can restart Leopard to get MySQL running or you can run the following command:</p>
<p>#  sudo /usr/local/mysql/bin/safe_mysqld</p>
<p>After that you can set the root users password (highly recommended for security). We can only hope that  MySQL can get an updated preference pane released soon.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nicholashubbard.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nicholashubbard.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nicholashubbard.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nicholashubbard.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nicholashubbard.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nicholashubbard.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nicholashubbard.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nicholashubbard.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nicholashubbard.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nicholashubbard.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nicholashubbard.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nicholashubbard.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nicholashubbard.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nicholashubbard.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nicholashubbard.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nicholashubbard.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=12&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nicholashubbard.wordpress.com/2007/10/26/mac-os-x-leopard-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6beb110aeb9149e20424add853714ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nick</media:title>
		</media:content>
	</item>
		<item>
		<title>Busy</title>
		<link>http://nicholashubbard.wordpress.com/2007/08/27/busy/</link>
		<comments>http://nicholashubbard.wordpress.com/2007/08/27/busy/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 01:36:24 +0000</pubDate>
		<dc:creator>Nicholas Hubbard</dc:creator>
				<category><![CDATA[RHEL]]></category>
		<category><![CDATA[rhce]]></category>
		<category><![CDATA[rhel 5]]></category>
		<category><![CDATA[rhel 5 rhce]]></category>

		<guid isPermaLink="false">http://nicholashubbard.wordpress.com/2007/08/27/busy/</guid>
		<description><![CDATA[Sorry I have not made any updates recently. Things have been really busy with trips to Wyoming, and San Antonio. In good news last week I spent a week in RHCE 5 Training and today was my exam. I passed. 100% on RHCT 82.1% on RHCE I am now RHCE 805007693328098. More coming soon I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=6&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sorry I have not made any updates recently. Things have been really busy with trips to Wyoming, and San Antonio.</p>
<p>In good news last week I spent a week in RHCE 5 Training and today was my exam. I passed.</p>
<p>100% on RHCT<br />
82.1% on RHCE</p>
<p>I am now RHCE <a href="http://www.redhat.com/training/certification/verify/?rhce_cert_display:certno=805007693328098&amp;rhce_cert_display:verify_cb=Verify" target="_blank">805007693328098</a>.</p>
<p>More coming soon I hope.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nicholashubbard.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nicholashubbard.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nicholashubbard.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nicholashubbard.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nicholashubbard.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nicholashubbard.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nicholashubbard.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nicholashubbard.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nicholashubbard.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nicholashubbard.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nicholashubbard.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nicholashubbard.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nicholashubbard.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nicholashubbard.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nicholashubbard.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nicholashubbard.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=6&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nicholashubbard.wordpress.com/2007/08/27/busy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6beb110aeb9149e20424add853714ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nick</media:title>
		</media:content>
	</item>
		<item>
		<title>Welcome</title>
		<link>http://nicholashubbard.wordpress.com/2007/08/08/welcome/</link>
		<comments>http://nicholashubbard.wordpress.com/2007/08/08/welcome/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 19:02:46 +0000</pubDate>
		<dc:creator>Nicholas Hubbard</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://nicholashubbard.wordpress.com/2007/08/08/welcome/</guid>
		<description><![CDATA[I recently upgraded to the SVN version of WordPress and so all previous post are gone. I will be starting fresh and I am currently using WordPress 2.3 (Revision 5857) which includes tags. The Wiki is offline for now, and is not scheduled to come back online due to spam issues. I may change that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=5&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently upgraded to the SVN version of WordPress and so all previous post are gone. I will be starting fresh and I am currently using WordPress 2.3 (Revision 5857) which includes tags.</p>
<p>The Wiki is offline for now, and is not scheduled to come back online due to spam issues. I may change that decision at a latter date.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nicholashubbard.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nicholashubbard.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nicholashubbard.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nicholashubbard.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nicholashubbard.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nicholashubbard.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nicholashubbard.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nicholashubbard.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nicholashubbard.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nicholashubbard.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nicholashubbard.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nicholashubbard.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nicholashubbard.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nicholashubbard.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nicholashubbard.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nicholashubbard.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nicholashubbard.wordpress.com&amp;blog=2135625&amp;post=5&amp;subd=nicholashubbard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nicholashubbard.wordpress.com/2007/08/08/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6beb110aeb9149e20424add853714ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nick</media:title>
		</media:content>
	</item>
	</channel>
</rss>
