<?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>Pixelbox &#187; Mac OS X</title>
	<atom:link href="http://www.pixelbox.net/category/mac-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pixelbox.net</link>
	<description>Pixelbox, technology development and photography.</description>
	<lastBuildDate>Thu, 08 Apr 2010 16:35:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Image reflection with jQuery</title>
		<link>http://www.pixelbox.net/2008/09/16/image-reflection-with-jquery/</link>
		<comments>http://www.pixelbox.net/2008/09/16/image-reflection-with-jquery/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 15:03:23 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.pixelbox.net/?p=305</guid>
		<description><![CDATA[Some code examples to achieve JavaScript image reflections using JQuery.]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.pixelbox.net/demos/reflect/'><img src="http://www.pixelbox.net/wp-content/uploads/2008/09/picture-1.png" alt="JavaScript reflection example" title="jsReflection" width="242" height="115" class="alignnone size-full wp-image-306" /></a>
<p>NOTE: This isn&#8217;t working in the latest releases of browsers. Please let me know if you have updated or know of maintained versions of this code I can link to.</p>
<p>
I have often used JavaScript to add reflections to images. Ideally this would be done server side, but often for quick presentations or mock ups it saves a lot of time.
</p>
<p>
I have previously used <a href="http://cow.neondragon.net/stuff/reflection/">Reflection.js</a>, which uses prototype. Since I now normally use jQuery I looked for a <a href="http://plugins.jquery.com/project/reflect">jQuery version of reflection</a>, which I found <a href="http://plugins.jquery.com/project/reflect">here</a>.
</p>
<p>
There is a big problem with the code though. If the images haven&#8217;t loaded then the reflection fails. Most of the time if you refresh the page it will work (thanks caching), but that&#8217;s not idea.
</p>
<p>
<del>I have written a work around until the plugin is updated. The work around will run and check each image with the reflect class to see if it has finished loading (using the handy .complete). If it hasn&#8217;t it sets a flag to retry after a time out, if it has then we call the reflect function on it, and then remove the reflect class, so we don&#8217;t check it again next time.</del> <a href="http://www.lyingonthecovers.net/">Tom</a> improved this by using the .load function which removes the need for the time out, nice work, I have updated the examples.  This works really well, especially when you have lots of large images, or users on slow connections. The code will also add the reflection to each image as it loads, rather than waiting for all of them to load.
</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
	$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;img.reflect&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">load</span><span style="color: #009900;">&#40;</span> 
				<span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span> 
					$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">reflect</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>height<span style="color: #339933;">:</span> <span style="color: #CC0000;">0.3</span><span style="color: #339933;">,</span> opacity<span style="color: #339933;">:</span> <span style="color: #CC0000;">0.6</span><span style="color: #009900;">&#125;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #009900;">&#125;</span> 
			<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p> Please let me know if you have any advice or improvements!</p>
<p>
<a href="http://www.pixelbox.net/demos/reflect/">You can see a jQuery Reflection work around example here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixelbox.net/2008/09/16/image-reflection-with-jquery/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Time Capsule and Time Machine</title>
		<link>http://www.pixelbox.net/2008/03/30/time-capsule-and-time-machine/</link>
		<comments>http://www.pixelbox.net/2008/03/30/time-capsule-and-time-machine/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 11:00:22 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Time Capsule]]></category>
		<category><![CDATA[Time Machine]]></category>

		<guid isPermaLink="false">http://www.pixelbox.net/?p=261</guid>
		<description><![CDATA[On Friday whilst getting my iPhone replaced in the Apple store I picked up a 500GB version of Time Capsule. Time Capsule is Apples solution to backing up you computers via WiFi. The unit contains a 500GB hard drive as well as a 802.11n wireless access point. The system acts like a mini server, letting [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pixelbox.net/wp-content/uploads/2008/03/time_capsule_front_back.jpg"><img class="alignleft size-medium wp-image-262" title="time_capsule_front_back" src="http://www.pixelbox.net/wp-content/uploads/2008/03/time_capsule_front_back-300x169.jpg" alt="Apples time capsule" width="300" height="169" /></a></p>
<p>
On Friday whilst getting my iPhone replaced in the Apple store I picked up a 500GB version of Time Capsule. Time Capsule is Apples solution to backing up you computers via WiFi.
</p>
<p>
The unit contains a 500GB hard drive as well as a 802.11n wireless access point. The system acts like a mini server, letting you see the hard drive over the network from any of your macs. You can also plug in another USB hard drive, or printer and see them too.
</p>
<p>
The system set up was a breeze, I plugged in the box, connected it to my router via it&#8217;s network port and that&#8217;s it. I connected to the Time Capsule via WiFi and then use the Airport admin utility to set it up as I wanted. Using the wizard I managed to use the Time Capsule as a bridge to my existing network, allowing me to have an 802.11n network for my MacBookPro and keep my old wireless router for my non 802.11n devices.
</p>
<p>
The Time Machine set up was also very easy, there isn&#8217;t much to do, although I removed A LOT of the stuff it backs up as default (such as system files and applications), to focus on documents and media and work. The whole lot (about 68GB) transferred wirelessly in roughly 3-4 hours! It now backs up hourly every day (that its on and connected to the network), daily for a week, and weekly until the disk runs out of space, warning you when it deletes old backups. I have also tested using the Time Capsule disk for files, as well as another USB disk, and it all works splendidly! The only minor annoyance I have is the huge green light on the front, not sure it needs to be that big&#8230;
</p>
<p>
I would thoroughly recommend Time Capsule, to anyone wanting a painless back up solution although I am yet to use Time Machine to recover anything, but it looks very nice ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixelbox.net/2008/03/30/time-capsule-and-time-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom icons for your iPhone web clips</title>
		<link>http://www.pixelbox.net/2008/01/17/custom-icons-for-your-iphone-web-clips/</link>
		<comments>http://www.pixelbox.net/2008/01/17/custom-icons-for-your-iphone-web-clips/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 16:17:03 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.pixelbox.net/2008/01/17/custom-icons-for-your-iphone-web-clips/</guid>
		<description><![CDATA[Tuesday saw the release of the iPhone software version 1.1.3, and amongst the new features it were web clips on your home screen. This allows you to save bookmarks to websites on your home screen, for quick access. By default the icon used for a web clip will be a screen shot of the page. [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.pixelbox.net/wp-content/uploads/2008/01/photo.thumbnail.jpg' alt='iPhone' />
<p>
Tuesday saw the release of the iPhone software version 1.1.3, and amongst the new features it were web clips on your home screen. This allows you to save bookmarks to websites on your home screen, for quick access.
</p>
<p>
By default the icon used for a web clip will be a screen shot of the page. This is great, but it doesn&#8217;t look nice and makes it hard to tell at a glance, one web clip from another. <a href="http://vjarmy.com/" title="Dan Dickinson">Dan Dickinson</a> blogged about how you can <a href="http://vjarmy.com/archives/2008/01/howto_iphone_webclip_icons.php">add custom touch icons to your website</a> by adding a link tag into the head of your HTML.
</p>
<p>
This is great and many sites have already added custom icons, (<a href="http://www.pownce.com">pownce</a>, <a href="http://www.google.com">google</a>, <a href="http://www.twitter.com">twitter</a>) but there are some that don&#8217;t (as of yet) such as Google reader.
</p>
<p>
So up popped <a href="http://allinthehead.com">Drew</a> with a <a href="http://en.wikipedia.org/wiki/Bookmarklet">bookmarklet</a> to<a href="http://allinthehead.com/retro/319/how-to-set-an-apple-touch-icon-for-any-site?commented=0#txpCommentInputForm"> add custom touch icons to your iPhone&#8217;s home screen</a>. It works by adding the link tag into the head of the document after you specify a path to the image, clever stuff! So all you have to do it host your custom icons, or use other peoples and away you go.
</p>
<p>
I am not sure how it works on replacing images if they are already there (the twitter one sucks). Lots of people are starting to create their own too. <a href="http://playgroundblues.com/posts/2008/jan/15/iphone-bookmark-iconage/">Nathan</a> recommends creating icons at 158×158px to get a crisp look, <a href="http://hicksdesign.co.uk">Mr. Hicks</a> has a nice l<a href="http://hicksdesign.co.uk/else/greader/apple-touch-icon.png">ittle RSS icon for Google Reader</a> and <a href="http://www.kapowaz.net">Ben Darlow</a> has <a href="http://www.kapowaz.net/touchicons/">a host of icons</a> including a nice twitter (twitterific) one.
</p>
<h4>Step by Step</h4>
<ol>
<li>First drag this link to your safari bookmark bar. <a href="javascript:var%20s=document.createElement('link');s.setAttribute('rel',%20'apple-touch-icon');s.setAttribute('href',prompt('Touch%20icon%20URL?','http://'));document.getElementsByTagName('head')%5B0%5D.appendChild(s);void(s);">Set touch icon</a> or <a href="javascript:var%20r=document.getElementsByTagName('link');for(var%20i=0;i<r.length;i++){document.getElementsByTagName('head')%5B0%5D.removeChild(r[0]);}void(r);void(i);var%20s=document.createElement('link');s.setAttribute('rel',%20'apple-touch-icon');s.setAttribute('href',prompt('Touch%20icon%20URL?','http://'));document.getElementsByTagName('head')%5B0%5D.appendChild(s);void(s);">Override Touch Icon</a></li>
<li>Sync your iPhone (with bookmark sync turned on)</li>
<li>Browse to a website you want to make a web clip of through safari on your iPhone</li>
<li>Open your bookmarks and find the one you just added to bookmark bar</li>
<li>Enter the URL of an icon/image you would like to use</li>
<li>Hit OK, then click the + at the bottom of the screen</li>
<li>Select, &#8220;Add to Home Screen&#8221; and wait for the icon to appear</li>
<li>Enter a name and hit, &#8220;Add&#8221;</li>
</ol>
<h4>UPDATE:</h4>
<p>I have hacked and updated <a href="http://allinthehead.com">Drew</a>&#8216;s bookmarklet to override sites with existing Touch Icons: <a href="javascript:var%20r=document.getElementsByTagName('link');for(var%20i=0;i<r.length;i++){document.getElementsByTagName('head')%5B0%5D.removeChild(r[0]);}void(r);void(i);var%20s=document.createElement('link');s.setAttribute('rel',%20'apple-touch-icon');s.setAttribute('href',prompt('Touch%20icon%20URL?','http://'));document.getElementsByTagName('head')%5B0%5D.appendChild(s);void(s);">Override Touch Icon</a></p>
<p>It&#8217;s a bit dirty as it removes all link elements in the head, however this shouldn&#8217;t be a problems as you shouldn&#8217;t need them after the page has loaded and this is a one off for setting the home screen icon :) Also be sure to wait for the icon to load, can take a while&#8230;</p>
<h4>UPDATE 2:</h4>
<p>Drew has taken my hack and made it a little more efficient and less reckless by just removing link tags with the &#8220;touch icon&#8221;&#8216;s rel attribute, and then breaking when it finds it. It&#8217;s fun learning about bookmarklets, although I am sure there is a better way of writing them than how I was doing it :p</p>
<h4>UPDATE 3:</h4>
<p><a href="http://cameron.io/">Cameron Hunt</a> has updated the bookmarklet even more to give users some of the most commonly icons by default (and make it look slightly nicer). <a href="http://articles.cameron.io/46/friendly-clip-friendly-iphone-web-clip-override">Cameron Hunts&#8217;s Friendly iPhone Web Clip Override</a></p>
<h4>UPDATE 4:</h4>
</p>
<p>Check out <a href="http://iclypso.com/">iclypso</a> for a great source of icons and instructions on how to do it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixelbox.net/2008/01/17/custom-icons-for-your-iphone-web-clips/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Not disappointed</title>
		<link>http://www.pixelbox.net/2007/10/29/not-disappointed/</link>
		<comments>http://www.pixelbox.net/2007/10/29/not-disappointed/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 21:16:14 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.pixelbox.net/2007/10/29/not-disappointed/</guid>
		<description><![CDATA[This weekend saw two of my most anticipated pieces of software released. First was Pro Evolution Soccer 2008, a game I spent many a late night playing at university, and the other Mac OS X Leopard, the latest incarnation of Apples fantastic operating system. Initially I had teething problems with both. Change to something you [...]]]></description>
			<content:encoded><![CDATA[<p>
This weekend saw two of my most anticipated pieces of software released. First was Pro Evolution Soccer 2008, a game I spent many a late night playing at university, and the other Mac OS X Leopard, the latest incarnation of Apples fantastic operating system.
</p>
<p>
Initially I had teething problems with both. Change to something you are so used to is not always easy to take, and with PES2008, as with all new version I struggled to get to grips with the new look and feel, especially as this is the first real version in HD. Have to say improvements in hardware have been felt in graphics as well as AI, the computer is now far more intelligent and frustrating to play on hard. New additions such as diving seem to be quite a skill, and I am yet to get anything than booked for trying!
</p>
<p>
Leopard also had a hard start! I initially got an apple blue screen of death when upgrading, something I later found to be a fault with <a href="http://unsanity.com/haxies/ape/">Application Enhancer</a>, a framework tool that hadn&#8217;t managed to upgrade, or warn it&#8217;s users of the fault!
</p>
<p>
I was relaxed knowing how OS X works, and was assured to know nothing would be tampering with my home folder! I eventually got it working, and it&#8217;s a lovely OS. Spaces is a desktop manager with some usability built in. Being able to keep some applications on all desktops, will stop you skipping back and forth, while stacks make my dock much more organised and smaller.
</p>
<p>
Networking had really been simplified, browsing, controlling and connecting is now a breeze, and iChat&#8217;s screen share makes helping my sister in Scotland a LOT easier!
</p>
<p>
I&#8217;m sure I will find gripes and more great features in both releases, but it&#8217;s great for stuff to live up to their hype, well done to Konami and Apple!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixelbox.net/2007/10/29/not-disappointed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.mac web gallery</title>
		<link>http://www.pixelbox.net/2007/08/15/mac-web-gallery/</link>
		<comments>http://www.pixelbox.net/2007/08/15/mac-web-gallery/#comments</comments>
		<pubDate>Wed, 15 Aug 2007 09:45:15 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.pixelbox.net/2007/08/15/mac-web-gallery/</guid>
		<description><![CDATA[With the latest version of iLife Apple released its new .mac web gallery, a very overdue updated to it&#8217;s .mac service which tries to catch up with the likes of Flickr and Picassa. New features include a host of browsing methods similar to those in Leopard and iLife, and apple have stuck to their no [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.pixelbox.net/wp-content/uploads/2007/08/macgallery.png' title='macgallery.png'><img src='http://www.pixelbox.net/wp-content/uploads/2007/08/macgallery.thumbnail.png' alt='macgallery.png' /></a>
<p>
With the latest version of iLife Apple released its new .mac web gallery, a very overdue updated to it&#8217;s .mac service which tries to catch up with the likes of Flickr and Picassa.
</p>
<p>
New features include a host of browsing methods similar to those in Leopard and iLife, and apple have stuck to their no Flash policy, well at least they have tried.
</p>
<p>
When I saw the keynote I was amazed by the carousel view which looked a bit like the dock or cover flow, and I was intrigued to see how they had done this without using Flash, unfortunately they hadn&#8217;t, and a quick right click confirmed this.
</p>
<p>
The question I guess is why then didn&#8217;t they use flash for the rest of the system. The JavaScript they use is OK but suffers from that spit and polish you get from Adobe. I guess they could argue that it&#8217;s more accessible, which some may disagree with, and it&#8217;s not like a photo gallery really needs to be super that accessible, given that 90% of the content is graphical anyway. There is also the system resource it uses up, firefox starts to struggle after a few minutes on the slide show.
</p>
<p>
However I feel the main reason for the lack of flash IS accessibility, but not in the sense of user accessibility but system accessibility. The iPhone has no flash support, and hence developing the system in Flash would have rendered it useless on their &#8220;internet navigator&#8221;, hardly a great PR stunt.
</p>
<p>
So I guess in the end it came down to having their hands tied, they have done quite a good job without using it, but I would love to see what Apple would get up to if they embraced Flash, and now it&#8217;s going the way of open source, perhaps they will&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixelbox.net/2007/08/15/mac-web-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple smoothy</title>
		<link>http://www.pixelbox.net/2007/06/12/apple-smoothy/</link>
		<comments>http://www.pixelbox.net/2007/06/12/apple-smoothy/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 21:03:44 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.pixelbox.net/2007/06/12/apple-smoothy/</guid>
		<description><![CDATA[I have to say, yesterdays Keynote got me excited, really excited. So I thought rather than spitting and spluttering out excited whimpers of geeky excitement I would sleep on it and post today&#8230; well that and I couldn&#8217;t be assed. So what came out of the WWDC 07? The main focus was Leopard, the iPhone [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://images.apple.com/macosx/leopard/features/images/index_title20070611.png" height="86" width="695" /></p>
<p style="clear: both">I have to say, yesterdays Keynote got me excited, really excited. So I thought rather than spitting and spluttering out excited whimpers of geeky excitement I would sleep on it and post today&#8230; well that and I couldn&#8217;t be assed.</p>
<h5>So what came out of the <acronym title="World Wide Development Conference">WWDC</acronym> 07?</h5>
<p>The main focus was Leopard, the iPhone has take the lime light recently and myself and others have been worried that Apple Computers (inc) was becoming a Jack of all trades. So I was really happy to see the focus back to what I love most about my mac (mag safe aside), the OS.</p>
<p>Now what&#8217;s new that we haven&#8217;t heard about in Leopard already?</p>
<h5><a href="http://www.apple.com/macosx/leopard/features/desktop.html">The desktop</a> in Leopard</h5>
<p>The desktop has a nice clean, the top bar becomes transparent which is kind of nice, in a way is slightly more than the curved top we got last time. The other big thing is the doc, it&#8217;s now <acronym title="Three dimentional">3D</acronym>, has reflections, and has something slightly more exciting, stacks. From what I can tell stacks are like a more advanced folder in the doc, they have some cool animation and should be a really neat way to tidy up your doc, currently I have most of my applications in there, but soon I can just have my applications folder&#8230; phew!</p>
<h5><a href="http://www.apple.com/macosx/leopard/features/finder.html">Finder</a> in Leopard</h5>
<p>The new finder is really interesting, and I mean interesting in a strategy way. Apple have integrated iTunes into an OS, meaning millions of <acronym title="Personal Computer (often used to refer to Windows users">PC</acronym> users suddenly know how to use a Mac&#8230; cunning!</p>
<p>The new sharing looks much better, and if it&#8217;s as easy to use as iTunes I can&#8217;t wait to use it at work! The cover flow looks a bit gimmicky but I can see myself using it, as we all know about how our brains are adapted to recognise images (faces) rather than text.</p>
<h5><a href="http://www.apple.com/macosx/leopard/features/quicklook.html">Quick Look</a></h5>
<p>OK this isn&#8217;t the most interesting thing but I bet it will make previewing (without preview) things a little better, and to be honest I expect I will use it for images and videos more that loading them in QuickTime and Preview.</p>
<h5>64 bit</h5>
<p>32 and 64 bit in one system! Now thats going to see 64 bit processors becoming a lot more viable, as you don&#8217;t have to worry about it!</p>
<h5><a href="http://www.apple.com/macosx/leopard/features/parentalcontrols.html">Parental Controls</a></h5>
<p>(remember I&#8217;m trying to look at the new things) Not having seen this before, it looks cool, well if your trying to keep your kids in check, you can set times for internet browsing and even check what they have been doing (scary) including who they have been chatting to. Now I don&#8217;t have kids but if did I think I would feel a lot safer with them on a Mac rather than a Windows box!</p>
<h5><a href="http://www.apple.com/macosx/leopard/features/bootcamp.html">Boot Camp</a> by default</h5>
<p>This is sure to sway those Windows users who are scared to get a mac, a bit of a fail safe I guess, but my bet is most of them will be using OSX in no time, but also a great way for Apple to boost their hardware sales, especially in the laptop market, where they oh so rock.</p>
<h5><a href="http://www.apple.com/macosx/leopard/features/frontrow.html">Front Row</a></h5>
<p>Finally Apple are giving a front row a make over. It looks like they are taking the Apple TV set up and adding it to the standard OS. This is great for me as I use a mac mini as a media center, and front row just dosen&#8217;t scale!</p>
<h5><a href="http://www.apple.com/macosx/leopard/features/dvdplayer.html">DVD player</a></h5>
<p>The new DVD player looks pro! There are some nice features with screen shots and also some nice new features like zoom!</p>
<h5>So thats it for new stuff</h5>
<p>There are loads of other things but for now thats all the new stuff that stood out to me (not mentioning the old Leopard stuff like spaces and time machine! There are also another two massive points&#8230; Safari on Windows and the new apple website, but thats another post for another day!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixelbox.net/2007/06/12/apple-smoothy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Elgato Systems: Customer service</title>
		<link>http://www.pixelbox.net/2007/04/17/elgato-systems-customer-service/</link>
		<comments>http://www.pixelbox.net/2007/04/17/elgato-systems-customer-service/#comments</comments>
		<pubDate>Tue, 17 Apr 2007 13:03:13 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.pixelbox.net/2007/04/17/elgato-systems-customer-service/</guid>
		<description><![CDATA[Most blog posts you read about customer services are about how bad they are, and how they don&#8217;t give a crap about your company.  This however is about how customer service should be! I recently brought an device for watching TV through my Mac from The Apple Store. I got it working although I had [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pixelbox.net/wp-content/uploads/2007/04/picture-2.png" title="Elgato systems"><img src="http://www.pixelbox.net/wp-content/uploads/2007/04/picture-2.thumbnail.png" alt="Elgato systems" /></a> Most blog posts you read about customer services are about how bad they are, and how they don&#8217;t give a crap about your company.  This however is about how customer service should be!</p>
<p>I recently brought an device for watching TV through my Mac from The Apple Store. I got it working although I had some problems with the reception but everything was hanky dory. However the Mac mini that I was running it on had various problems and I ended up formatting and eventually changing the machine.</p>
<p>When I got a working mini I started installing all my products, and one of these was <a href="http://www.elgato.com/index.php?file=products_eyetvmain">eyeTV</a> which is the software that came with my <a href="http://miglia.com/products/video/tvminiexpress/index.html">TVMini</a> which is the hardware for watching TV on my Mac. Typically I had lost the box and subsiquently the software key for the software.</p>
<p>I took a long shot an emailed the makers of  <a href="http://www.elgato.com/index.php?file=products_eyetvmain">eyeTV</a> (Elgato Systems) asking if they had a record of me and could tell me my software code&#8230; which they didn&#8217;t, but said if I emailed them an invoice for the product they would give me a new key, which they did!</p>
<p>No fuss, not trying to get out of it, and polite to boot! So if you have any TV on mac requirements make sure you check out  <a href="http://www.elgato.com/index.php?file=products_eyetvmain">eyeTV</a> from Elgato Systems!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixelbox.net/2007/04/17/elgato-systems-customer-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google release desktop for OSX</title>
		<link>http://www.pixelbox.net/2007/04/05/google-release-desktop-for-osx/</link>
		<comments>http://www.pixelbox.net/2007/04/05/google-release-desktop-for-osx/#comments</comments>
		<pubDate>Thu, 05 Apr 2007 09:49:24 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.pixelbox.net/2007/04/05/google-release-desktop-for-osx/</guid>
		<description><![CDATA[Google have released the beta of their software pack for OSX&#8230;. and about time. Initially it looks really cool, you have a spotlight search by tapping the apple key twice and it gets results from your gmail! But what really impressed me was that when I now search on google.com I get results from my [...]]]></description>
			<content:encoded><![CDATA[<p>Google have released the beta of their software pack for OSX&#8230;. and about time.</p>
<p>Initially it looks really cool, you have a spotlight search by tapping the apple key twice and it gets results from your gmail!</p>
<p>But what really impressed me was that when I now search on google.com I get results from my computer! Very very clever!</p>
<p>Check it out now and let me know what you think&#8230;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5465909930949175";
google_ad_output = "textlink";
google_ad_format = "ref_text";
google_cpa_choice = "CAAQqPHHmwIaCKPtjOsL25tqKOD-uosB";
google_ad_channel = "";
//-->
</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixelbox.net/2007/04/05/google-release-desktop-for-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xtorrent 1.0 &#8211; Torrent app perfection</title>
		<link>http://www.pixelbox.net/2007/03/29/xtorrent-10-torrent-app-perfection/</link>
		<comments>http://www.pixelbox.net/2007/03/29/xtorrent-10-torrent-app-perfection/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 16:37:23 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.pixelbox.net/2007/03/29/xtorrent-10-torrent-app-perfection/</guid>
		<description><![CDATA[I don&#8217;t often rate software and I don&#8217;t often buy software, especially if it is overpriced (SpanningSync) but I have been using the Xtorrent public beta for a few months now and it has finally hit 1.0. In doing so it has also separated into a locked down version which limited your speeds after 10 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://flickr.com/photos/77646648@N00/438789853" title="XtorrentPro"><img src="http://static.flickr.com/156/438789853_cadfcef517_m.jpg" border="0" /></a>I don&#8217;t often rate software and I don&#8217;t often buy software, especially if it is overpriced (SpanningSync) but I have been using the Xtorrent public beta for a few months now and it has finally hit 1.0.</p>
<p>In doing so it has also separated into a locked down version which limited your speeds after 10 minutes and also has some strange search bugs added to annoy you into buying the Xtorrent pro version!</p>
<p>Xtorrent pro is only $20 (£12ish) and a snitch for what it is. So what is it, well its torrents for the p2p generation. I have often tried to explain torrents to friends, usually they get it but a lot of them glaze over and find it hard to establish why you would download a file that is nothing only to open it in another program&#8230;</p>
<p>So what does Xtorrent do that the others don&#8217;t, everything. Xtorrent is an all in one app, loads up and looks just like a p2p program including the normal drizzle of sexiness one has come to expect from David Watanabe (creator). There is a search (which will look in google and yahoo, or you can add your fave torrent sites), and a filter for your search results, sorting via type, itunes integration for music, auto torrent downloading with folder actions, RSS feeds, swarm strength, <a href="http://www.xtorrentp2p.com/">and much more</a>.</p>
<p>So go check it out if you love torrents and definitely if you don&#8217;t!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixelbox.net/2007/03/29/xtorrent-10-torrent-app-perfection/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Apollo &#8211; We have lift off</title>
		<link>http://www.pixelbox.net/2007/03/26/apollo-we-have-lift-off/</link>
		<comments>http://www.pixelbox.net/2007/03/26/apollo-we-have-lift-off/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 19:47:20 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.pixelbox.net/2007/03/26/apollo-we-have-lift-off/</guid>
		<description><![CDATA[First off, excuse the title, just seemed like I had to do it before Adobe started plastering the web with puns along the same lines&#8230; So anyway in one small step for me but one giant&#8230; ok ok I&#8217;ll start again&#8230; Today whilst eating my chili (turned out to be spag boll, which doesn&#8217;t really [...]]]></description>
			<content:encoded><![CDATA[<p>First off, excuse the title, just seemed like I had to do it before Adobe started plastering the web with puns along the same lines&#8230;</p>
<p>So anyway in one small step for me but one giant&#8230; ok ok I&#8217;ll start again&#8230;</p>
<p>Today whilst eating my chili (turned out to be spag boll, which doesn&#8217;t really go with rice&#8230; need to start labeling my frozen left overs) I downloaded the Apollo add on for flex builder and knocked up a nice simple application, that should (I say should because my first flex app doesn&#8217;t) run on any platform that the Apollo runtime is made for.</p>
<p>It took about 1 minute (30 if Simon is reading&#8230; it&#8217;s not like Dreamweaver) and I think it will pave the way for application development in the future&#8230; move over Java, your time has come.</p>
<p>Oh and I also had to quash Tom&#8217;s claims that</p>
<blockquote><p>&#8220;<a href="http://www.lyingonthecovers.net/?p=210">I’ve just got this image of all regard to taste and usability being replaced with a 10 pixel by 10 pixel dancing banana.</a>&#8220;</p></blockquote>
<p><a href="http://labs.adobe.com/downloads/apolloruntime.html">Apollo runtime free download </a></p>
<p>So with out further adoooooo&#8230;..</p>
<p><a href="http://www.pixelbox.net/wp-content/uploads/2007/03/randomfactair.zip" title="My first Apollo app">My first Apollo app (PC)</a></p>
<p><a href="http://www.pixelbox.net/wp-content/uploads/2007/03/randomfactair.zip" title="My first Apollo app">My first Apollo app (Mac)</a></p>
<p>(joking they are both the same file ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixelbox.net/2007/03/26/apollo-we-have-lift-off/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
