<?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>Goonanism</title>
	<atom:link href="http://goonanism.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://goonanism.com/blog</link>
	<description>Between the spelling mistakes and typos on this web page, you'll find Goonanism. Not unrelated to the phrase "go onanism", Goonanism is my take on what ever I like it to be a take on - including Chuck Norris and Competitive Eating.</description>
	<lastBuildDate>Sat, 13 Mar 2010 01:32:38 +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>links for 2010-03-12</title>
		<link>http://goonanism.com/blog/2010/03/13/links-for-2010-03-12/</link>
		<comments>http://goonanism.com/blog/2010/03/13/links-for-2010-03-12/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 01:32:38 +0000</pubDate>
		<dc:creator>Hammy</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://goonanism.com/blog/2010/03/13/links-for-2010-03-12/</guid>
		<description><![CDATA[

Speech at Italian Parliament: Internet is Freedom
(tags: Lessig Intellectual Property Internet culture)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://blip.tv/file/3332375">Speech at Italian Parliament: Internet is Freedom</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/hammyg/Lessig">Lessig</a> <a href="http://delicious.com/hammyg/Intellectual">Intellectual</a> <a href="http://delicious.com/hammyg/Property">Property</a> <a href="http://delicious.com/hammyg/Internet">Internet</a> <a href="http://delicious.com/hammyg/culture">culture</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://goonanism.com/blog/2010/03/13/links-for-2010-03-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LAMP installation on Ubuntu with Mod_Rewrite</title>
		<link>http://goonanism.com/blog/2010/02/10/lamp-installation-on-ubuntu-with-mod_rewrite/</link>
		<comments>http://goonanism.com/blog/2010/02/10/lamp-installation-on-ubuntu-with-mod_rewrite/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 07:04:11 +0000</pubDate>
		<dc:creator>Hammy</dc:creator>
				<category><![CDATA[ICT]]></category>

		<guid isPermaLink="false">http://goonanism.com/blog/?p=1017</guid>
		<description><![CDATA[So there is plenty of information out there about installing a standard LAMP server out there.
I&#8217;ve had a LAMP server on my Ubuntu laptop for quite some time. But i ran into troubles when I wanted to have a CakePHP installation on my local machine because I couldn&#8217;t get Apache&#8217;s mod_rewrite to work.
I&#8217;ve finally figured [...]]]></description>
			<content:encoded><![CDATA[<p>So there is plenty of information out there about installing a standard LAMP server out there.</p>
<p>I&#8217;ve had a LAMP server on my Ubuntu laptop for quite some time. But i ran into troubles when I wanted to have a CakePHP installation on my local machine because I couldn&#8217;t get Apache&#8217;s mod_rewrite to work.</p>
<p>I&#8217;ve finally figured it out, and, given the difficulty I had finding the information I thought I should probably share my experience with the world.</p>
<p>So, firstly, installing LAMP. In case you&#8217;d missed it, LAMP stands for Linux, Apache, MySQL, PHP.</p>
<p>You&#8217;ve already got the Linux part, so I just went through the Synaptic Package Manager and installed the following repositories (you can find a much more detailed description <a href="https://help.ubuntu.com/community/ApacheMySQLPHP">here</a> and <a href="http://www.mysql-apache-php.com/">here</a>):</p>
<ul>
<li>apache2</li>
<li>php5</li>
<li>mysql-server</li>
<li>php5-mysql (may be installed by default with the mysql-server package &#8211; sorry, can&#8217;t remember)</li>
<li>phpmyadmin</li>
<li>webmin (a very helpful program</li>
</ul>
<p>Read what others have written on this topic as well though.</p>
<p>Next, in order to give yourself permissions to the /var/www/ directory, you need to run the following command in your terminal:<br />
<code>sudo chown -R $USER:$USER /var/www/</code></p>
<p>It&#8217;s not a secure thing to do (I don&#8217;t think) but it will make your life much easier (no permissions to worry about, no need to &#8220;sudo nautilus&#8221;).</p>
<p>Finally, getting mod_rewrite to work.</p>
<p>First, initiate it with the following command:<br />
<code>a2enmod rewrite</code></p>
<p>Then edit the file /etc/apache2/sites-enabled/000-default. You can do this with the following command:<br />
<code>nano /etc/apache2/sites-enabled/000-default</code></p>
<p>Then change the &#8220;AllowOverride None&#8221; to &#8220;AllowOverride All&#8221; in the &#8220;<directory /var/www/>&#8221; section.</p>
<p>In other words, when you run the nano command above you see the following in amongst some other stuff:<br />
<code><directory /var/www/><br />
                Options Indexes FollowSymLinks MultiViews<br />
                AllowOverride none<br />
                Order allow,deny<br />
                allow from all</p>
<p></code></p>
<p>Change the AllowOverride to &#8216;All&#8217;.</p>
<p>Then restart your server with the following command:<br />
<code>sudo /etc/init.d/apache2 restart</code></p>
<p>And you&#8217;re done!</p>
<p><strong>Disclaimer:</strong> I&#8217;m a terrible systems admin and make no guarantee for the above. However, it did work for me which makes me happy.</p>
]]></content:encoded>
			<wfw:commentRss>http://goonanism.com/blog/2010/02/10/lamp-installation-on-ubuntu-with-mod_rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I choose Linux (part 382)</title>
		<link>http://goonanism.com/blog/2010/02/09/why-i-choose-linux-part-382/</link>
		<comments>http://goonanism.com/blog/2010/02/09/why-i-choose-linux-part-382/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 22:40:54 +0000</pubDate>
		<dc:creator>Hammy</dc:creator>
				<category><![CDATA[ICT]]></category>

		<guid isPermaLink="false">http://goonanism.com/blog/?p=1015</guid>
		<description><![CDATA[My laptop is now reaching old age. It&#8217;s over 3 years old and it&#8217;s starting to get a bit clunky. Time for a new one this year sometime.
I want a 13&#8243; laptop as portability is an issue. So I started to look at the usual laptop vendors, Toshiba (which I currently have) and HP* were [...]]]></description>
			<content:encoded><![CDATA[<p>My laptop is now reaching old age. It&#8217;s over 3 years old and it&#8217;s starting to get a bit clunky. Time for a new one this year sometime.</p>
<p>I want a 13&#8243; laptop as portability is an issue. So I started to look at the usual laptop vendors, Toshiba (which I currently have) and HP* were the two I checked out. As well as Mac.</p>
<p>You can get some reasonable 15&#8243; laptops for around $1,200 which would suit my needs&#8230; if they were 13&#8243;. But as soon as you go with the smaller model it adds at least $1,000 to the price (often $2,000) and the processor significantly deteriorates in speed (almost halves in some cases).</p>
<p>Which leaves me with the MacBook. 13&#8243; at around $1,200 with an Education discount.</p>
<p>There&#8217;s no denying the quality of the Mac hardware. The screens are nicer, they have the multi-touch touch pad, they are thin etc. But I just don&#8217;t was to run the MacOS. I prefer Linux.</p>
<p>There are a range of reasons but the primary one is that Mac locks you into Mac stuff, Linux just doesn&#8217;t. I hate iTunes and I hate iPhoto. If you want to take full advantage of the MacOS then you need to use these two programs and once you&#8217;ve done that you&#8217;re locked into them. You can&#8217;t reclaim your music (without significant hassle) once it&#8217;s in the iTunes library. Anything else just feels like a perpetual workaround.</p>
<p>I&#8217;ve got a huge personal commitment to Open Source Software and data longevity is a big reason for this.</p>
<p>So i&#8217;m going to buy a MacBook in the next 12 months, and I&#8217;m going to install Linux on it so that all my data is free forever, not locked into am over-hyped OS that could well go out of fashion one day and leave you with a bunch of music you&#8217;ll never be able to listen to again.</p>
<p>(Cue Mac Fanboys who are the second biggest reason I hate Macs. Actually, I don&#8217;t hate Macs (I use one at work) I just prefer Linux.)</p>
<p>*If you know of a laptop brand that matches a 13&#8243; MacBook please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://goonanism.com/blog/2010/02/09/why-i-choose-linux-part-382/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Sommelier.net.au Update</title>
		<link>http://goonanism.com/blog/2010/02/08/sommelier-net-au-update/</link>
		<comments>http://goonanism.com/blog/2010/02/08/sommelier-net-au-update/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 11:15:03 +0000</pubDate>
		<dc:creator>Hammy</dc:creator>
				<category><![CDATA[Sommelier.net.au]]></category>

		<guid isPermaLink="false">http://goonanism.com/blog/?p=1012</guid>
		<description><![CDATA[Just a quick note to let you know that I&#8217;ve just launched the first of my updates for Sommelier.net.au.
You can now give a bottle an overall rating, the cellar displays regions and you can now order your cellar by both regions and varieties.
There have also been a range of backend changes which should make the [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to let you know that I&#8217;ve just launched the first of my updates for <a href="http://sommelier.net.au">Sommelier.net.au</a>.</p>
<p>You can now give a bottle an overall rating, the cellar displays regions and you can now order your cellar by both regions and varieties.</p>
<p>There have also been a range of backend changes which should make the site run a little smoother.</p>
<p>Finally, I&#8217;ve started recording barcodes. While I&#8217;m using it for anything, it is useful as a unique identifier of a wine and will mean additional features in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://goonanism.com/blog/2010/02/08/sommelier-net-au-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sommelier.net.au</title>
		<link>http://goonanism.com/blog/2010/01/28/sommelier-net-au/</link>
		<comments>http://goonanism.com/blog/2010/01/28/sommelier-net-au/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 11:27:21 +0000</pubDate>
		<dc:creator>Hammy</dc:creator>
				<category><![CDATA[Me]]></category>
		<category><![CDATA[Sommelier.net.au]]></category>

		<guid isPermaLink="false">http://goonanism.com/blog/?p=1010</guid>
		<description><![CDATA[I&#8217;ve launched a new website which I&#8217;m pretty excited about.
In case you hadn&#8217;t guessed, you can find it at: http://sommelier.net.au.
It&#8217;s is a free website that allows you to keep track of your wine cellar, add tasting notes and watch bottles as they age.
It is designed to accomodate all wine lovers without the wank that is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve launched a new website which I&#8217;m pretty excited about.</p>
<p>In case you hadn&#8217;t guessed, you can find it at: <a href="http://sommelier.net.au">http://sommelier.net.au</a>.</p>
<p>It&#8217;s is a free website that allows you to keep track of your wine cellar, add tasting notes and watch bottles as they age.</p>
<p>It is designed to accomodate all wine lovers without the wank that is too often associated with wine.</p>
<p>I hope you like it &#8211; get in there and use it!</p>
]]></content:encoded>
			<wfw:commentRss>http://goonanism.com/blog/2010/01/28/sommelier-net-au/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why my site is blacked out</title>
		<link>http://goonanism.com/blog/2010/01/25/why-my-site-is-blacked-out/</link>
		<comments>http://goonanism.com/blog/2010/01/25/why-my-site-is-blacked-out/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 22:27:22 +0000</pubDate>
		<dc:creator>Hammy</dc:creator>
				<category><![CDATA[ICT]]></category>

		<guid isPermaLink="false">http://goonanism.com/blog/?p=1008</guid>
		<description><![CDATA[As you may have noticed, the first time you visit my site this week you will get a blanked out page with a message about the proposed internet filter.
It&#8217;s just a little protest and hopefully an awareness raising campaign. It&#8217;s run by the Electronic Frontiers Foundation who I recommend throwing a few dollars to.
We&#8217;ll resume [...]]]></description>
			<content:encoded><![CDATA[<p>As you may have noticed, the first time you visit my site this week you will get a blanked out page with a message about the proposed internet filter.</p>
<p>It&#8217;s just a little protest and hopefully an awareness raising campaign. It&#8217;s run by the <a href="http://www.efa.org.au/">Electronic Frontiers Foundation</a> who I recommend throwing a few dollars to.</p>
<p>We&#8217;ll resume normal service next week.</p>
]]></content:encoded>
			<wfw:commentRss>http://goonanism.com/blog/2010/01/25/why-my-site-is-blacked-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I thought this was worth sharing</title>
		<link>http://goonanism.com/blog/2010/01/21/i-thought-this-was-worth-sharing/</link>
		<comments>http://goonanism.com/blog/2010/01/21/i-thought-this-was-worth-sharing/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 04:21:00 +0000</pubDate>
		<dc:creator>Hammy</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://goonanism.com/blog/?p=1006</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/pOuumGX-6uc&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/pOuumGX-6uc&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://goonanism.com/blog/2010/01/21/i-thought-this-was-worth-sharing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2010-01-19</title>
		<link>http://goonanism.com/blog/2010/01/20/links-for-2010-01-19/</link>
		<comments>http://goonanism.com/blog/2010/01/20/links-for-2010-01-19/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 01:05:15 +0000</pubDate>
		<dc:creator>Hammy</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://goonanism.com/blog/2010/01/20/links-for-2010-01-19/</guid>
		<description><![CDATA[

Color Scheme Designer 3
(tags: colors webdesign)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://colorschemedesigner.com/">Color Scheme Designer 3</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/hammyg/colors">colors</a> <a href="http://delicious.com/hammyg/webdesign">webdesign</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://goonanism.com/blog/2010/01/20/links-for-2010-01-19/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2010-01-13</title>
		<link>http://goonanism.com/blog/2010/01/14/links-for-2010-01-13/</link>
		<comments>http://goonanism.com/blog/2010/01/14/links-for-2010-01-13/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 01:06:34 +0000</pubDate>
		<dc:creator>Hammy</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://goonanism.com/blog/2010/01/14/links-for-2010-01-13/</guid>
		<description><![CDATA[

Lorem Ipsum &#8211; All the facts &#8211; Lipsum generator
(tags: webdesign lorem latin)


960 Grid System
(tags: webdesign css)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://lipsum.com/">Lorem Ipsum &#8211; All the facts &#8211; Lipsum generator</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/hammyg/webdesign">webdesign</a> <a href="http://delicious.com/hammyg/lorem">lorem</a> <a href="http://delicious.com/hammyg/latin">latin</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://960.gs/">960 Grid System</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/hammyg/webdesign">webdesign</a> <a href="http://delicious.com/hammyg/css">css</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://goonanism.com/blog/2010/01/14/links-for-2010-01-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2010-01-12</title>
		<link>http://goonanism.com/blog/2010/01/13/links-for-2010-01-12/</link>
		<comments>http://goonanism.com/blog/2010/01/13/links-for-2010-01-12/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 01:13:15 +0000</pubDate>
		<dc:creator>Hammy</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://goonanism.com/blog/2010/01/13/links-for-2010-01-12/</guid>
		<description><![CDATA[

COLOURlovers :: Color Trends + Palettes
(tags: webdesign color css)


Cake PHP useful tips: 21 Things You Must Know About CakePHP
(tags: cakephp programming mvc)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.colourlovers.com/">COLOURlovers :: Color Trends + Palettes</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/hammyg/webdesign">webdesign</a> <a href="http://delicious.com/hammyg/color">color</a> <a href="http://delicious.com/hammyg/css">css</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://cake-php.blogspot.com/2006/09/21-things-you-must-know-about-cakephp.html">Cake PHP useful tips: 21 Things You Must Know About CakePHP</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/hammyg/cakephp">cakephp</a> <a href="http://delicious.com/hammyg/programming">programming</a> <a href="http://delicious.com/hammyg/mvc">mvc</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://goonanism.com/blog/2010/01/13/links-for-2010-01-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
