<?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>NiGhTHawK</title>
	<atom:link href="http://nighthawk.co.za/feed/" rel="self" type="application/rss+xml" />
	<link>http://nighthawk.co.za</link>
	<description>A guy, a blog and the internet</description>
	<lastBuildDate>Tue, 02 Mar 2010 14:38:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=3.0-alpha</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Taking a break&#8230;</title>
		<link>http://nighthawk.co.za/2010/02/taking-a-break/</link>
		<comments>http://nighthawk.co.za/2010/02/taking-a-break/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 05:05:34 +0000</pubDate>
		<dc:creator>Clifford W. Hansen</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://nighthawk.co.za/?p=419</guid>
		<description><![CDATA[Isn&#8217;t it funny how much we rely on the interet. I have my email, twitter and facebook setup on my phone and all the pc&#8217;s I use, just in case I miss something. It has started taking up a lot of time, I have hardly had any time for myself.
So, I&#8217;ve decided that for the [...]]]></description>
			<content:encoded><![CDATA[<p>Isn&#8217;t it funny how much we rely on the interet. I have my email, twitter and facebook setup on my phone and all the pc&#8217;s I use, just in case I miss something. It has started taking up a lot of time, I have hardly had any time for myself.</p>
<p>So, I&#8217;ve decided that for the next couple of weeks I&#8217;m going to disconnect myself from that world, unfortunatly I can&#8217;t disconnect completely from the internet due to my work. But I can close down chat clients, and the like.</p>
<p>Here&#8217;s to the next couple of weeks, hopefully something good comes from it, catch y&#8217;all on the other side. And I will try and blog more, havn&#8217;t really had a chance to learn anything new recently, hence this decision <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Love you all, C</p>
<p>PS. If you need to get hold of me, pop me a mail or sms, or leave a comment below (they are moderated so if you don&#8217;t want it to show up just say so <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>UPDATE &#8211; 2 Mar</strong> So it took a week and I&#8217;m back, but I&#8217;ve removed a few people from follow lists, unfortunately these things need to be done <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://nighthawk.co.za/2010/02/taking-a-break/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Remote syncing files using git</title>
		<link>http://nighthawk.co.za/2010/01/remote-syncing-files-using-git/</link>
		<comments>http://nighthawk.co.za/2010/01/remote-syncing-files-using-git/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 05:41:07 +0000</pubDate>
		<dc:creator>Clifford W. Hansen</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://nighthawk.co.za/?p=416</guid>
		<description><![CDATA[I&#8217;ve been wanting to write a post about this for a while, and a friend of mine asked about it a couple of weeks ago, and here it is&#8230;
First you need to create a remote Git repository, either on your own server or Codaset, GitHub
You will need to create a local repository:
mkdir directory_to_sync
cd directory_to_sync
git init
touch [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been wanting to write a post about this for a while, and a friend of mine asked about it a couple of weeks ago, and here it is&#8230;</p>
<p>First you need to create a remote Git repository, either on your own server or <a href="http://codaset.com">Codaset</a>, <a href="http://github.com">GitHub</a></p>
<p>You will need to create a local repository:</p>
<pre>mkdir directory_to_sync
cd directory_to_sync
git init
touch .gitignore
git add .gitignore
git commit</pre>
<p>To create a remote Git repository do the following on your server:</p>
<pre>mkdir repository.git
cd repository.git
git init --bare</pre>
<p>Once you have created the remote repository you will need to link it to your local copy:</p>
<pre>git remote add origin ssh://server_address/path_to_repository
git push origin master
git pull origin master</pre>
<p>To make life easier I always edit the Git config file and add the following:</p>
<pre>vi .git/config
[push]
        default = current
[branch "master"]
        remote = origin
        merge = master</pre>
<p>The only problem with this approach is that you need to store the files in a seperate directory, but we ca get around this &#8220;limitation&#8221; by using symlinks for example to store the .bash* files in Git:</p>
<pre>ln -s directory_to_sync/.bashrc ./</pre>
<p>Well I hope this helps someone out there <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The post is brought to you by <a href="http://fedorahosted.org/lekhonee">lekhonee</a> v0.7</p>
]]></content:encoded>
			<wfw:commentRss>http://nighthawk.co.za/2010/01/remote-syncing-files-using-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving&#8230; again&#8230;</title>
		<link>http://nighthawk.co.za/2010/01/moving-again/</link>
		<comments>http://nighthawk.co.za/2010/01/moving-again/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 07:05:55 +0000</pubDate>
		<dc:creator>Clifford W. Hansen</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://nighthawk.co.za/?p=414</guid>
		<description><![CDATA[Well, I can&#8217;t believe how time has flown, Cecilia and I split up end of October last year, and we were still staying together till the end of the lease. I found a new place end of November, and now finally get to move in  
So now instead of driving 100Km a day (from [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I can&#8217;t believe how time has flown, Cecilia and I split up end of October last year, and we were still staying together till the end of the lease. I found a new place end of November, and now finally get to move in <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So now instead of driving 100Km a day (from Durbanville to Tokai), I am now gonna be driving 10Km a day <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  &lt;&#8211; AWESOME!!!</p>
<p>And now I&#8217;m closer to the beach, it&#8217;s like a 10min drive, on a busy day <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  so will be spending alot more time there, and when Catelyn comes to visit she will also, she loves &#8220;THE BEACH&#8221; as she puts it&#8230; hehe&#8230;</p>
<p>So as one part of my life finally comes to a close, another starts up&#8230;</p>
<p>Now finally I&#8217;ll have more time to spend on the stuff I love, and hopefully I will be able to start contributing to the Debian comunity.</p>
<p>New things to learn, new people to meet, new experiences to experience&#8230; #ROCKON #AWESOME</p>
]]></content:encoded>
			<wfw:commentRss>http://nighthawk.co.za/2010/01/moving-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenMoko Neo Freerunner mobile phone</title>
		<link>http://nighthawk.co.za/2010/01/openmoko-neo-freerunner-mobile-phone/</link>
		<comments>http://nighthawk.co.za/2010/01/openmoko-neo-freerunner-mobile-phone/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 10:42:55 +0000</pubDate>
		<dc:creator>Clifford W. Hansen</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://nighthawk.co.za/?p=411</guid>
		<description><![CDATA[So the OpenMoko Neo Freerunner mobile phone has been available in SA for a while now, and I can&#8217;t wait to get my hands on one, due to various situations this wasn&#8217;t likely to happen soon.
Then I stumbled apon a competition at WebAddict, so now I have a chance to win one, not only will [...]]]></description>
			<content:encoded><![CDATA[<p>So the OpenMoko Neo Freerunner mobile phone has been available in SA for a while now, and I can&#8217;t wait to get my hands on one, due to various situations this wasn&#8217;t likely to happen soon.</p>
<p>Then I stumbled apon a competition at <a href="http://www.webaddict.co.za/2010/01/04/win-a-google-android-phone-here/">WebAddict</a>, so now I have a chance to win one, not only will I have an awesome phone that I can install Debian or Google Android on, but I&#8217;ll have a replacement for the 5800 that was stolen a couple of weeks ago&#8230; <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Checkout the competion, it&#8217;s really an awesome phone&#8230; <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://nighthawk.co.za/2010/01/openmoko-neo-freerunner-mobile-phone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Happy New Year</title>
		<link>http://nighthawk.co.za/2010/01/happy-new-year-2/</link>
		<comments>http://nighthawk.co.za/2010/01/happy-new-year-2/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 17:03:30 +0000</pubDate>
		<dc:creator>Clifford W. Hansen</dc:creator>
				<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://nighthawk.co.za/?p=409</guid>
		<description><![CDATA[So, it&#8217;s the begining of a new year, man 2009 went by quick&#8230; I really didn&#8217;t expect (or want) the year to end the way it did, but go figure.
Well I have a feeling that this next year is gonna be a tough one, but I&#8217;m sure I&#8217;ll get through it&#8230;  
Here&#8217;s to the [...]]]></description>
			<content:encoded><![CDATA[<p>So, it&#8217;s the begining of a new year, man 2009 went by quick&#8230; I really didn&#8217;t expect (or want) the year to end the way it did, but go figure.</p>
<p>Well I have a feeling that this next year is gonna be a tough one, but I&#8217;m sure I&#8217;ll get through it&#8230; <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here&#8217;s to the new year and I hope that all of you guys reading this have an awesome year. Hopefully big things happen&#8230; <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://nighthawk.co.za/2010/01/happy-new-year-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Merry Christmas to all</title>
		<link>http://nighthawk.co.za/2009/12/merry-christmas-to-all/</link>
		<comments>http://nighthawk.co.za/2009/12/merry-christmas-to-all/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 10:11:19 +0000</pubDate>
		<dc:creator>Clifford W. Hansen</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://nighthawk.co.za/?p=407</guid>
		<description><![CDATA[Well it;s that time of year again (what happend to the rest of the year).
Merry Christmas to all of you out there, some of you are close and some of you are far.
So special greetings go to my Dad (even though you are far away we are thinking about you and miss you lots)
Well guess [...]]]></description>
			<content:encoded><![CDATA[<p>Well it;s that time of year again (what happend to the rest of the year).</p>
<p>Merry Christmas to all of you out there, some of you are close and some of you are far.</p>
<p>So special greetings go to my Dad (even though you are far away we are thinking about you and miss you lots)</p>
<p>Well guess I should stop being &#8220;rude&#8221; and leave the pc alone for a little bit, hope you all have an awesome day surrounded by people you love and great food.</p>
<p>And so I write some code today <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<pre>&lt;?php
   $holiday = new Holiday('Christmas');
   $holiday-&gt;celebrate();
   $holiday-&gt;eatLotsOfFood();
   $holiday-&gt;beMerry();
</pre>
<p>lolz <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://nighthawk.co.za/2009/12/merry-christmas-to-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweetdeck and 64Bit Linux</title>
		<link>http://nighthawk.co.za/2009/12/tweetdeck-and-64bit-linux/</link>
		<comments>http://nighthawk.co.za/2009/12/tweetdeck-and-64bit-linux/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 07:19:49 +0000</pubDate>
		<dc:creator>Clifford W. Hansen</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://nighthawk.co.za/?p=405</guid>
		<description><![CDATA[So I&#8217;ve been trying to get TweetDeck running on my work PC for a while, and none of the howto&#8217;s I followed were able to help  
Then this morning I stumbled apon this gem and lo and behold it worked (kinda) I just had to set the permisisons on the /opt/Adobe Air/ directory.
AWESOME!!!  [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been trying to get TweetDeck running on my work PC for a while, and none of the howto&#8217;s I followed were able to help <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Then this morning I stumbled apon <a href="http://muammar.me/blog/index.php?url=archives/336-Installing-Adobe-Air-in-Debian-AMD-64-TweetDeck-can-be-used.html&amp;serendipity[csuccess]=true#feedback">this gem</a> and lo and behold it worked (kinda) I just had to set the permisisons on the <strong>/opt/Adobe Air/</strong> directory.</p>
<p>AWESOME!!! <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Anyways, this is mainly so if I ever reinstall (which I tend to do anyways every couple of weeks lolz&#8230; selftorture++)</p>
]]></content:encoded>
			<wfw:commentRss>http://nighthawk.co.za/2009/12/tweetdeck-and-64bit-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Studio and Git</title>
		<link>http://nighthawk.co.za/2009/12/zend-studio-and-git/</link>
		<comments>http://nighthawk.co.za/2009/12/zend-studio-and-git/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 09:25:07 +0000</pubDate>
		<dc:creator>Clifford W. Hansen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nighthawk.co.za/?p=401</guid>
		<description><![CDATA[So for the past couple of weeks I&#8217;ve been using Zend Studio 7.1, and I&#8217;m loving it, just wish I had the cash to buy a licence&#8230; :/
Well as I&#8217;m using GIT for all my source control I was unable to use the team features of ZS, then again I still use the command line [...]]]></description>
			<content:encoded><![CDATA[<p>So for the past couple of weeks I&#8217;ve been using Zend Studio 7.1, and I&#8217;m loving it, just wish I had the cash to buy a licence&#8230; :/</p>
<p>Well as I&#8217;m using GIT for all my source control I was unable to use the team features of ZS, then again I still use the command line for most of my git foo <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Then I stumbled apon <a href="http://www.kncedwards.com/2009/09/13/eclipse-git-plugin/">This gem</a> and now have git and Zend studio working awesomely <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://nighthawk.co.za/2009/12/zend-studio-and-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Syncing google and my toys</title>
		<link>http://nighthawk.co.za/2009/12/syncing-google-and-my-toys/</link>
		<comments>http://nighthawk.co.za/2009/12/syncing-google-and-my-toys/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 08:24:54 +0000</pubDate>
		<dc:creator>Clifford W. Hansen</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://nighthawk.co.za/?p=398</guid>
		<description><![CDATA[So for a while now I have had google syncing my contacts and calendar with my Nokia 5800 XpressMusic phone. Google Symbian Sync
Then earlier today I stumbled apon &#8220;how to sync evolution with googles pim apps&#8221; which allows me to sync my contacts and calendar with Evolution (I&#8217;m using Ubuntu 9.10 on my netbook)
This is [...]]]></description>
			<content:encoded><![CDATA[<p>So for a while now I have had google syncing my contacts and calendar with my Nokia 5800 XpressMusic phone. <a href="http://www.google.com/sync/symbian.html" target="_blank">Google Symbian Sync</a></p>
<p>Then earlier today I stumbled apon <a href="http://www.linux.com/news/software/applications/8226-how-to-sync-evolution-with-googles-pim-apps">&#8220;how to sync evolution with googles pim apps&#8221;</a> which allows me to sync my contacts and calendar with Evolution (I&#8217;m using Ubuntu 9.10 on my netbook)</p>
<p>This is awesome, now if I add a contact to either my phone, gmail or evolution it gets synced across all devices&#8230; #FTW!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://nighthawk.co.za/2009/12/syncing-google-and-my-toys/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New host and toys&#8230; :)</title>
		<link>http://nighthawk.co.za/2009/11/new-host-and-toys/</link>
		<comments>http://nighthawk.co.za/2009/11/new-host-and-toys/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 19:38:01 +0000</pubDate>
		<dc:creator>Clifford W. Hansen</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://nighthawk.co.za/?p=389</guid>
		<description><![CDATA[My 100th entry  
New Toys
Cecilia and myself were looking over the finances the other day, and due to her laptop giving issues, and myself not having a decent machine. At the moment iBurst is running a special where you get a netbook, USB modem and 1Gb bandwidth a month We found it would be [...]]]></description>
			<content:encoded><![CDATA[<p>My 100th entry <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><strong>New Toys</strong><br />
Cecilia and myself were looking over the finances the other day, and due to her laptop giving issues, and myself not having a decent machine. At the moment <a class="zem_slink" href="http://en.wikipedia.org/wiki/IBurst" title="IBurst" rel="wikipedia">iBurst</a> is running a special where you get a netbook, USB modem and 1Gb bandwidth a month We found it would be cheaper to cancel the current Internet connection and get two of these and external hosting.</p>
<p>I am currently writing this post on my netbook. <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The netbook is a Samsung N140.</p>
<ul>
<li>CPU: Intel(R) Atom(TM) CPU N270 @ 1.60GHz (Dual core)</li>
<li>Memory: 1Gb</li>
<li>HDD: 160Gb</li>
<li>Wifi: BGN</li>
<li><a class="zem_slink" href="http://en.wikipedia.org/wiki/Bluetooth" title="Bluetooth" rel="wikipedia">Bluetooth</a> 2.1</li>
<li>Screen 10.1&#8243; 1024&#215;600</li>
</ul>
<p><strong>Hosting</strong><br />
For the past couple of years I have been hosting this blog on my server at home, I got  static IP from iBurst which helped. unfortunatly due to bandwidth usage and cost I have had to move this blog offsite (moved my mail a couple of months ago)</p>
<p>So this blog is now hosted by <a href="http://asmallorange.com">A Small Orange</a>, and thanks goes out to Geoff Garbers for suggesting them <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Well now back to setting up a dev enviroment on the netbook&#8230; <img src='http://nighthawk.co.za/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://nighthawk.co.za/2009/11/new-host-and-toys/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
