<?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>Neal &#38; Associates &#187; 64bit</title>
	<atom:link href="http://blog.nealandassociates.co.uk/tag/64bit/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nealandassociates.co.uk</link>
	<description></description>
	<lastBuildDate>Thu, 01 Dec 2011 10:00:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>FileMaker Custom Function for File Path to @Dropbox</title>
		<link>http://blog.nealandassociates.co.uk/2010/09/20/filemaker-custom-function-for-formating-file-paths/</link>
		<comments>http://blog.nealandassociates.co.uk/2010/09/20/filemaker-custom-function-for-formating-file-paths/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 11:00:20 +0000</pubDate>
		<dc:creator>Peter Neal</dc:creator>
				<category><![CDATA[Filemaker]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[custom function]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[file paths]]></category>
		<category><![CDATA[filemaker]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[troi]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[windows vista]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://blog.nealandassociates.co.uk/?p=688</guid>
		<description><![CDATA[From the second version of my first database (back in 2002) I have used my FileMaker databases to control the creation of a structured folder system to enable the efficient and uniform storing of structured data for each of the businesses I have worked with. Early on in my development of FileMaker systems I stumbled [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2010%2F09%2F20%2Ffilemaker-custom-function-for-formating-file-paths%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2010%2F09%2F20%2Ffilemaker-custom-function-for-formating-file-paths%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>From the second version of my first database (back in 2002) I have used my FileMaker databases to control the creation of a structured folder system to enable the efficient and uniform storing of structured data for each of the businesses I have worked with.</p>
<p>Early on in my development of FileMaker systems I stumbled across the fantastic plugins offered by <a href="http://www.troi.com/">Troi Automatisering</a>, in particular their <a href="http://www.troi.com/software/fileplugin.html">File Plugin</a>, now at version 5, which I will be creating this custom function to use.</p>
<p>This plugin enables me to create, with relative ease, a series of fields and scripts that allowed the automatic creation and opening of folders and files straight from the database. Relatively simple if you&#8217;re running FileMaker in a closed network, but it starts to get more complicated very quickly.</p>
<p>I&#8217;ve had the good fortune to design almost exclusively for Mac only networks (phew) although I have had to deal with mixed environments where my customers are still in transition from PCs to Macs so I&#8217;ve had to ensure that any system is compatible with both.</p>
<p><strong>The Preparation</strong></p>
<p><span style="text-decoration: underline;">Determining the Windows System Version:</span></p>
<p>Since the route to the Documents folder hasn&#8217;t ever changed in Mac OS X I don&#8217;t need to worry about the version used, however, this is not the case in Windows where there is a different file path to the &#8220;My Documents&#8221; folder on Windows XP and the new versions Vista and Windows 7.</p>
<p>So I need to use the <a href="http://www.filemaker.com/help/html/func_ref2.32.73.html#1031534">Get ( SystemVersion ) Function</a> to determine whether or not the user is using Windows XP or a newer version. According to the <a href="http://www.filemaker.com/help/">FileMaker help</a> the function returns the following information for Windows:</p>
<blockquote><p>5.1 for Windows XP SP2</p>
<p>6.0 for Windows Vista</p></blockquote>
<p>So I needed a test for which version of Windows is running. I did attempt to design my own custom function to determine this, but perhaps because I was unwell I wasted a good deal of time messing around with this before I came to my senses and looked at <a href="http://github.com/petrowsky/fmpfunctions/">Matt&#8217;s github page</a>.</p>
<p>His <a href="http://github.com/petrowsky/fmpfunctions/blob/master/os.versionName.fmfn">os.versionName</a> custom function (which I&#8217;ve renamed as os.versions) is a quick and easy solution to this problem, which can go well beyond my needs, but will achieve what I want by returning the name of the Mac or Windows OS running on the users system.</p>
<p>It returns a simple easy to interpret name from the Get ( SystemVersion ) so the 5.1 response from the function is returned as &#8220;Windows XP&#8221; or 6.0 is returned as &#8220;Windows Vista&#8221;.</p>
<p><span style="text-decoration: underline;">Dealing with Windows Folder Path Separators:</span></p>
<p>Windows file paths use the &#8220;\&#8221; separator. For some reason you can&#8217;t easily use these in FileMaker calculations (if someone knows why please let me know in the comments). So I&#8217;ve taken the easy step of creation of new global variable $$windowsnetworksymbol to contain the &#8220;\&#8221; separator.</p>
<p>n.b. To ensure this variable is set each time the FileMaker file is launched I&#8217;ve added it to a script called &#8220;Set Global Variables&#8221;, which I run as part of my start-up script.</p>
<p><span style="text-decoration: underline;">Dealing with Mac Folder Path Separators</span><strong><br />
</strong></p>
<p>Mac file paths used by the plugin are formatted with the &#8220;:&#8221; separator. The only other thing you need to worry about is that a file path starts without any separator.</p>
<p><strong><a href="http://www.filemaker.com/help/html/func_ref2.32.22.html">Get (DocumentsPath) Function</a><br />
</strong></p>
<p>It is the product of this function that we have been working towards editing. The basic idea is to be able to call the Get ( DocumentsPath ) Function and then edit it&#8217;s product to point instead to the location of the Dropbox folder (assuming it is installed in the default location).</p>
<p>The Get ( DocumentsPath ) Function will return the following:</p>
<blockquote><p><a name="1046490">\C:\Documents and Settings\YourUserName\My Documents\</a> in <strong>Windows XP</strong><a name="1047897"></a></p>
<p><a name="1047897">\C:\Users\Your User Name\Documents\ </a><strong>in</strong><strong> Vista or Windows 7</strong></p>
<div><a name="1046491">/MacintoshHD/Users/Your User Name/Documents/</a> <strong>in</strong> <strong>Mac OS X<br />
</strong></div>
</blockquote>
<p>And we know from my earlier blog post: <a href="http://blog.nealandassociates.co.uk/2010/09/18/default-dropbox-file-paths/">Default @Dropbox File Paths</a> that the default file paths for Dropbox are:</p>
<blockquote><p><tt>\C:\Documents and Settings\YourUserName\My Documents\My Dropbox\ <strong>in Windows XP</strong><br />
</tt></p>
<p><tt>\C:\Users\YourUserName\Documents\Dropbox\ </tt><strong>in Vista or Windows 7</strong></p>
<p>/Macintosh HD/Users/YourUserName/Dropbox/ in <strong>Mac OS X</strong></p></blockquote>
<p>So now we have all the building blocks in place it&#8217;s time to construct our custom function:</p>
<p><strong>The path.dropbox Function<br />
</strong></p>
<p>The function itself is relatively simple once we have done the above preparation. It has no parameters and is made up of a simple Case Statement which asks two questions:</p>
<p style="padding-left: 30px;">1. Is the user running a version of Windows XP?</p>
<p style="padding-left: 30px;">2. Is the user running either Windows Vista or Windows 7?</p>
<p>If both these questions are negative we will assume that the use is running Mac OS X.</p>
<p>Once we have determined which OS the user is using we will then grab the documents file path using the Get ( DocumentsPath ) Function and then reformat it to be compatible with the Troi File Plugin.</p>
<p><span style="text-decoration: underline;">Formatting for Windows</span></p>
<p>We use the Replace Function to make this assessment:</p>
<blockquote><p>Replace ( Get ( DocumentsPath ); 1; 3; &#8220;&#8221; )</p></blockquote>
<p>This will replace the &#8220;\C:&#8221; part of the resulting Get ( DocumentsPath ) with simply &#8220;&#8221;.</p>
<p>We encase this Replace Function within a Substitute Function so that we can substitute the &#8220;/&#8221; separator for the &#8220;\&#8221; separator contained within our $$windowsnetworksymbol and get a properly formatted Windows file path for the Troi Plugin. So we get:</p>
<blockquote><p>Substitute ((Replace (Get(DocumentsPath); 1; 3; &#8220;&#8221;)); ["/"; $$windowsnetworksymbol])</p></blockquote>
<p>With both Windows File Paths to the Dropbox we then simply need to append the correct location which we can easily do by adding:</p>
<blockquote><p>&amp; &#8220;My Dropbox&#8221; &amp; $$windowsnetworksymbol <tt><strong>in Windows XP</strong></tt></p>
<p>&amp; &#8220;Dropbox&#8221; &amp; $$windowsnetworksymbol <strong>in Vista or Windows 7</strong></p></blockquote>
<p><span style="text-decoration: underline;">Formatting for Mac</span></p>
<p>We again use <a href="http://www.filemaker.com/help/html/func_ref3.33.77.html#1031453">Replace Function</a> to remove the leading &#8220;/&#8221; and as before encase this within a <a href="http://www.filemaker.com/help/html/func_ref3.33.84.html#1031764">Substitute Function</a> so that we can substitute the &#8220;/&#8221; separator for the &#8220;:&#8221; separator. So we get:</p>
<blockquote><p>Substitute ((Replace (Get(DocumentsPath); 1; 1; &#8220;&#8221;)); ["/"; ":"]; ["Documents:"; ""])</p></blockquote>
<p>As you&#8217;ll notice we have also added to the Substitute Function a statement to replace the &#8220;Documents:&#8221;, which will strip back the Mac File Path to the User so we can then append:</p>
<blockquote><p>&amp; &#8220;Dropbox&#8221; &amp; &#8220;:&#8221;</p></blockquote>
<p>which will get us to the default location for the Dropbox on the Mac.</p>
<p><span style="text-decoration: underline;">The Final Function:</span></p>
<blockquote><p>Case (</p>
<p>os.version = &#8220;Windows XP 64-Bit&#8221; or &#8220;Windows XP&#8221;; Substitute ((Replace (Get(DocumentsPath); 1; 3; &#8220;&#8221;)); ["/"; $$windowsnetworksymbol]) &amp; &#8220;My Dropbox&#8221; &amp; $$windowsnetworksymbol;<br />
os.version = &#8220;Windows 7&#8243; or &#8220;Windows Vista&#8221;; Substitute ((Replace (Get(DocumentsPath); 1; 3; &#8220;&#8221;)); ["/"; $$windowsnetworksymbol]) &amp; &#8220;Dropbox&#8221; &amp; $$windowsnetworksymbol;<br />
Substitute ((Replace (Get(DocumentsPath); 1; 1; &#8220;&#8221;)); ["/"; ":"]; ["Documents:"; ""]) &amp; &#8220;Dropbox&#8221; &amp; &#8220;:&#8221;</p>
<p>)</p></blockquote>
<p>Please note that I have not yet had the opportunity to test this on a Windows system, but I&#8217;ve followed paths that worked in the past. As soon as I have had the opportunity to test it I will post any corrections here.</p>
<div class="shr-publisher-688"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.nealandassociates.co.uk/2010/09/20/filemaker-custom-function-for-formating-file-paths/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>VLC downgraded to 32 bit</title>
		<link>http://blog.nealandassociates.co.uk/2010/03/16/vlc-downgraded-to-32-bit/</link>
		<comments>http://blog.nealandassociates.co.uk/2010/03/16/vlc-downgraded-to-32-bit/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 12:00:28 +0000</pubDate>
		<dc:creator>Peter Neal</dc:creator>
				<category><![CDATA[64 bit]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[handbreak]]></category>
		<category><![CDATA[vlc]]></category>

		<guid isPermaLink="false">http://blog.nealandassociates.co.uk/?p=299</guid>
		<description><![CDATA[So. This was unexpected. In one of my earlier posts on the 64 bit revolution taking place since the introduction of Snow Tabby I mentioned that VLC had been upgraded to version 1.0.1 that was now 64 bit compatible. Unfortunately the 64 bit version of VLC only made it through one  more itteration, by version [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2010%2F03%2F16%2Fvlc-downgraded-to-32-bit%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2010%2F03%2F16%2Fvlc-downgraded-to-32-bit%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://blog.nealandassociates.co.uk/wp-content/uploads/2010/03/vlc-app-icon-128x128.png"><img class="alignright size-full wp-image-342" title="VLC" src="http://blog.nealandassociates.co.uk/wp-content/uploads/2010/03/vlc-app-icon-128x128.png" alt="VLC" width="128" height="128" /></a>So. This was unexpected. In one of my earlier posts on the 64 bit revolution taking place since the introduction of Snow Tabby I mentioned that <a href="http://www.videolan.org/">VLC</a> had been upgraded to version 1.0.1 that was now 64 bit compatible.</p>
<p>Unfortunately the 64 bit version of VLC only made it through one  more itteration, by version 1.0.3 it had reverted to 32 bit only. <img src='http://blog.nealandassociates.co.uk/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />   The explanation provided by the open source development team was that they don&#8217;t have enough developers to focus on it being 64 bit.</p>
<p>This has additional ramifications if you use VLC with <a href="http://handbrake.fr/">Handbreak</a> as it is now 64 bit and apparently the 32 bit and 64 bit codecs don&#8217;t play nice together. So if you&#8217;re having problems go here to download the <a href="http://download.videolan.org/pub/videolan/vlc/1.0.2/macosx/vlc-1.0.2-intel64.dmg">64 bit version</a>. And if you know any developers who can help out with the development then ask them to give a hand!</p>
<div class="shr-publisher-299"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.nealandassociates.co.uk/2010/03/16/vlc-downgraded-to-32-bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logic Pro, Mainstage go 64 bit</title>
		<link>http://blog.nealandassociates.co.uk/2010/01/20/logic-pro-mainstage-go-64-bit/</link>
		<comments>http://blog.nealandassociates.co.uk/2010/01/20/logic-pro-mainstage-go-64-bit/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 08:00:06 +0000</pubDate>
		<dc:creator>Peter Neal</dc:creator>
				<category><![CDATA[64 bit]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://blog.nealandassociates.co.uk/?p=278</guid>
		<description><![CDATA[So Apple has finally started to update it&#8217;s Pro software starting with it&#8217;s Logic Pro and Mainstage products. So if you&#8217;re a music fan or pro then you&#8217;re in luck, you ability to address memory just went up from 4Gb to 64 exabytes (if you can afford that much memory &#8211; MacObserver reckons it&#8217;d cost [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2010%2F01%2F20%2Flogic-pro-mainstage-go-64-bit%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2010%2F01%2F20%2Flogic-pro-mainstage-go-64-bit%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://blog.nealandassociates.co.uk/wp-content/uploads/2010/01/buystrip_box_20090721.png"><img class="alignright size-full wp-image-336" title="Logic Studio" src="http://blog.nealandassociates.co.uk/wp-content/uploads/2010/01/buystrip_box_20090721.png" alt="Logic Studio" width="145" height="126" /></a>So Apple has finally started to update it&#8217;s Pro software starting with it&#8217;s <a href="www.apple.com/logicstudio/">Logic Pro</a> and <a href="www.apple.com/logicstudio/mainstage/">Mainstage</a> products. So if you&#8217;re a music fan or pro then you&#8217;re in luck, you ability to address memory just went up from 4Gb to 64 exabytes (if you can afford that much memory &#8211; <a href="http://www.macobserver.com/tmo/article/more_on_64-bits_how_much_ram_can_a_mac_have_really/">MacObserver</a> reckons it&#8217;d cost approx. $450bn &#8211; or buy a machine that will fit it).</p>
<p>For information see Apple&#8217;s handy <a href="http://support.apple.com/kb/HT3989">FAQs</a> or specifically <a href="http://support.apple.com/kb/TS2565">Logic Pro </a>or <a href="http://support.apple.com/kb/TS2566">Mainstage</a>.</p>
<div class="shr-publisher-278"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.nealandassociates.co.uk/2010/01/20/logic-pro-mainstage-go-64-bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading to VMWare Fusion 3</title>
		<link>http://blog.nealandassociates.co.uk/2009/12/01/upgrading-to-vmware-fusion-3/</link>
		<comments>http://blog.nealandassociates.co.uk/2009/12/01/upgrading-to-vmware-fusion-3/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 16:12:57 +0000</pubDate>
		<dc:creator>Peter Neal</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.nealandassociates.co.uk/?p=178</guid>
		<description><![CDATA[So my aunt called me this morning and asked me to pop over and upgrade her VMWare Fusion 2 to the new version 3, which I had persuaded VMWare to give her a free upgrade to, after biting the bullet and buying version 2 as a replacement to parallels one day before the period for [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2009%2F12%2F01%2Fupgrading-to-vmware-fusion-3%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2009%2F12%2F01%2Fupgrading-to-vmware-fusion-3%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://blog.nealandassociates.co.uk/wp-content/uploads/2009/12/VMware-Fusion-3.jpg"><img class="alignright size-full wp-image-338" title="VMware Fusion 3" src="http://blog.nealandassociates.co.uk/wp-content/uploads/2009/12/VMware-Fusion-3.jpg" alt="VMware Fusion 3" width="257" height="258" /></a>So my aunt called me this morning and asked me to pop over and upgrade her VMWare Fusion 2 to the new version 3, which I had persuaded VMWare to give her a free upgrade to, after biting the bullet and buying version 2 as a replacement to parallels one day before the period for which they were offering free upgrades.</p>
<p>The upgrade process for the new program and her virtual machine went like a dream and in a little under twenty minutes after downloading version 3 we were up and running. This is, unfortunately, where the problems with VMWare tools began&#8230;</p>
<p>The initial installation ran the VMWare tools installer but it simply didn&#8217;t go anywhere and after about twenty minutes of waiting around for it I did some googling and came across this <a href="http://communities.vmware.com/docs/DOC-11095">article</a> on the VMWare site that advised me to uninstall the previous version of VMWare tools before proceeding. A few minutes later this was done, but now not even the installer ran.</p>
<p>After some additional googling I learnt that it worked by mounting an ISO to the virtual machine and then the hunt was on for where that file would be locally stored so I could manually burn it to a CD and side step this issue. After a good amount of time I found the ISO was stored here:</p>
<p>Library/Application Support/VMWare Fusion/isoimages/windows.iso</p>
<p>After a little playing around I copied it to a usb and mounted the usb in windows and voila I could now install the VMWare tools successfully. If it hadn&#8217;t been for the problem with VMWare tools this upgrade would have been an hour at most job, but as it was it took over two hours (ouch) so if any of you are having the same problem, rest assured that the solution really is quite simple.</p>
<div class="shr-publisher-178"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.nealandassociates.co.uk/2009/12/01/upgrading-to-vmware-fusion-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handbreak updates to 64bit</title>
		<link>http://blog.nealandassociates.co.uk/2009/11/26/handbreak-updates-to-64bit/</link>
		<comments>http://blog.nealandassociates.co.uk/2009/11/26/handbreak-updates-to-64bit/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 15:58:53 +0000</pubDate>
		<dc:creator>Peter Neal</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[handbreak]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.nealandassociates.co.uk/?p=173</guid>
		<description><![CDATA[Diligent as you may be sparkle is not always reliable for letting you know when an update is available and it was down to the guys and gals over at TUAW to let me know about the release of the new version of Handbreak (0.9.4), which is now 64bit compatible! If by chance you haven&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2009%2F11%2F26%2Fhandbreak-updates-to-64bit%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2009%2F11%2F26%2Fhandbreak-updates-to-64bit%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="size-full wp-image-174 alignright" title="Handbreak" src="http://blog.nealandassociates.co.uk/wp-content/uploads/2009/11/handbrake-cjr.jpg" alt="Handbreak" width="168" height="170" /></p>
<p>Diligent as you may be sparkle is not always reliable for letting you know when an update is available and it was down to the guys and gals over at <a href="http://www.tuaw.com/2009/11/24/handbrake-0-9-4-released-includes-64-bit-support/">TUAW</a> to let me know about the release of the new version of Handbreak (0.9.4), which is now 64bit compatible!</p>
<p>If by chance you haven&#8217;t heard of Handbreak before, it&#8217;s the leading free, open-source video transcoder available for the Mac (as well as PC and Linux platforms). It can take your .avi files or dvds and turn them into sparkling new mp4 files (with default options including encoding for iTunes, the web and the like) or anything else your heart desires.</p>
<p>I can highly recommend it, though running on a newer Intel Core Duo Chip or above is essential as video transcoding takes a surprising amount of time and the slower your processor the longer it takes!</p>
<p>Anyway find the update <a href="http://handbrake.fr/downloads.php">here</a>.</p>
<div class="shr-publisher-173"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.nealandassociates.co.uk/2009/11/26/handbreak-updates-to-64bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At last! A Mac Mini Server!</title>
		<link>http://blog.nealandassociates.co.uk/2009/10/26/at-last-a-mac-mini-server/</link>
		<comments>http://blog.nealandassociates.co.uk/2009/10/26/at-last-a-mac-mini-server/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 00:12:10 +0000</pubDate>
		<dc:creator>Peter Neal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mac mini]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.nealandassociates.co.uk/?p=146</guid>
		<description><![CDATA[There have been many arguments over the years about Macs being more expensive than PCs and though I have often thought that the arguments justifying this opinion are mostly without base, they seem to have stuck quite firmly in the minds of the consuming public and the business community in particular. In one area though [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2009%2F10%2F26%2Fat-last-a-mac-mini-server%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2009%2F10%2F26%2Fat-last-a-mac-mini-server%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>There have been many arguments over the years about Macs being more expensive than PCs and though I have often thought that the arguments justifying this opinion are mostly without base, they seem to have stuck quite firmly in the minds of the consuming public and the business community in particular. In one area though the reverse, since the release of OS X, has always been true: a Mac Server is significantly less expensive than a Windows Server.</p>
<p>However, a Mac Server has generally remained mostly outside of the purchasing range of a small businesses, especially those focused on low-cost, due to the general need to buy a Xserve, a rack, and all the associated costs. Now for those in the know, a Mac Mini accompanied by a copy of OS X Server (10 user version) has for many years been the easy route around this problem, but required a bit of know-how and was certainly not an off the shelf purchase.</p>
<p>Now this has all changed with the release of a new Mac Mini Server by Apple. For the low price of £799 (inc. VAT) you can have your own dual 500GB, 2.53 GHz Intel Core 2 Duo, with 4GB of RAM and an unlimited edition of  OS 10.6 Snow Leopard Server. Now that&#8217;s affordable. Even for a small business with only a couple of computers. And off the shelf and with you within 3 working days!</p>
<p style="text-align: center; "><img class="aligncenter size-full wp-image-155" title="Mac Mini Server" src="http://blog.nealandassociates.co.uk/wp-content/uploads/2009/10/Screen-shot-2009-10-26-at-00.15.50.png" alt="Mac Mini Server" width="562" height="203" /></p>
<p>Now for those Borg lovers who are already going blue at the notion that a Mac can be cheaper than a PC I have one reply: it&#8217;s the licences stupid. With the Mac Mini server you get an unlimited copy of Apple&#8217;s server product, no user restrictions, fully featured, add as much as you dare to the little powerhouse and if you need to add a second cheaply (and no rack required just a 12&#8243; square of desk space).</p>
<p>Now back to the licences. Appleinsider has a great example of the cost comparison between the new Mac Mini Server and a similar SME orientated Windows servers:</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0px initial initial;" title="Ouch! How much is that Windows Server?" src="http://images.appleinsider.com/servermini-1.png" border="0" alt="mosxs vs sbs" width="493" height="370" /></p>
<p>See how cheap? I can&#8217;t wait to have an opportunity to install my 1st Mac Mini off the shelf server. If you&#8217;d like to read an indepth review I highly recommend the Appleinsider review by Daniel Eran Dilger. Read it <a href="http://www.appleinsider.com/articles/09/10/24/inside_apples_new_mac_mini_server.html">here</a>.</p>
<p>Update</p>
<p><span style="background-color: #ffffff;">Macminiloco has published it&#8217;s annual &#8220;The State of the Mac Mini&#8221;, which gives an excellent breakdown on the new Mac Mini. Read it <a href="http://www.macminicolo.net/state2009.html">here</a>.</span></p>
<div class="shr-publisher-146"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.nealandassociates.co.uk/2009/10/26/at-last-a-mac-mini-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 64 bit Question</title>
		<link>http://blog.nealandassociates.co.uk/2009/10/02/the-64-bit-question/</link>
		<comments>http://blog.nealandassociates.co.uk/2009/10/02/the-64-bit-question/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 01:12:28 +0000</pubDate>
		<dc:creator>Peter Neal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[adium]]></category>
		<category><![CDATA[appfresh]]></category>
		<category><![CDATA[chromeframe]]></category>
		<category><![CDATA[coda]]></category>
		<category><![CDATA[dieie6]]></category>
		<category><![CDATA[evernote]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iterm]]></category>
		<category><![CDATA[mozy]]></category>
		<category><![CDATA[qsb]]></category>
		<category><![CDATA[quicksilver]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[vlc]]></category>

		<guid isPermaLink="false">http://blog.nealandassociates.co.uk/?p=49</guid>
		<description><![CDATA[My conversion to the wonderful world of 64 bits.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2009%2F10%2F02%2Fthe-64-bit-question%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.nealandassociates.co.uk%2F2009%2F10%2F02%2Fthe-64-bit-question%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>So I upgraded to Snow Tabby almost a month ago now, and despite constant checking of <a href="http://metaquark.de/appfresh/">appfresh</a> there are still a few programs that have not got on the 64 bit train yet&#8230; despite me crossing my fingers! So here is a delightful image of my Activity Monitor (unfortunately it doesn&#8217;t include all the 32 bit programs)</p>
<p><img style="display: block; margin-left: auto; margin-right: auto; border: 0px initial initial;" title="Activity Monitor" src="http://blog.nealandassociates.co.uk/wp-content/uploads/2009/09/Screen-shot-2009-09-29-at-14.10.11-1024x640.png" alt="Activity Monitor" width="614" height="384" /></p>
<p>The most annoying of these has got to be the flash plugin, which frequently crashes and often wreaks havoc across my system. Adobe has had a year to correct this problem. Why hasn&#8217;t it been done already? What its really shown me is how many pages have flash installed, most seem unnecessary and could be easily replaced with HTML5 features (<a href="http://iedeathmarch.org/">#dieie6</a> or if you must keep it add <a href="http://code.google.com/chrome/chromeframe/">Chrome Frame</a>! cheers google) For me the long death march for Flash has begun.</p>
<p>There are some programs that I expected to be converted to 64bit much more quickly amongst these are:</p>
<p><a href="http://code.google.com/p/qsb-mac/">Google Quick Search</a></p>
<p>A great program, a worthy successor (or at least quickly becoming one) to <a href="http://www.blacktree.com/">Quicksilver</a>, still very much beta &#8211; so why <a href="http://code.google.com/p/qsb-mac/issues/detail?id=755">no 64bit love</a>?</p>
<p><a href="http://www.evernote.com">Evernote</a></p>
<p>Another essential program, no clear mention about 64bit yet &#8211; their most recent <a href="http://blog.evernote.com/2009/08/31/evernote-on-snow-leopard/">blog post</a> on the topic doesn&#8217;t go into details. <img src='http://blog.nealandassociates.co.uk/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p><a href="https://mozy.com/?code=W8RV78">Mozy</a></p>
<p>I use this program on all my computers to give me a secondary backup for libraries and essential files like contacts, calendars and the like. It&#8217;s particularly useful for my MBP and my Mac Mini, which I don&#8217;t care to try and backup using Time Machine over the network. But it&#8217;s had real problems since I&#8217;ve updated and it&#8217;s rather driving me nuts, so maybe I might start to look for a solution if it doesn&#8217;t get fixed soon, which is a shame really. <img src='http://blog.nealandassociates.co.uk/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>Update &#8211; After posting I thought I&#8217;d give it another go. But it seems to be stuck at the magic 60.5% complete. Crazy. Bye bye Mozy, it was good whilst it lasted.</p>
<p>Update 2 &#8211; So it&#8217;s been updated to version 1.5, still no 64 bit loveliness but maybe it&#8217;s going to be stable?</p>
<p><a href="http://www.panic.com/coda/">Coda</a></p>
<p>This is the most user-friendly web html coding program I&#8217;ve used, now I&#8217;m also partial (after some pressing from my web-designer bro) to <a href="http://macromates.com/">Textmate</a>, but I still regularly use this program for its great inbuilt previewing features and its easy-to-use ftp management. I can&#8217;t really live without it, but I&#8217;d really like it to have some 64 bit love soon!</p>
<p><a href="http://iterm.sourceforge.net/">iTerm</a></p>
<p>I like all my apps to be tabbed and a tabbed terminal was just a must. It&#8217;s updated frequently but no 64 bit love yet&#8230;</p>
<p><a href="http://www.skype.com/download/skype/macosx/">Skype</a></p>
<p>It&#8217;s just been upgraded for more Snow Tabby compatibility, but still no 64 bit version! Maybe the new owners will give it a more radical update in the near future (I&#8217;m hoping for proper integration with Apple&#8217;s Address Book)</p>
<p><a href="http://adium.im/">Adium</a></p>
<p>Multi-IM compatible goodness, allowing me to log in to all my various chat accounts everywhere. I&#8217;m looking forward to it&#8217;s upgrade to 64 bit (and again Address Book love soon please &#8211; I&#8217;ve had some success with a program called <a href="http://code.google.com/p/adiumbook/downloads/list">AdiumBook</a> but I hope for more)</p>
<p>and some that have been upgraded, but might have problems!</p>
<p><a href="http://www.videolan.org/mirror-geo.php?file=vlc/1.0.2/macosx/vlc-1.0.2-intel64.dmg">VLC</a></p>
<p>The 64bit version is working great for me, but apparently not so great if you use <a href="http://www.9to5mac.com/VLC-64-handbrake-snow-leopard">handbreak</a>.</p>
<p>I&#8217;ll keep you updated as my conversion to 64 bit loveliness&#8230; later</p>
<p>UPDATE -</p>
<p><a href="http://growl.info/">Growl</a></p>
<p>My favourite notification system has just been updated to include 64 bit loveliness. Yey!</p>
<div class="shr-publisher-49"></div>]]></content:encoded>
			<wfw:commentRss>http://blog.nealandassociates.co.uk/2009/10/02/the-64-bit-question/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
