<?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>Dom Barnes &#187; apple</title>
	<atom:link href="http://dombarnes.com/category/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://dombarnes.com</link>
	<description>MAC GUY &#124; BASSIST &#124; WRITER</description>
	<lastBuildDate>Wed, 01 Feb 2012 16:18:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Not a Desktop</title>
		<link>http://dombarnes.com/2011/11/not-a-desktop/</link>
		<comments>http://dombarnes.com/2011/11/not-a-desktop/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 15:04:16 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[apple]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=466</guid>
		<description><![CDATA[I was just catching up with my Google Reader feeds (re the UI changes: not a fan) and was scrolling through posts by one of my favourite writers at the moment, Shawn Blanc. He had posted couple of links to people writing about how their iPad really is a replacement for their laptop. And then [...]]]></description>
			<content:encoded><![CDATA[<p>I was just catching up with my Google Reader feeds (re the UI changes: not a fan) and was scrolling through posts by one of my favourite writers at the moment, <a href="http://shawnblanc.net">Shawn Blanc</a>. He had posted couple of links to people writing about how their iPad really is a replacement for their laptop. And then it struck me. I can&#8217;t believe I hadn&#8217;t even noticed before.</p>
<p>The new 2011 MacBook Air came with a few ports missing. Most people miss their FireWire (I do sometimes) or ethernet (I do sometimes) port, and there are solutions coming for this, beside&#8217;s Apple&#8217;s Thunderbolt display. But what else is it missing? A little port known for its fondness of Kensington locks. The rectangular hole in many people&#8217;s laptops is often overlooked, but for some people, like college students, or small offices (or even big offices) this is critical to reducing the change of your precious laptop being stolen. But my MacBook Air doesn&#8217;t have this.</p>
<p>There could be two explanations to this.</p>
<ul>1. There simply wasn&#8217;t enough room in the tiny case to make an extra hole. Besides, 5 is too many anyway.</ul>
<ul>2. Its so small and light, that there is no reason to need to lock it anywhere</ul>
<p>Personally, I think its a little of both. I&#8217;m sure neither Jony Ive nor Steve wanted to make extra holes in the body of the Air, but when you&#8217;re carrying around a 2.96lb laptop, is it ever really that problematic to take it with you?</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2011/11/not-a-desktop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOWTO: Install a WIM Image in VMWare Fusion</title>
		<link>http://dombarnes.com/2009/03/howto-install-a-wim-image-in-vmware-fusion/</link>
		<comments>http://dombarnes.com/2009/03/howto-install-a-wim-image-in-vmware-fusion/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 21:32:46 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[imagex]]></category>
		<category><![CDATA[vmware fusion]]></category>
		<category><![CDATA[wim]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=249</guid>
		<description><![CDATA[My company builds their machines based on a USB rebuild solution, applying a Windows WIM image with Windows PE. I wanted to get this into a VMWare Fusion VM. After some googling, I managed to get it working, and here is how. My main resource was this invaluable page. I have put my steps here [...]]]></description>
			<content:encoded><![CDATA[<p>My company builds their machines based on a USB rebuild solution, applying a Windows WIM image with Windows PE. I wanted to get this into a VMWare Fusion VM. After some googling, I managed to get it working, and here is how. My main resource was <a href="O2UKOfficial@markperera We are working with Apple on tethering, but we're not making any announcements yet.">this invaluable page</a>. I have put my steps here for clarity.</p>
<p>1. Follow the instructions <a href="http://www.svrops.com/svrops/articles/winvistape2.htm">here</a> for creating a Windows PE boot disc. You will need a Windows system to create this with. Unfortunately the file resultant ISO file is 180MB, not really suitable to share here.<br />
2. Get your WIM image on a USB drive.<br />
3. Create you VM, selecting the appropriate OS, in my case, XP. Use the ISO image you created in step 1 as the install media.<br />
4. Start up your VM and wait to be presented by a command prompt.<br />
5. Type <em>DISKPART</em> to start the disk partition tool. Type the following commands</p>
<p style="padding-left: 30px;"><em>list disk<br />
sel dis 0<br />
clean<br />
create part pri size=30000</em> (for 30GB, change as necessary)<br />
<em>ass letter=c<br />
format fs=ntfs label=XP quick<br />
act<br />
exit</em></p>
<p>6. Next you need to insert the USB drive with your WIM image on. And we need to go back into <em>DISKPART</em>. You need to assign a letter to your partition on the drive. So do this</p>
<p style="padding-left: 30px;">list disk<br />
<em>sel dis 1</em> (confirm disk number from list disk command)<br />
<em>list vol</em><br />
<em>sel vol 3</em> (in my case, my partition on the drive was 3)<br />
<em>ass letter=m<br />
exit</em></p>
<p>7. Back at the command prompt, you can now begin applying the WIM to your VM. Type the following command, inserting your own wim file name where I put in filename.wim<br />
<em>imagex  /apply m:\filename.wim 1 c: /verify</em></p>
<p>The variables for this are of course your wim file name, the destination drive should usually be C:, and the &#8220;1&#8243; is the index number on your wim. This is likely to be 1 but if you are unsure or have issues, refer to the <a href="http://technet.microsoft.com/en-us/library/cc722145.aspx">Microsoft Support</a> pages.</p>
<p>Then, give it about 10 minutes to apply your WIM and once done, type &#8220;exit&#8221; to reboot the system. You will probably need to shutdown the VM when it reboots, to allow you to remove the ISO image which will be attached to the VM as a physical disc. Once that is out, reboot and make sure you&#8217;re plugged into your company network if needed, and that the networking mode is Bridged. This will give your VM a physical IP address from the DHCP server, rather than using NAT routing to reuse the IP address of your Mac.</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2009/03/howto-install-a-wim-image-in-vmware-fusion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>All Time Faves Playlist</title>
		<link>http://dombarnes.com/2009/03/all-time-faves-playlist/</link>
		<comments>http://dombarnes.com/2009/03/all-time-faves-playlist/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 20:45:53 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[playlist]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=243</guid>
		<description><![CDATA[During my job I make a lot of trips to Oxford on a bi-weekly basis and it was only this week that I actually bothered to put on my &#8220;All Time Faves&#8221; playlist to listen to. And I thought I would share it here. The history of this actually goes back to an iPod leaflet [...]]]></description>
			<content:encoded><![CDATA[<p>During my job I make a lot of trips to Oxford on a bi-weekly basis and it was only this week that I actually bothered to put on my &#8220;All Time Faves&#8221; playlist to listen to. And I thought I would share it here.</p>
<p>The history of this actually goes back to an iPod leaflet I picked up in John Lewis in Norwich one time while walking past their Apple selection. On their screenshot of iTunes, they had a &#8220;All Time Faves&#8221; playlist, which I stole and adjusted to create this.<br />
iTunes links are provided where available<br />
<font size=-1><br />
1. Alanis Morissette &#8211; Hands Clean <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=45435007&amp;id=45434999&amp;s=143444">[iTunes]</a><br />
2. Avril Lavigne &#8211; Don’t Tell Me <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=281058654&amp;id=281058642&amp;s=143444">[iTunes]</a><br />
3. Barenaked Ladies &#8211; Aluminum <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=3063725&amp;id=3064016&amp;s=143444">[iTunes]</a><br />
4. Blink 182 &#8211; Here’s Your Letter <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=14190130&amp;id=14190125&amp;s=143444">[iTunes]</a><br />
5.Box Car Racer &#8211; There Is <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=14924667&amp;id=14924629&amp;s=143444">[iTunes]</a><br />
6. Busted &#8211; Meet You There <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=14190571&amp;id=14190527&amp;s=143444">[iTunes]</a><br />
7. The Calling &#8211; Adrienne <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=271870175&amp;id=271870087&amp;s=143444">[iTunes]</a><br />
8. Dashboard Confessional &#8211; Hands Down <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=13125588&amp;id=13125496&amp;s=143444">[iTunes]</a><br />
9. Dashboard Prophets &#8211; All You Want<br />
10. Death Cab For Cutie &#8211; Summer Skin <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=79018929&amp;id=79018972&amp;s=143444">[iTunes]</a><br />
11. Dido &#8211; White Flag <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=260541480&amp;id=260541465&amp;s=143444">[iTunes]</a><br />
12. Fastball &#8211; Fire Escape<br />
13. Goo Goo Dolls &#8211; Slide <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=175276&amp;id=175302&amp;s=143444">[iTunes]</a><br />
14. Guster &#8211; Amsterdam <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=1586598&amp;id=1586602&amp;s=143444">[iTunes]</a><br />
15. Hoobastank &#8211; The Reason <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=41773064&amp;id=41773062&amp;s=143444">[iTunes]</a><br />
16. Incubus &#8211; Talk Shows On Mute <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=204113227&amp;id=204113115&amp;s=143444">[iTunes]</a><br />
17. Less Than Jake &#8211; Look What Happened <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=209855819&amp;id=209855746&amp;s=143444">[iTunes]</a><br />
18. Lostprophets &#8211; Last Summer <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=206816788&amp;id=206816693&amp;s=143444">[iTunes]</a><br />
19. Mark Owen &#8211; Four Minute Warning <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=15066546&amp;id=15066544&amp;s=143444">[iTunes]</a><br />
20. Michelle Branch &#8211; All You Wanted <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=1093083&amp;id=1093087&amp;s=143444">[iTunes]</a><br />
21. OutKast &#8211; Hey Ya <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=281430764&amp;id=281430653&amp;s=143444">[iTunes]</a><br />
22. Robbie Williams &#8211; Feel <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=15784346&amp;id=15784516&amp;s=143444">[iTunes]</a><br />
23. Ryan Adams &#8211; New York, New York <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=14183865&amp;id=14183854&amp;s=143444">[iTunes]</a><br />
24. Semisonic &#8211; Secret Smile <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=14183865&amp;id=14183854&amp;s=143444">[iTunes]</a><br />
25. Smashing Pumpkins &#8211; 1979 <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=55265111&amp;id=55265153&amp;s=143444">[iTunes]</a><br />
26. Sponge &#8211; All This And Nothing<br />
27. The Starting Line &#8211; Best Of Me <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=14788151&amp;id=14788137&amp;s=143444">[iTunes]</a><br />
28. Steriogram &#8211; Walkie Talkie Man <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=24317084&amp;id=24317106&amp;s=143444">[iTunes]</a><br />
29. Superfine &#8211; Betsy Went Flying <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=4465022&amp;id=4465039&amp;s=143444">[iTunes]</a><br />
30. Tenacious D &#8211; Tribute <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=202856156&amp;id=202855977&amp;s=143444">[iTunes]</a><br />
31. U2 &#8211; Beautiful Day <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=14888278&amp;id=14888276&amp;s=143444">[iTunes]</a><br />
32. The Vines &#8211; Ride <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=16394452&amp;id=16394598&amp;s=143444">[iTunes]</a><br />
</font></p>
<p>You can now get the whole playlist (minus a few tracks) in an iMix on iTunes. <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewIMix?id=308901600">Get It Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2009/03/all-time-faves-playlist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boxee vs Plex</title>
		<link>http://dombarnes.com/2009/03/boxee-vs-plex/</link>
		<comments>http://dombarnes.com/2009/03/boxee-vs-plex/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 21:37:27 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[macosx]]></category>
		<category><![CDATA[tv]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[boxee]]></category>
		<category><![CDATA[media centre]]></category>
		<category><![CDATA[osxbmc]]></category>
		<category><![CDATA[plex]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=228</guid>
		<description><![CDATA[When it comes to home media centres, there&#8217;s no shortage of options. You have Windows Media Centre, AppleTV, MythTV, XBox, and more. If you&#8217;re looking at something on the Mac platform, you&#8217;ve got plenty of choices. All new Mac&#8217;s come with Front Row, that gives you remote controlled access to your iTunes library of music, [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to home media centres, there&#8217;s no shortage of options. You have Windows Media Centre, AppleTV, MythTV, XBox, and more. If you&#8217;re looking at something on the Mac platform, you&#8217;ve got plenty of choices. All new Mac&#8217;s come with Front Row, that gives you remote controlled access to your iTunes library of music, videos, podcasts, as well as access to iPhoto pictures. But what about if you have non-iTunes suitable content or you want to use some of the online streaming services? Front Row just won&#8217;t cut it.<span id="more-228"></span><br />
<br />`<br />
<img src="http://dombarnes.com/wordpress/wp-content/uploads/2009/03/boxee1.jpg" alt="boxee1" title="boxee1" class="alignnone size-full wp-image-229" /><br />
<br />
<img src="http://dombarnes.com/wordpress/wp-content/uploads/2009/03/plex2.jpg" alt="plex2" title="plex2" class="alignnone size-full wp-image-232" /><br />
<br />
The XBox Media Centre project has made its way on to OS X, commonly referred to as OSXBMC, and from it, sprouted many forks. I first heard about this months ago on <a href="http://lifehacker.com">Lifehacker.com</a>, and checked out Plex. It boasted a nice interface, access to video stored in any folders or on any volumes, TV info lookup and more. I tried it but it didn&#8217;t work for me. </p>
<p>A few months back, Boxee stepped forward and seemed to take the stage. It offered the same XBMC features, folder scanning, internet lookup on movies, TV shows, as well as a wide range of streaming sources including Hulu, iPlayer, ABC, MTV, Comedy Central amongst them. They also offered the ability to add friends, so you can see what they&#8217;ve watched recently. Boxee has a clean interface, with the main menu accessible at any time, on the left, and display and sorting options on the right. Possibly its key winner in the field was the AppleTV support. With the help of a patch stick, you could load Boxee on your AppleTV and watch streaming internet TV at any time. This was a big selling point for many.<br />
Being in the UK, and unable to access most of the content, it was a real benefit when the BBC iPlayer was added to the streaming sites.<br />
<br /><img src="http://dombarnes.com/wordpress/wp-content/uploads/2009/03/boxee2.jpg" alt="boxee2" title="boxee2" class="aligncenter size-full wp-image-230" /><br />
Last week Plex&#8217;s name came up a bit more on the internet, especially on Twitter, so I thought I&#8217;d give it a try. After downloading and running the new beta, I added my Movies folder and let it do its work. Unfortunately for me, it failed at the first hurdle. It picked up half of my TV shows, and presented all my films as &#8220;Film Showcase&#8221;. This was a step further than it managed last time I had tried it but still not working status. I gave it a chance, cleared the Application Support folder and reran it. After adding back the video source folder (I think here I may have messed up and configured this incorrectly). Checking the TV section revealed almost all my TV shows, as well as every episode I had for them. This was getting better. Enabling Fan Art lets Plex download some really good banners and posters to show you what program you&#8217;re looking at. Drilling down further into a TV show gives you full screen artwork for the show, and, as a very nice touch, plays the TV show intro in the background. It is these small features that sold me on Plex.<br />
<br /><img src="http://dombarnes.com/wordpress/wp-content/uploads/2009/03/plex1.jpg" alt="plex1" title="plex1" class="aligncenter size-full wp-image-231" /><br />
As I said above, Plex didn&#8217;t pick up on all my shows, but holding the Menu button button, or pressing I brings up a menu that allows you to do a forced rescan of folders and that seemed to sort my issue. All my shows were now up on screen for me to browse. Plex also tracks what shows you have and haven&#8217;t watched so you can be sure you&#8217;ve seen every episode of 24. Plex also has its own App store, allowing you to add more plugins as they are added. For me, I decided to add a <a href="http://live.twit.tv">TWiT Live</a> plugin so I can watch Leo&#8217;s live stream.</p>
<p>While I do sometimes use Plex to watch TV on my Macbook Pro itself, I usually hook it up to my TV for a more pleasant and larger Media Centre experience. Even going through DVI to S-Video and into a standard def TV, Plex looks gorgeous (as does Boxee but the Plex UI wins here) I can only imagine how much nicer it would look on an HDTV. So rather than buying an AppleTV, why not pick up a Mac Mini, throw it under your TV and enjoy a richer media centre experience? </p>
<p><a href="http://www.plexapp.com/">Plex Homepage</a><br />
<a href="http://boxee.tv">Boxee Homepage</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2009/03/boxee-vs-plex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Seasons</title>
		<link>http://dombarnes.com/2008/09/new-seasons/</link>
		<comments>http://dombarnes.com/2008/09/new-seasons/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 13:46:49 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[tv]]></category>
		<category><![CDATA[adverts]]></category>
		<category><![CDATA[cbs]]></category>
		<category><![CDATA[numb3rs]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=194</guid>
		<description><![CDATA[Boy do I watch a lot of TV. Yet surprisingly not much is actually on the TV. I&#8217;m a big fan of lots of the American dramas, and have watched Dawson&#8217;s Creek, The OC, Gilmore Girls, and others come and go. But I always like this time of year, because all the new seasons start. [...]]]></description>
			<content:encoded><![CDATA[<p>Boy do I watch a lot of TV. Yet surprisingly not much is actually on the TV. I&#8217;m a big fan of lots of the American dramas, and have watched Dawson&#8217;s Creek, The OC, Gilmore Girls, and others come and go. But I always like this time of year, because all the new seasons start. So, for the next 8 months (roughly) I will be watching:</p>
<p>One Tree Hill (recent convert), Smallville, Heroes,  Big Bang Theory, Numb3rs, Chuck, and beginning in Janurary, Lost. </p>
<p>However I really just wanted to share this great advert which appeals to two of my interests. Can you guess which?</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/EVSFzswY3XY&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/EVSFzswY3XY&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>And here is the second one. (and yes I know the ads aren&#8217;t current but hey, who cares)</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/ZwURPCvrtks&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/ZwURPCvrtks&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2008/09/new-seasons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ultimate Macbook Pro Upgrade</title>
		<link>http://dombarnes.com/2008/08/ultimate-macbook-pro-upgrade/</link>
		<comments>http://dombarnes.com/2008/08/ultimate-macbook-pro-upgrade/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 18:43:20 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[macbookpro]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=187</guid>
		<description><![CDATA[As you may have read last year, I got a new Macbook Pro. With it came 2GB RAM, and a 120GB hard drive. Needless to say, that space quickly got used up, and I started spending a lot of time deleting iTunes content, and backing up stuff to DVD&#8217;s and my MyBook. I played with [...]]]></description>
			<content:encoded><![CDATA[<p>As you may have read last year, I got a new Macbook Pro. With it came 2GB RAM, and a 120GB hard drive.</p>
<p>Needless to say, that space quickly got used up, and I started spending a lot of time deleting iTunes content, and backing up stuff to DVD&#8217;s and my MyBook. I played with the idea of upgrading the drive a lot, but always held back because I have AppleCare and there is a chance it could void my warranty, or cause problems if I ever have to take this machine in. </p>
<p>But this isn&#8217;t a post of regrets, its a post of action. The action being I finally took the plunge. The price was right so I ordered a <a href="http://www.ebuyer.com/product/136790">Western Digital 5400rpm 320GB laptop drive</a> and it arrived swiftly last week. I really couldn&#8217;t wait so I immediately formatted it, and started to clone my current drive over using SuperDuper. Three hours later and it was ready. I did a quick check and booted from it via USB. All was good so I was ready for the replacement.</p>
<p>I followed some <a href="http://www.ifixit.com/Guide/Mac/MacBook-Pro-15-Inch-Core-2-Duo/Hard-Drive-Replacement/115/10/">instructions</a> from iFixit.com and got to work. The whole process took about 90 minutes in total, and that was being very cautious and taking it slowly.</p>
<p>So what gems of advice can I pass on? Screws! The biggest issue is all the screws. In total, there are 8 sets of screws from around the laptop. I had a small screw box/pill box that I used to keep each type apart, and put them in the pot in the order I took them out. This made it easy to put it back together.<br />
I would also make sure you put down a towel or cloth to lay the laptop on. You&#8217;ll be moving it around to access all the screws and the last thing you want is scratches when you&#8217;re done.</p>
<p>The last bit of trouble I had was removing the hard drive cable from the drive itself. Its a thin plastic cable that is glued to the top of the drive. In an ideal world you have a spudger, a small plastic tool you can use to separate the cable from the drive. I had none so I had to make do with a business card and then a pen lid when the card got too messed up. So before you delve in, make sure you have something to hand. And don&#8217;t be too worried about pulling the cable with your hands if you need to. Its fairly robust so will probably come off in your hand if you&#8217;re slow and careful.</p>
<p>That was the difficult part. I also bought <a href="http://www.play.com/PC/PCs/4-/5622784/Corsair-VSA4GSDSKIT667C4-Mac-Memory-Memory-4-GB-SO-DIMM-200-pin-DDR-2-667-MHz-PC2-5300-Low-Latency-Dual-Channel-Kit/Product.html">4GB RAM</a> from Play.com as <a href="http://www.channelflip.com/2008/06/25/mac-laptop-memory-boost/">recommended</a> by <a href="http://www.wilharris.co.uk">WIl Harris</a> on <a href="http://channelflip.com">ChannelFlip.com</a>. Replacing this was easy as removing the battery and taking out 3 screws. Its possibly the ONLY user replaceable part of a Macbook Pro. And that is what perplexes me. Why does the high end machine have to be so difficult to replace a hard drive on? You&#8217;re paying more and are likely to be a bit more technically minded, so why is it such a pain and why does it void your warranty? That I will never understand.</p>
<p>But the final story is that I have a 2.2GHz C2D Macbook Pro with the biggest hard drive I can get, and the most RAM it can take. Its a true powerhouse to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2008/08/ultimate-macbook-pro-upgrade/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Posting from my iPhone</title>
		<link>http://dombarnes.com/2008/07/posting-from-my-iphone/</link>
		<comments>http://dombarnes.com/2008/07/posting-from-my-iphone/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 13:54:43 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://dombarnes.com/2008/07/posting-from-my-iphone/</guid>
		<description><![CDATA[Just a quick post here. If you have an iPhone, and have updated to the 2.0 software, be sure to checkout the new WordPress application. It&#8217;s a lovely little app for blogging on the go. It supports wordpress.com and self hosted domains and will store your drafts locally if you don&#8217;t have time to finish [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick post here. If you have an iPhone, and have updated to the 2.0 software, be sure to checkout the new WordPress application. It&#8217;s a lovely little app for blogging on the go.<br />
It supports wordpress.com and self hosted domains and will store your drafts locally if you don&#8217;t have time to finish them.<br />
You can easily add multiple blogs so now there is no excuse for me not to post<br />
Wordpress for iPhone is free from the App Store.</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2008/07/posting-from-my-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOWTO: Install WiFi Certificates on your iPhone</title>
		<link>http://dombarnes.com/2008/07/howto-install-wifi-certificates-on-your-iphone/</link>
		<comments>http://dombarnes.com/2008/07/howto-install-wifi-certificates-on-your-iphone/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 21:35:45 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[certificate]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=170</guid>
		<description><![CDATA[Update (9 December 2011) When I first published this post in 2008 (still popular, 3 years later with 6000+ views to date), it seemed like a unknown trick for a small majority of users, usually in the enterprise. It was written with iOS (formerly iPhone OS) 2.0 which has since been superseded by a few [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update (9 December 2011)</strong></p>
<p>When I first published this post in 2008 (still popular, 3 years later with 6000+ views to date), it seemed like a unknown trick for a small majority of users, usually in the enterprise.<br />
It was written with iOS (formerly iPhone OS) 2.0 which has since been superseded by a few major updates.</p>
<p>If you are running iOS 4.0 or higher (and you really should be) then installing certificates is so much easier now. All you need to do now is put the certificate in an email to yourself or your users, or stick it on the web somewhere. Then either tap to open the certificate in an email, or click the link to open it in MobileSafari and you should be prompted by the OS to install the certificate.</p>
<p>If you&#8217;re looking to do this in an enterprise environment, you may still want to use the iPCU, but you really should take a look at Profile Manager, the Mobile Device Management feature in Lion Server (it costs £35.99 from the <a href="http://itunes.apple.com/gb/app/os-x-lion-server/id444376097?mt=12">App Store</a>)</p>
<hr />
<p>So I now work where they employ the use of certificates for wifi security, and I want to use the wifi on my iPhone since the data connection sucks. But how?</p>
<p>Well with iPhone 2.0 software, there is support for certificates. But how do you get it on your phone?</p>
<p>Well&#8230;</p>
<p>1. Go to Apple&#8217;s <a href="http://www.apple.com/support/iphone/enterprise/">Enterprise Support</a> page and download the iPhone Configuration Tool. Install</p>
<p>2. Open up the Config tool from your Utilities folder.</p>
<p>3. Select Configuration Profiles and click New</p>
<p>4. Fill in the details on the General Tab.</p>
<p>5. Click Credentials. and click the plus sign, and navigate to the Certificate file (in my case a .cer file). Click OK.</p>
<p>6. Check the details look correct, and give it a name.</p>
<p>And thats it! Done.</p>
<p>Well not quite. You need to install it on your iphone. You have two/three options but the third involves Mac OS X Server which many personal users won&#8217;t have. So your two options are host a file on a website somewhere, or email it to yourself. If you want to host it, click the Export button, save the file to disk, and then upload it somewhere. Then navigate to that file online and it should ask you to install.</p>
<p>The second easier option is to email it to yourself. So click Share, and wait for Mail.app to open a new mail and punch in an email address you can access on your iPhone. Click send. Wait (or go and check your mail).</p>
<p>Then in the email, click the file, and you will be asked to install the file. Do so and bingo. Success. Now go test it and make sure it works!</p>
<p>Update: I have tested this at work, and it worked perfectly. You have to make sure you enter your username as Domain\username and your password as normal or it won&#8217;t authenticate. So now I can use the internet connection at work. Only thing is that IMAP and POP3 ports are blocked so can&#8217;t use the Mail.app to check them, but everything else works a treat!</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2008/07/howto-install-wifi-certificates-on-your-iphone/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Now for your iPhone</title>
		<link>http://dombarnes.com/2008/07/now-for-your-iphone/</link>
		<comments>http://dombarnes.com/2008/07/now-for-your-iphone/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 18:41:36 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=169</guid>
		<description><![CDATA[If you own and iPhone, or iPod Touch, or just fancy playing with the Develop menu in Safari, then you may notice that DomBarnes.com now looks a bit different on your iPhone. Thanks to the iWPhone plugin from ContentRobot, you can now view this website in a easier version for your device. Let me know [...]]]></description>
			<content:encoded><![CDATA[<p>If you own and iPhone, or iPod Touch, or just fancy playing with the Develop menu in Safari, then you may notice that DomBarnes.com now looks a bit different on your iPhone. Thanks to the iWPhone plugin from <a href="http://iwphone.contentrobot.com/">ContentRobot</a>, you can now view this website in a easier version for your device.</p>
<p>Let me know if you like it, or prefer reading the full version.</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2008/07/now-for-your-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review: Elgato EyeTV DTT USB Stick</title>
		<link>http://dombarnes.com/2008/07/review-elgato-eyetv/</link>
		<comments>http://dombarnes.com/2008/07/review-elgato-eyetv/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 21:30:21 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[gagdets]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[elgato]]></category>
		<category><![CDATA[eyetv]]></category>
		<category><![CDATA[freeview]]></category>
		<category><![CDATA[pvr]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=166</guid>
		<description><![CDATA[As you dear readers will know, I had some recent ventures into the world of PVR&#8217;s, and specifically, MythTV, and you may have read about the failures I came across. Well, after a recent visit to the Apple Store in Birmingham, I made a choice, one which cost me £40! I bought an Elgato EyeTV [...]]]></description>
			<content:encoded><![CDATA[<p>As you dear readers will know, I had some <a href="http://dombarnes.com/2008/03/mythtv-day-1/">recent</a> <a href="http://dombarnes.com/2008/03/mythtv-day-23/">ventures</a> <a href="http://dombarnes.com/2008/03/mythtv-day-34/">into</a> the world of PVR&#8217;s, and specifically, MythTV, and you may have read about the <a href="http://dombarnes.com/2008/04/mythtv-wrapup/">failures</a> I came across.</p>
<p>Well, after a recent visit to the Apple Store in Birmingham, I made a choice, one which cost me £40! I bought an <a href="http://www.elgato.com/elgato/int/mainmenu/products/tuner/DTT/product1.en.html">Elgato EyeTV DTT USB Stick</a>. What is it? Its a TV receiver built into a USB stick, about the size of those wireless adapters. Plug it into your laptop or desktop, hook up an antenna, either roof top aerial or the mini-aerial included in the box, and very soon you&#8217;ll be watching TV.</p>
<p>The software, <a href="http://www.elgato.com/eyeTV/index.html">EyeTV</a>, which is compatible with many other PVR devices, is simple to install. You&#8217;re asked to sign up for <a href="http://www.tvtv.com">tvtv.com</a> which provides TV listings, and during the setup you do the initial tuning. Clicking the Auto-Tune button does a quick scan and picks up any TV and Radio signals in your area (you can also do an exhaustive scan which takes longer but can pick up missing stations).</p>
<p>To record, either press the Record button on the controller while watching any show, or click a programme in the Guide, and click Add Schedule. When you&#8217;ve recorded a show, you can play it back on your Mac, or export to <a href="http://www.apple.com/iphone">iPhone</a> version, <a href="http://www.apple.com/appletv">AppleTV</a> version or send it to Toast to burn to a DVD. Another nice feature is the Wifi access &#8211; you can set programmes to automatically convert to iPhone versions for Wifi viewing, so if you&#8217;ve got your mac on all the time, you can watch those shows, streaming over Wifi from your iPhone or iPod Touch, which is done using the built in web server in Mac OS X.</p>
<p>Recordings come in MPEG-2 files, wrapped in an EyeTV wrapper, which includes thumbnails and info on the recordings. You&#8217;ll use about 2.2GB for an hour&#8217;s recording. Exporting will obviously reduce that file size, so if you are low on space, it might be good to export to AppleTV for storage. </p>
<p>A exhaustive scan of channels picked up about 64 channels in total (radio and TV), all coming from the Sutton Coldfield transmitter. Comparing that to my Virgin Freeview box, and there are some missing. Specifically, I could not pick up E4+1, Dave or Virgin 1, despite being able to get them on the freeview box. This is probably just differences between the lowest signal strength each device needs to get a signal. </p>
<p>Not all channels picked up listings from tvtv.com &#8211; those listed in blue have no listing, but you can manually select these channels from a search list, and then will be able to get listings. Those that don&#8217;t have them at all can be picked up from the signal transmission, and you select DVB for those channels to get the listings. </p>
<p>For me, the killer features are the Wifi Access, and the smooth integration into Front Row. If you have the EyeTV software running, and grab your Apple Remote, you can switch between Front Row and EyeTV by holding the Play button. From there you have access to almost all features, scrolling through channels, and setting up recordings, using the Menu. Then you can quickly switch back to Front Row for your Podcasts or Movies.</p>
<p>For 95% of my watching and recording TV, this is perfect. If I had a spare Mac MIni, i would turn it into a<a href="http://www.mmug.org.uk/event/mac-mini-media-centre" target="_blank"> media centre</a>, and use the EyeTV as my main Freeview box. Having full control over TV, movies, podcasts, and purchased TV from iTunes through one small remote would be lovely, as would the Live TV functions (EyeTV records what you watch as you watch it, allowing you to pause, rewind and replay live tv. You can limit the buffer used for this in the Prefs).</p>
<p>Overall, the EyeTV was a great purchase, Its functional, small enough to throw in my bag when travelling, and I can see it staying in regular use, at least until we move and get Virgin+ or Sky+</p>
<p>Notes: I purchased the Digital only version, there is a Analog+Digital version at a higher price. There are also dual tuners, allowing you to have picture in picture, or record one channel and watch another. </p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2008/07/review-elgato-eyetv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

