<?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>blog.timc3.com &#187; OSX</title>
	<atom:link href="http://blog.timc3.com/category/computing/osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.timc3.com</link>
	<description>providing news and views since 2003</description>
	<lastBuildDate>Tue, 24 Aug 2010 08:12:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<link rel="http://api.friendfeed.com/2008/03#sup" xmlns="http://www.w3.org/2005/Atom" type="application/json" href="http://friendfeed.com/api/public-sup.json#9e509d204d"/>		<item>
		<title>psycopg2 OS X &#8211; _PQbackendPID</title>
		<link>http://blog.timc3.com/2010/08/20/psycopg2-os-x-_pqbackendpid/</link>
		<comments>http://blog.timc3.com/2010/08/20/psycopg2-os-x-_pqbackendpid/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 13:21:26 +0000</pubDate>
		<dc:creator>timc3</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[psycopg2 osx PQbackendPID]]></category>

		<guid isPermaLink="false">http://blog.timc3.com/?p=809</guid>
		<description><![CDATA[If you are having problems with _PQbackendPID, psycopg2 and OS X and have tried the forcing to 32 bit mentioned in other posts about the web then it might be time to try a more forceful approach]]></description>
			<content:encoded><![CDATA[<p>If you are having problems with _PQbackendPID, psycopg2 and OS X and have tried the forcing to 32 bit mentioned in other posts about the web then it might be time to try a more forceful approach. This is an example of the error that you might face:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">dlopen<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Python<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">2.6</span><span style="color: #000000; font-weight: bold;">/</span>site-packages<span style="color: #000000; font-weight: bold;">/</span>psycopg2<span style="color: #000000; font-weight: bold;">/</span>_psycopg.so, <span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>: Symbol not found: _PQbackendPID<br />
&nbsp; Referenced from: <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Python<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">2.6</span><span style="color: #000000; font-weight: bold;">/</span>site-packages<span style="color: #000000; font-weight: bold;">/</span>psycopg2<span style="color: #000000; font-weight: bold;">/</span>_psycopg.so<br />
&nbsp; Expected <span style="color: #000000; font-weight: bold;">in</span>: flat namespace<br />
&nbsp;<span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Python<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">2.6</span><span style="color: #000000; font-weight: bold;">/</span>site-packages<span style="color: #000000; font-weight: bold;">/</span>psycopg2<span style="color: #000000; font-weight: bold;">/</span>_psycopg.so</div></div>
<p>The first thing to do is get rid of your old Psycopg2 (just in case), so locate the site-packages directory:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">python <span style="color: #660033;">-c</span> <span style="color: #ff0000;">&quot;from distutils.sysconfig import get_python_lib; print get_python_lib()&quot;</span></div></div>
<p>Then in that directory:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp;<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> psycopg<span style="color: #000000; font-weight: bold;">*</span></div></div>
<p>Then remove the old version of PostGreSQL as much as possible. Not sure what version you might have installed, but if you have pg_config on your sys path it will tell you where it is. These instructions may or may not work for you:</p>
<ol>
<li>Stop the server. sudo launchctl unload /Library/LaunchDaemons/com.edb.launchd.postgresql-8.4.plist</li>
<li>Remove the plist file<br />
sudo rm -f /Library/LaunchDaemons/com.edb.launchd.postgresql-8.4.plist</li>
<li>Remove the Applications Menu.<br />
sudo rm -f &#8220;/Applications/PostgreSQL 8.4&#8243;</li>
<li>Remove the installation directory<br />
sudo rm -rf /Library/PostgreSQL/8.4<br />
(Note: You can backup your data directory in case you need it.)</li>
<li>Remove the &#8216;postgres&#8217; user<br />
sudo dscl . delete /Users/postgres<br />
(Note: This step is optional)</li>
<li>Remove the ini file<br />
sudo rm -f /etc/postgres-reg.ini</li>
</ol>
<p>I found a reboot worked to make sure that we are back to normal and nothing is installed.</p>
<p>Download <a href="http://initd.org/pub/software/psycopg/PSYCOPG-2-2/psycopg2-2.2.1.tar.gz">psycopg2-2.2.1.tar.gz</a><br />
Download PostGreSQL from http://www.enterprisedb.com/products/download.do  &#8211; the version that isn&#8217;t the &#8220;Standard Server&#8221; but just &#8220;PostgreSQL 8.4 &#8221; &#8211; you do have to register for that.</p>
<p>Install Postgresql &#8211; making sure that it completes, if not it means that you probably had some old files or users in there. If it went ok it should have installed and started running on port 5432. Try removing it /Library/PostgreSQL/8.4/uninstall-postgresql.app &#8211; and then removing the user or files that it complained about.</p>
<p>Download and install http://www.python.org/download/releases/2.6.5/ Mac Installer disk image. Restart (not sure that this restart is totally needed, but I did it anyway).</p>
<p>Now when you are on a new terminal window and type &#8220;python&#8221; it should say version 2.6.5. You will have to reinstall any python bits and pieces that you have installed previously &#8211; but make sure that you reinstall PIP and easy_install &#8211; they will use the old version of Python if you are not careful.</p>
<p>Now go into the directory of psycopg2-2.2.1 that you downloaded earlier.</p>
<p>Change setup.cfg so it looks like the following:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:500px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #7a0874; font-weight: bold;">&#91;</span>build_ext<span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
<span style="color: #007800;">define</span>=PSYCOPG_EXTENSIONS,PSYCOPG_NEW_BOOLEAN,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3<br />
<br />
<span style="color: #666666; font-style: italic;"># PSYCOPG_EXTENSIONS enables extensions to PEP-249 (you really want this)</span><br />
<span style="color: #666666; font-style: italic;"># PSYCOPG_DISPLAY_SIZE enable display size calculation (a little slower)</span><br />
<span style="color: #666666; font-style: italic;"># HAVE_PQFREEMEM should be defined on PostgreSQL &gt;= 7.4</span><br />
<span style="color: #666666; font-style: italic;"># HAVE_PQPROTOCOL3 should be defined on PostgreSQL &gt;= 7.4</span><br />
<span style="color: #666666; font-style: italic;"># PSYCOPG_DEBUG can be added to enable verbose debug information</span><br />
<span style="color: #666666; font-style: italic;"># PSYCOPG_OWN_QUOTING can be added, but it is deprecated (will go away in 2.1)</span><br />
<span style="color: #666666; font-style: italic;"># PSYCOPG_NEW_BOOLEAN to format booleans as true/false vs 't'/'f'</span><br />
<br />
<span style="color: #666666; font-style: italic;"># Set to 1 to use Python datatime objects for default date/time representation.</span><br />
<span style="color: #007800;">use_pydatetime</span>=<span style="color: #000000;">1</span><br />
<br />
<span style="color: #666666; font-style: italic;"># If the build system does not find the mx.DateTime headers, try </span><br />
<span style="color: #666666; font-style: italic;"># uncommenting the following line and setting its value to the right path.</span><br />
<span style="color: #666666; font-style: italic;">#mx_include_dir=</span><br />
<br />
<span style="color: #666666; font-style: italic;"># For Windows only:</span><br />
<span style="color: #666666; font-style: italic;"># Set to 1 if the PostgreSQL library was built with OpenSSL.</span><br />
<span style="color: #666666; font-style: italic;"># Required to link in OpenSSL libraries and dependencies.</span><br />
<span style="color: #007800;">have_ssl</span>=<span style="color: #000000;">0</span><br />
<br />
<span style="color: #666666; font-style: italic;"># Statically link against the postgresql client library.</span><br />
<span style="color: #007800;">static_libpq</span>=<span style="color: #000000;">0</span><br />
<br />
<span style="color: #666666; font-style: italic;"># &quot;pg_config&quot; is the preferred method to locate PostgreSQL headers and</span><br />
<span style="color: #666666; font-style: italic;"># libraries needed to build psycopg2. If pg_config is not in the path or</span><br />
<span style="color: #666666; font-style: italic;"># is installed under a different name uncomment the following option and</span><br />
<span style="color: #666666; font-style: italic;"># set it to the pg_config full path.</span><br />
<span style="color: #007800;">pg_config</span>=<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>PostgreSQL<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">8.4</span><span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>pg_config<br />
<br />
<span style="color: #666666; font-style: italic;"># If &quot;pg_config&quot; is not available, &quot;include_dirs&quot; can be used to locate </span><br />
<span style="color: #666666; font-style: italic;"># postgresql headers and libraries. Some extra checks on sys.platform will</span><br />
<span style="color: #666666; font-style: italic;"># still be done in setup.py.</span><br />
<span style="color: #666666; font-style: italic;"># The next line is the default as used on psycopg author Debian laptop:</span><br />
<span style="color: #666666; font-style: italic;">#include_dirs=/usr/local/lib</span><br />
<br />
<span style="color: #666666; font-style: italic;"># Uncomment next line on Mandrake 10.x (and comment previous ones):</span><br />
<span style="color: #666666; font-style: italic;">#include_dirs=/usr/include/pgsql/8.0:/usr/include/pgsql/8.0/server </span><br />
<br />
<span style="color: #666666; font-style: italic;"># Uncomment next line on SUSE 9.3 (and comment previous ones):</span><br />
<span style="color: #666666; font-style: italic;">#include_dirs=/usr/include/pgsql:/usr/include/pgsql/server</span><br />
<br />
<span style="color: #666666; font-style: italic;"># If postgresql is installed somewhere weird (i.e., not in your runtime library</span><br />
<span style="color: #666666; font-style: italic;"># path like /usr/lib), just add the right path in &quot;library_dirs&quot; and any extra</span><br />
<span style="color: #666666; font-style: italic;"># libraries required to link in &quot;libraries&quot;.</span><br />
<span style="color: #007800;">library_dirs</span>=<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>PostgreSQL<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">8.4</span><span style="color: #000000; font-weight: bold;">/</span>lib<br />
<span style="color: #007800;">libraries</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib</div></div>
<p>Now run the installation using the new python:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">python setup.py <span style="color: #c20cb9; font-weight: bold;">install</span></div></div>
<p>This should install. You should be able to do &#8220;import psycopg2&#8243; from the python prompt. Now install all the libraries and python modules that you need, and create the Postgresql database that you want (pgadmin3 is the best tool for this).</p>
<p>Please note this was done on a OS X Snow Leopard 10.6.4 with XCode and the 10.4 libraries installed.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timc3.com/2010/08/20/psycopg2-os-x-_pqbackendpid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NewNewsWire</title>
		<link>http://blog.timc3.com/2009/10/09/newnewswire/</link>
		<comments>http://blog.timc3.com/2009/10/09/newnewswire/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 07:58:32 +0000</pubDate>
		<dc:creator>timc3</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.timc3.com/?p=685</guid>
		<description><![CDATA[I have posted about NetNewsWire many times on here before. Its been my favourite news reading application for a couple of years now (if not more) but recent development has severally hampered the usability of the software.
It seemed to be when they changed it to support sync to Google Reader &#8211; not a bad idea [...]]]></description>
			<content:encoded><![CDATA[<p>I have posted about NetNewsWire many times on here before. Its been my favourite news reading application for a couple of years now (if not more) but recent development has severally hampered the usability of the software.</p>
<p>It seemed to be when they changed it to support sync to Google Reader &#8211; not a bad idea by any means, but releasing the software before it was full tested and working was a huge mistake. Trying to push it to people before it was ready was an even bigger mistake.</p>
<p>Now twitter &#038; fb are full of messages about problems with the Mac OSX and iPhone version, and it really needs to be sorted out. I know its free now, but as I have said before I paid for it a long time ago and it worked, if its a question of money then release it as a paid version. Not too expensive ( VersionsApp &#8211; take note ) but working.</p>
<p>Do not recommend it at the moment, which is such a pity as it used to be one of my favourite applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timc3.com/2009/10/09/newnewswire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The beauty of the ssh config file</title>
		<link>http://blog.timc3.com/2009/09/04/the-beauty-of-the-ssh-config-file/</link>
		<comments>http://blog.timc3.com/2009/09/04/the-beauty-of-the-ssh-config-file/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 21:35:17 +0000</pubDate>
		<dc:creator>timc3</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[ssh config sshfs]]></category>

		<guid isPermaLink="false">http://blog.timc3.com/?p=666</guid>
		<description><![CDATA[This is a tip that I have used on OS X and on Linux, which I presume works on other *nix and BSDs using SSH.
Basically in the .ssh folder in your home directory you can create a file called config with which you can put all sorts of configuration information for your ssh client but [...]]]></description>
			<content:encoded><![CDATA[<p>This is a tip that I have used on OS X and on <a target="_blank" href="http://www.debian.org">Linux</a>, which I presume works on other *nix and BSDs using SSH.</p>
<p>Basically in the .ssh folder in your home directory you can create a file called config with which you can put all sorts of configuration information for your ssh client but the real benefit for <a target="_self" href="mailto:tim@nospamplease.timc3.com">me</a> was to use this to give extra information to hosts such as defining a different port number to connect on. For instance:</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">Host myservername<br />
&nbsp; &nbsp; &nbsp; &nbsp; User myuser<br />
&nbsp; &nbsp; &nbsp; &nbsp; Port 22222</div></div>
<p>This means that instead of typing:</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">ssh -p 22222 myuser@myservername</div></div>
<p>I can type:</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">ssh myservername</div></div>
<p>No need for nasty aliases in the shell or anything like that. This also works for the sshfs program on the Mac that makes use of MacFuse. Yes that&#8217;s right you can use different ports with SSHfs.</p>
<p>You can also change a much wider range of parameters than I have shown here, but often its probably better to introduce them on the server. But here is an example and have a look under the options flag in the Man page for SSH</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">Compression yes<br />
CompressionLevel 9<br />
FallBackToRsh yes<br />
KeepAlive no</div></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.timc3.com/2009/09/04/the-beauty-of-the-ssh-config-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PostgreSQL for Mac and language support &#8211; PLPGSQL</title>
		<link>http://blog.timc3.com/2009/05/26/postgresql-for-mac-and-language-support-plpgsql/</link>
		<comments>http://blog.timc3.com/2009/05/26/postgresql-for-mac-and-language-support-plpgsql/#comments</comments>
		<pubDate>Tue, 26 May 2009 12:48:45 +0000</pubDate>
		<dc:creator>timc3</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[OS X and languages.]]></category>
		<category><![CDATA[PostgreSQL]]></category>
		<category><![CDATA[saved procedures]]></category>
		<category><![CDATA[stored procedures]]></category>

		<guid isPermaLink="false">http://blog.timc3.com/?p=619</guid>
		<description><![CDATA[Seems sometimes the PostgresqlforMac package doesn&#8217;t have support out of the box for PLPGSQL or other stored procedure languages and you can&#8217;t simply change to the correct user to upgrade it instead call the createlang command like this:
/Library/PostgreSQL8/bin/createlang -l DATABASE -U USER;
Obviously changing DATABASE to your database and USER to your user. This will list [...]]]></description>
			<content:encoded><![CDATA[<p>Seems sometimes the PostgresqlforMac package doesn&#8217;t have support out of the box for PLPGSQL or other stored procedure languages and you can&#8217;t simply change to the correct user to upgrade it instead call the createlang command like this:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>PostgreSQL8<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>createlang <span style="color: #660033;">-l</span> DATABASE <span style="color: #660033;">-U</span> USER;</div></div>
<p>Obviously changing DATABASE to your database and USER to your user. This will list all the languages enabled for that database.</p>
<p>To add PL/PGSQL, try this:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>PostgreSQL8<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>createlang plpgsql DATABASE <span style="color: #660033;">-U</span> USER;</div></div>
<p>Now you are free to create your functions.</p>
<p>If you want to save the change for each database that is created, apply the change to template1 database.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timc3.com/2009/05/26/postgresql-for-mac-and-language-support-plpgsql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Windows 2008 on MacBook Pro 10.5</title>
		<link>http://blog.timc3.com/2009/02/07/installing-windows-2008-on-macbook-pro-105/</link>
		<comments>http://blog.timc3.com/2009/02/07/installing-windows-2008-on-macbook-pro-105/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 21:07:42 +0000</pubDate>
		<dc:creator>timc3</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.timc3.com/?p=542</guid>
		<description><![CDATA[Windows 2008 Server is probably the most robust operating system to come out from Microsoft whilst still supporting most of the modern features users demand. The robustness and speed of it is just two of the advantages it has over Vista.
To install on a MacBook Pro its probably easiest to use Windows 2008 Server x86 [...]]]></description>
			<content:encoded><![CDATA[<p>Windows 2008 Server is probably the most robust operating system to come out from Microsoft whilst still supporting most of the modern features users demand. The robustness and speed of it is just two of the advantages it has over Vista.</p>
<p>To install on a MacBook Pro its probably easiest to use Windows 2008 Server x86 CD 32bit. 64Bit and bootcamp is not recommended at the moment!</p>
<p><strong>First steps of the installation:</strong></p>
<ol>
<li>Step one is to start up the bootcamp assistant whilst you are running OS X.</li>
<li>It will take you through the procedure</li>
<li>Put in the DVD when prompted</li>
<li>Follow through the questions asked for the install</li>
<li>When prompted to enter a password make sure to use one of these three: numbers, symbols, capital letters, lower case letters. Password policy is setup on Windows 2008!</li>
<li>It will continue to install and any reboot needed will take you back to the installation</li>
</ol>
<p>After this is done the OS is installed, but as a workstation OS its a bit of pain to use.</p>
<p><strong>Next steps straight after installation</strong></p>
<ol>
<li>Start by downloading a webbrowser that you can actually use. IE is quite restricted so to even download something you must go into options and change the privacy options</li>
<li>Insert your Leopard disk and install the drivers that you need, then reboot</li>
<li>From here you can change the resolution of the desktop to the native display resolution</li>
</ol>
<p>All the steps after this are optional, but are probably good to know:</p>
<p><strong>Enable themes</strong></p>
<ol>
<li>Open up &#8220;Server Manager&#8221;</li>
<li>Click &#8220;Action&#8221;, &#8220;Add Features&#8221;</li>
<li>Choose &#8220;Desktop Experience&#8221;</li>
<li>Go into the Service panel</li>
<li>Enable the themes service (its probably disabled, so you need to double click it and enable it</li>
<li>Select a theme by right clicking on the desktop and selecting personalised</li>
<li>Aero theme can be found at:
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">C:\Windows\Resources\Themes</div></div>
</li>
</ol>
<p><strong>Enable wireless networking</strong></p>
<ol>
<li>Open up &#8220;Server Manager&#8221;</li>
<li>Click &#8220;Action&#8221;, &#8220;Add Features&#8221;</li>
<li>Choose &#8220;Wireless LAN Service&#8221;</li>
<li>Let it install</li>
</ol>
<p><strong>Enable hibernation</strong></p>
<ol>
<li>Open up a command prompt and type</li>
<li>
<div class="codecolorer-container dos vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="dos codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">powercfg.exe /hibernate on</div></div>
</li>
</ol>
<p>For more information on turning Windows 2008 into a workstation check out:</p>
<p><a href="http://www.win2008workstation.com/wordpress/">http://www.win2008workstation.com/wordpress/</a></p>
<p>And for a program that easily enables the features of a workstation on Windows 2008 server:</p>
<p><a href="http://www.win2008workstation.com/wordpress/2008/07/17/windows-server-2008-workstation-converter/">http://www.win2008workstation.com/wordpress/2008/07/17/windows-server-2008-workstation-converter/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timc3.com/2009/02/07/installing-windows-2008-on-macbook-pro-105/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Working with SVN on OS X</title>
		<link>http://blog.timc3.com/2009/01/10/working-with-svn-on-os-x/</link>
		<comments>http://blog.timc3.com/2009/01/10/working-with-svn-on-os-x/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 12:24:25 +0000</pubDate>
		<dc:creator>timc3</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.timc3.com/?p=505</guid>
		<description><![CDATA[I use SVN (subversion) quite a bit, even at home to manage my own files, but recently I have been running the beta version for Versions by Sofa and Pico. 
It turned into an excellent way of using SVN, being very visual and supporting everything that I needed, but alas the Beta period ran out [...]]]></description>
			<content:encoded><![CDATA[<p>I use SVN (subversion) quite a bit, even at home to manage my own files, but recently I have been running the beta version for <a href="www.versionsapp.com">Versions</a> by Sofa and Pico. </p>
<p>It turned into an excellent way of using SVN, being very visual and supporting everything that I needed, but alas the Beta period ran out and they released Versions 1.</p>
<p>Now I was all for buying this application, but the purchase price of 39 Euros totally puts my of. After all this is a nice to have, and only improves my life slightly. It just doesn&#8217;t seem worth the price &#8211; particularly when most software like this for OS X is about half the price (I would have easily decided to buy it for 20 Euros).</p>
<p>So after deciding whether to hack it, not really an option any more as I like to have all paid for or properly licensed software on my machines, or search for something else I looked back at what I could use.</p>
<p>SVN from the command line. So I started using this again, and I found myself checking in versions of things that are not ready and not having a nice overview of files. It works of course, but it didn&#8217;t suit my way of working since using versions &#8211; checking in some files, and generally knowing the status of projects that I am working on.</p>
<p>Then I went back to the SVN plugin for Finder. This is ok, but more often than not the rendering of icons showing whether a folder is up to date or not stops working leaving <a target="_self" href="mailto:tim@nospamplease.timc3.com">me</a> in the dark.</p>
<p>Then I decided to check out textmate SVN integration. Its ok, but not really good enough, I don&#8217;t like the keybindings and the interface is not intuitive enough.</p>
<p>Finally I came across the <a href="http://ciaranwal.sh/2008/08/05/textmate-plug-in-projectplus">ProjectPlus</a> plugin for Textmate. After installing just configure it in the preferences to work with what ever source revision system you use (Its supports SVN, Git, Mercurial, Svk &amp; Bazaar), and you can see the state of what you are doing in the system.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timc3.com/2009/01/10/working-with-svn-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2008 Applications of the year</title>
		<link>http://blog.timc3.com/2009/01/09/2008-applications-of-the-year/</link>
		<comments>http://blog.timc3.com/2009/01/09/2008-applications-of-the-year/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 11:17:52 +0000</pubDate>
		<dc:creator>timc3</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.timc3.com/?p=503</guid>
		<description><![CDATA[So here are my most used OS X applications of the year, in no particular order:
 * Spotify. This is just an excellent music application, the speed with which the streams start is simply amazing and I don&#8217;t find that I get that many adverts in the way of the vast array of songs on [...]]]></description>
			<content:encoded><![CDATA[<p>So here are my most used OS X applications of the year, in no particular order:</p>
<p> * Spotify. This is just an excellent music application, the speed with which the streams start is simply amazing and I don&#8217;t find that I get that many adverts in the way of the vast array of songs on offer.</p>
<p> * Textmate. I probably use this more than any other application on the Mac, for <a target="_self" href="mailto:tim@nospamplease.timc3.com">me</a> hands down the best text editor that I have ever used and I find more and more features in it everyday.</p>
<p> * NetNewsWire Pro. Having all my RSS feeds in one place is really just what I need. Must remember to integrate it with FriendFeed.</p>
<p> * Adium. Always there, some times a pain with XMMP but otherwise just awesome.</p>
<p> * Python 2.5. Best scripting language by far, but then I am biased.</p>
<p>All free  (I did buy a license for NetNewsWire but you no longer have to) apart from TextMate which is more than worth the price.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timc3.com/2009/01/09/2008-applications-of-the-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Last FM</title>
		<link>http://blog.timc3.com/2008/10/10/last-fm/</link>
		<comments>http://blog.timc3.com/2008/10/10/last-fm/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 14:58:18 +0000</pubDate>
		<dc:creator>timc3</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Me]]></category>
		<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://blog.timc3.com/?p=490</guid>
		<description><![CDATA[I recently thought that I would check out my listing on Last FM to see stats etc.. and to see what features they have added.
Looks like I had forgotten to run last.fm on my Mac so it wasn&#8217;t updated since February. So that&#8217;s probably about 1000 hours of music unlisted, and lots of music missing. [...]]]></description>
			<content:encoded><![CDATA[<p>I recently thought that I would check out my listing on <a href="http://last.fm">Last FM</a> to see stats etc.. and to see what features they have added.</p>
<p>Looks like I had forgotten to run last.fm on my Mac so it wasn&#8217;t updated since February. So that&#8217;s probably about 1000 hours of music unlisted, and lots of music missing. Gutted. Oh well, perhaps I will remember now.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timc3.com/2008/10/10/last-fm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My top ten OS X applications</title>
		<link>http://blog.timc3.com/2008/07/21/my-top-ten-os-x-applications/</link>
		<comments>http://blog.timc3.com/2008/07/21/my-top-ten-os-x-applications/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 17:38:57 +0000</pubDate>
		<dc:creator>timc3</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.timc3.com/?p=486</guid>
		<description><![CDATA[Its been a year with this Mac Book Pro that I am using so I thought that I would round up with my top ten Mac software &#8211; the software that I would install first of all after a crash.
1. Quicksilver.  This is a must have on the Mac.  I find out something [...]]]></description>
			<content:encoded><![CDATA[<p>Its been a year with this Mac Book Pro that I am using so I thought that I would round up with my top ten Mac software &#8211; the software that I would install first of all after a crash.</p>
<p>1. <strong>Quicksilver</strong>.  This is a must have on the Mac.  I find out something new about it every week if not everyday and it makes using OS X even easier and more streamlined.  For instance, finding a contact and then sending an SMS through <a target="_blank" href="http://share.skype.com/in/102/65537">skype</a> can be achieved in a few keystrokes, far faster than clicking around in the GUI.</p>
<p>2.<strong> NetNewsWire Pro</strong>.  Now free to download, I had a paid version of this and its the best way to read newsfeeds that I have come across. It syncs with a web version so I can still access the my newsfeeds when I am away, and there are clients for other platforms including Windows Mobile.</p>
<p>3. <strong>Knox</strong>.  I use this to keep all my important documents and things that I don&#8217;t want to go missing.  It backups to my USB thumbdrive everyday, and its easy to backup online.</p>
<p>4.<strong> SSHFS and MacFuse</strong>.  Easy easy way to mount external SSH shares onto the desktop.</p>
<p>5. <strong>Address book, Apple Mail and iPhoto</strong>.  At first I stayed away from the integrated applications, but they are REALLY integrated, and work so well together the extra functionality that you get from using them together is well worth the switch.</p>
<p>6. <strong>Adium</strong>.  The best chat client that I have found for instant messaging on OS X.  It doesn&#8217;t have all the features that individual applications might have (voice and webcam for one).  But sometimes you just don&#8217;t need that, and really <a target="_blank" href="http://share.skype.com/in/102/65537">skype</a> running along side is better for this.  If it had all the features of <a target="_blank" href="http://share.skype.com/in/102/65537">skype</a> it would be really the true all rounder.</p>
<p>7. <strong>Unison</strong>.  I use Usenet alot. Its a great news client. Perhaps the best on any platform at the moment.</p>
<p>8. <strong>Textmate</strong>. Perhaps the best editor on OS X &#8211; I tried many until I paid up and bought Textmate. Its strong bundles and integration with svn plus the nice support for Django wins for <a target="_self" href="mailto:tim@nospamplease.timc3.com">me</a>.</p>
<p>9. <strong>MarsEdit</strong>. Great blog posting tool.</p>
<p>10. <strong>Versions</strong>. This is quite new but it makes working with SVN just a little easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timc3.com/2008/07/21/my-top-ten-os-x-applications/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Installing ffmpeg on OS X</title>
		<link>http://blog.timc3.com/2008/03/25/installing-ffmpeg-on-os-x/</link>
		<comments>http://blog.timc3.com/2008/03/25/installing-ffmpeg-on-os-x/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 09:38:17 +0000</pubDate>
		<dc:creator>timc3</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://blog.timc3.com/2008/03/25/installing-ffmpeg-on-os-x/</guid>
		<description><![CDATA[This is a work in progress for installing ffmpeg on OSX by a custom compile
This is another thing that I have needed to do and decided to put what I am doing in a blog post, I might need it in the future or it might be helpful for others.
So firstly download LAME &#8211; this [...]]]></description>
			<content:encoded><![CDATA[<p><strong>This is a work in progress for installing ffmpeg on OSX by a custom compile</strong></p>
<p>This is another thing that I have needed to do and decided to put what I am doing in a blog post, I might need it in the future or it might be helpful for others.</p>
<p>So firstly download LAME &#8211; this is needed for supporting MP3 audio files, such as those in FLV and also for vorbis support.  LAME src can be located on sourceforge.</p>
<p>Unarchive the file (lame-3.98b6 at the time of writing )</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #7a0874; font-weight: bold;">cd</span> lame-3.98b6<br />
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--with-vorbis</span><br />
<span style="color: #c20cb9; font-weight: bold;">make</span><br />
<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></div></div>
<p>The first time I did this I noticed a problem running make so I &#8220;make clean&#8221; and then went through the process again.</p>
<p>Next up we want support for AAC audio, and you can get packages called FAAD2 and FAAC from www.audiocoding.com/downloads.html for these and then unarchive them ( FAAD 2.6.1 and FAAC 1.26 at the time of writing).</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #7a0874; font-weight: bold;">cd</span> faad2<br />
autoreconf <span style="color: #660033;">-vif</span><br />
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--without-bmp</span> <span style="color: #660033;">--without-xmms</span> <span style="color: #660033;">--without-drm</span> <span style="color: #660033;">--without-mpeg4ip</span><br />
<span style="color: #c20cb9; font-weight: bold;">make</span><br />
<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></div></div>
<p>Then faac</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #7a0874; font-weight: bold;">cd</span> faac<br />
.<span style="color: #000000; font-weight: bold;">/</span>bootstrap<br />
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--with-libmp4v2</span><br />
<span style="color: #c20cb9; font-weight: bold;">make</span><br />
<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></div></div>
<p>x264 ( http://www.videolan.org/developers/x264.html )</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #7a0874; font-weight: bold;">cd</span> x264<br />
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--enable-pthread</span> <span style="color: #660033;">--enable-pic</span><br />
<span style="color: #c20cb9; font-weight: bold;">make</span><br />
<span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></div></div>
<p>liba52</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>liba52.sourceforge.net<span style="color: #000000; font-weight: bold;">/</span>files<span style="color: #000000; font-weight: bold;">/</span>a52dec-snapshot.tar.gz<br />
<span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xzvf</span> a52dec-snapshot.tar.gz<br />
<span style="color: #7a0874; font-weight: bold;">cd</span> a52dec-0.7.5-cvs<span style="color: #000000; font-weight: bold;">/</span><br />
.<span style="color: #000000; font-weight: bold;">/</span>configure<br />
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--enable-libmp3lame</span> <span style="color: #660033;">--enable-x264</span> <span style="color: #660033;">--enable-liba52</span> <span style="color: #660033;">--enable-gpl</span></div></div>
<p>And for amr_wb and amr_nb go into their directories and do the following:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">.<span style="color: #000000; font-weight: bold;">/</span>configure<br />
<span style="color: #c20cb9; font-weight: bold;">make</span> clean<br />
<span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #660033;">-j2</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null<br />
<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></div></div>
<p>Basically the -j2 switch is for enabling dual cores when compiling.</p>
<p>Now we get around to compiling ffmpeg itself:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--enable-shared</span> <span style="color: #660033;">--disable-mmx</span> <span style="color: #660033;">--enable-libmp3lame</span> <span style="color: #660033;">--enable-libamr-wb</span> <span style="color: #660033;">--enable-libamr-nb</span> <span style="color: #660033;">--enable-nonfree</span> <span style="color: #660033;">--disable-vhook</span><br />
<span style="color: #c20cb9; font-weight: bold;">make</span> clean<br />
<span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #660033;">-j2</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null<br />
<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></div></div>
<p>And that should be it though I am currently trying this configuration and it seems to work well:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--enable-shared</span> <span style="color: #660033;">--disable-mmx</span> <span style="color: #660033;">--enable-libmp3lame</span> <span style="color: #660033;">--enable-libamr-wb</span> <span style="color: #660033;">--enable-libamr-nb</span> <span style="color: #660033;">--enable-nonfree</span> <span style="color: #660033;">--enable-libx264</span> <span style="color: #660033;">--enable-libfaad</span> <span style="color: #660033;">--enable-gpl</span> <span style="color: #660033;">--disable-vhook</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.timc3.com/2008/03/25/installing-ffmpeg-on-os-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
