<?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>Fighting Rabbits &#187; Software.</title>
	<atom:link href="http://fightingrabbits.com/archives/tag/software/feed" rel="self" type="application/rss+xml" />
	<link>http://fightingrabbits.com</link>
	<description>and herding cats...</description>
	<lastBuildDate>Wed, 23 Jun 2010 12:28:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Django on Snow Leopard</title>
		<link>http://fightingrabbits.com/archives/266</link>
		<comments>http://fightingrabbits.com/archives/266#comments</comments>
		<pubDate>Sun, 04 Oct 2009 10:24:15 +0000</pubDate>
		<dc:creator>Richard Cooper</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[easy_install]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[Software.]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://fightingrabbits.com/?p=266</guid>
		<description><![CDATA[Having just been given an new MacBook Pro as an early birthday present, it didn&#8217;t take me long to try and install Django on it. Rather than use the MacPorts solution I decided to use the native python 2.6 and build the rest, apart from MySQL (use the Mac OS X 10.5 (x86_64) package from [...]]]></description>
			<content:encoded><![CDATA[<p>Having just been given an new MacBook Pro as an early birthday present, it didn&#8217;t take me long to try and install Django on it. Rather than use the MacPorts solution I decided to use the native python 2.6 and build the rest, apart from MySQL (use the Mac OS X 10.5 (x86_64) package from <a href="http://dev.mysql.com/downloads/mysql/5.1.html#downloads">here</a>)</p>
<p>Before proceeding make sure that you have installed XCode (It&#8217;s on the Snow Leopard install disc) as we need it to install libjpeg and PIL (all of my Django projects use this!)</p>
<p>Download <a href="http://freshmeat.net/urls/6228c609a20bb6f87b2fef4fd4b6a30c">libjpeg</a> then:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xzf</span> jpegsrc-1.v7.tar
<span style="color: #7a0874; font-weight: bold;">cd</span> jpegsrc-1.v7
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">which</span> glibtool<span style="color: #000000; font-weight: bold;">`</span> .<span style="color: #000000; font-weight: bold;">/</span>libtool
<span style="color: #000000; font-weight: bold;">set</span> <span style="color: #c20cb9; font-weight: bold;">env</span> MACOSX_DEPLOYMENT_TARGET <span style="color: #000000;">10.6</span>
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--enable-shared</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p>Now we can download the <a href="http://effbot.org/media/downloads/Imaging-1.1.6.tar.gz">source</a> and build PIL</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xzf</span> Imaging-1.1.6.tar.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> Imaging-1.1.6
<span style="color: #c20cb9; font-weight: bold;">sudo</span> python setup.py <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p>Last thing to do before we install Django is to install the MySqlDb connector &#8211; you will need to do add the following to your .bash_profile</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">PATH</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">${PATH}</span>:/usr/local/mysql/bin&quot;</span></pre></div></div>

<p>Then:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> easy_install mysql-python</pre></div></div>

<p>Now we can easy_install Django:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> easy_install django</pre></div></div>

<p>and we are all set to go :)</p>
<p>Thanks to these guys for the help in figuring this out:<br />
<a href="http://dryan.com/articles/snow-leopard-64bit-mamp/">http://dryan.com/</a><br />
<a href="http://www.brambraakman.com/blog/comments/installing_mysql_python_mysqldb_on_snow_leopard_mac_os_x_106/">http://www.brambraakman.com/blog/</a><br />
<a href="http://colbypalmer.com/index.php?/colbyworld/blogEntry/install_libjpeg_and_pil_on_os_x_leopard/">http://colbypalmer.com/</a><br />
<a href="http://www.agapow.net/programming/python/installing-mysqldb">http://www.agapow.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fightingrabbits.com/archives/266/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Better Fonts in Safari for Windows</title>
		<link>http://fightingrabbits.com/archives/221</link>
		<comments>http://fightingrabbits.com/archives/221#comments</comments>
		<pubDate>Tue, 15 Sep 2009 19:21:12 +0000</pubDate>
		<dc:creator>Richard Cooper</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[Software.]]></category>
		<category><![CDATA[typekit]]></category>

		<guid isPermaLink="false">http://fightingrabbits.com/?p=221</guid>
		<description><![CDATA[I have been experimenting with the fonts available from typekit for web design, and was really disapointed with their rendering on Windows. After a bit of digging in the settings of my Typekit browser of choice (Currently Safari 4 as my day-to-day browser Chrome 4 is not supported by the Typekit admin yet!) I found the [...]]]></description>
			<content:encoded><![CDATA[<p>I have been experimenting with the fonts available from typekit for web design, and was really disapointed with their rendering on Windows.</p>
<div id="attachment_220" class="wp-caption aligncenter" style="width: 310px"><a href="http://fightingrabbits.com/wp-content/uploads/2009/09/Standard-Smoothing.PNG"><img class="size-medium wp-image-220" title="Safari Font Rendering" src="http://fightingrabbits.com/wp-content/uploads/2009/09/Standard-Smoothing-300x50.PNG" alt="Safari Font Rendering" width="300" height="50" /></a><p class="wp-caption-text">Safari Font Rendering</p></div>
<div id="attachment_216" class="wp-caption aligncenter" style="width: 310px"><a href="http://fightingrabbits.com/wp-content/uploads/2009/09/Firefox-Smoothing.PNG"><img class="size-medium wp-image-216" title="Firefox Font Rendering" src="http://fightingrabbits.com/wp-content/uploads/2009/09/Firefox-Smoothing-300x52.PNG" alt="Firefox Font Rendering" width="300" height="52" /></a><p class="wp-caption-text">Firefox Font Rendering</p></div>
<p><span id="more-221"></span></p>
<p>After a bit of digging in the settings of my Typekit browser of choice (Currently Safari 4 as my day-to-day browser Chrome 4 is not supported by the Typekit admin yet!) I found the following font settings within Safari.</p>
<div id="attachment_219" class="wp-caption aligncenter" style="width: 310px"><a href="http://fightingrabbits.com/wp-content/uploads/2009/09/Safari-Font-Settings.PNG"><img class="size-medium wp-image-219" title="Safari Font Settings" src="http://fightingrabbits.com/wp-content/uploads/2009/09/Safari-Font-Settings-300x195.PNG" alt="Safari Font Settings" width="300" height="195" /></a><p class="wp-caption-text">Safari Font Settings</p></div>
<p>There are 5 possible settings for font smoothing, and I recommend you try them all for yourself as the results depend on your screen (and eyes!)</p>
<div id="attachment_220" class="wp-caption aligncenter" style="width: 310px"><a href="http://fightingrabbits.com/wp-content/uploads/2009/09/Standard-Smoothing.PNG"><img class="size-medium wp-image-220" title="Standard Smoothing" src="http://fightingrabbits.com/wp-content/uploads/2009/09/Standard-Smoothing-300x50.PNG" alt="Standard Smoothing" width="300" height="50" /></a><p class="wp-caption-text">Standard Smoothing</p></div>
<div id="attachment_217" class="wp-caption aligncenter" style="width: 310px"><a href="http://fightingrabbits.com/wp-content/uploads/2009/09/Light-Smoothing.PNG"><img class="size-medium wp-image-217" title="Light Smoothing" src="http://fightingrabbits.com/wp-content/uploads/2009/09/Light-Smoothing-300x49.PNG" alt="Light Smoothing" width="300" height="49" /></a><p class="wp-caption-text">Light Smoothing</p></div>
<div id="attachment_218" class="wp-caption aligncenter" style="width: 310px"><a href="http://fightingrabbits.com/wp-content/uploads/2009/09/Medium-Smoothing.PNG"><img class="size-medium wp-image-218" title="Medium Smoothing" src="http://fightingrabbits.com/wp-content/uploads/2009/09/Medium-Smoothing-300x46.PNG" alt="Medium Smoothing" width="300" height="46" /></a><p class="wp-caption-text">Medium Smoothing</p></div>
<p>That&#8217;s Better!&#8230;</p>
<p>Now why can&#8217;t Chrome and Firefox implement something like this?</p>
]]></content:encoded>
			<wfw:commentRss>http://fightingrabbits.com/archives/221/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why free software is worth what you pay for it&#8230;</title>
		<link>http://fightingrabbits.com/archives/38</link>
		<comments>http://fightingrabbits.com/archives/38#comments</comments>
		<pubDate>Mon, 13 Apr 2009 11:09:02 +0000</pubDate>
		<dc:creator>Richard Cooper</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[Software.]]></category>

		<guid isPermaLink="false">http://fightingrabbits.com/?p=38</guid>
		<description><![CDATA[We have recently swapped from running our virtual machines in VMWare  to Sun&#8217;s Virtual Box. The performance of virtual box is equal if not better than VMWare, and we will save quite a bit of money on licenses, as all our users would require the workstation version of VMWare. All was well with this plan [...]]]></description>
			<content:encoded><![CDATA[<p>We have recently swapped from running our virtual machines in VMWare  to Sun&#8217;s Virtual Box. The performance of virtual box is equal if not better than VMWare, and we will save quite a bit of money on licenses, as all our users would require the workstation version of VMWare. All was well with this plan until we needed to shrink some of the machines after restoring large DB backups onto them. The command to do this is given as <em>&#8220;VBoxManage modifyhd MyMachine.vdi compact&#8221;</em> unfortunatly the output from this is currently:- <em> &#8221;Error: Shrink hard disk operation is not available!&#8221;  <span style="font-style: normal;">You can see the help ticket for this at <a href="http://www.virtualbox.org/ticket/2833">http://www.virtualbox.org/ticket/2833</a> and it makes pretty horrific reading if you are a fan of open source and expect decent customer support. </span></em></p>
<p>This brings me onto the rant section of this blog. If this was paid for software I could influence the decision &#8211; I could take my cash elsewhere, I could ask to have it fixed as part of my support contract, or several other routes to resolution. As this is &#8220;Free&#8221; software I am reduced to arguing with someone in a defect log item as to whether my issue (and several other peoples as well judging by the defect log) is going to get fixed.</p>
<p>And with comments like <strong><em>&#8220;You are in no position to tell us what to do or not. No amount of complaints from your side will change the priority of this issue.&#8221; </em></strong>it&#8217;s nice to know we are valued customers&#8230;</p>
<p>At the end of it all however we are still going to use VirtualBox, and I am just going to have to hope that Sun will ask their support staff to be a little friendlier.</p>
]]></content:encoded>
			<wfw:commentRss>http://fightingrabbits.com/archives/38/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PuTTY in my Hands.</title>
		<link>http://fightingrabbits.com/archives/36</link>
		<comments>http://fightingrabbits.com/archives/36#comments</comments>
		<pubDate>Wed, 04 Feb 2009 20:41:01 +0000</pubDate>
		<dc:creator>Richard Cooper</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software.]]></category>

		<guid isPermaLink="false">http://fightingrabbits.com/?p=36</guid>
		<description><![CDATA[Just when I am ready to dump my Nokia N95 along comes a killer app that I can&#8217;t live without and suddenly makes the Nokia indispensable (at least until I get an iPhone) &#8211; PuTTY for Symbian S60! You can get it here if you want it. Hint &#8211; if you don&#8217;t know what PuTTY [...]]]></description>
			<content:encoded><![CDATA[<p>Just when I am ready to dump my Nokia N95 along comes a killer app that I can&#8217;t live without and suddenly makes the Nokia indispensable (at least until I get an iPhone) &#8211; PuTTY for Symbian S60! You can get it <a href="http://s2putty.sourceforge.net/">here</a> if you want it. Hint &#8211; if you don&#8217;t know what PuTTY is then you don&#8217;t need it :)</p>
]]></content:encoded>
			<wfw:commentRss>http://fightingrabbits.com/archives/36/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
