<?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>OS X Daily &#187; 10.5</title>
	<atom:link href="http://osxdaily.com/category/105/feed/" rel="self" type="application/rss+xml" />
	<link>http://osxdaily.com</link>
	<description>News, tips, software, reviews, and more for Mac OS X, iPhone, iPad</description>
	<lastBuildDate>Fri, 25 May 2012 22:17:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Configuring Xcode to use Subversion</title>
		<link>http://osxdaily.com/2010/06/03/configuring-xcode-to-use-subversion/</link>
		<comments>http://osxdaily.com/2010/06/03/configuring-xcode-to-use-subversion/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 19:20:30 +0000</pubDate>
		<dc:creator>chrisk</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[scm]]></category>
		<category><![CDATA[source control]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=4803</guid>
		<description><![CDATA[Whether you are a new Apple developer or an experienced Cocoa engineer with roots in NeXTStep, you will understand the need to back up your hard work. Integrating Xcode with subversion not only allows you to back up your code, but it also enables you to keep a history of changes that you can revert [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2010/06/imgres.jpeg" alt="imgres" title="imgres" width="131" height="131" class="alignright size-full wp-image-4819" />Whether  you are a new Apple developer or an experienced Cocoa engineer with roots in NeXTStep, you will understand the need to back up your hard work.  Integrating Xcode with subversion not only allows you to back up your code, but it also enables you to keep a history of changes that you can revert back to or compare your code against.  This is called version control.  This article assumes that you already have your own subversion repository that you have read and write access to.  If you want to setup a subversion server of your own, I suggest consulting the almighty google for a wide range of articles on how to accomplish this task.  Read on for screenshots, details and lots of fun.<br />
<span id="more-4803"></span></p>
<p><strong>Step 1) Tell Xcode about your repository.</strong></p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Xcode has the ability to communicate with subversion using native svn communication, ssh+svn, http and https.  The most popular of the various methods is https which allows you to save your data over an encrypted channel.  Because after all, it is important that your trade secrets are never exposed to your competitor!  To add a subversion repository, navigate to the &#8220;SCM&#8221; menu and select the &#8220;Configure SCM Repositories…&#8221; option.  Fill in the relevant information which should be readily available to you, if it&#8217;s not, contact the person who administrates your SVN repository for more details.<br />
<img src="http://cdn.osxdaily.com/wp-content/uploads/2010/06/Connecting-to-the-Repository-Using-svnserve-610x496.jpg" alt="Connecting to the Repository Using svnserve" title="Connecting to the Repository Using svnserve" width="610" height="496" class="aligncenter size-large wp-image-4804" /></p>
<p><strong>Step 2)  Let&#8217;s put your code on the Subversion server</strong></p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Go back to the SCM menu and select the &#8220;Repositories&#8221; menu item.  From this screen you can now &#8220;import&#8221; your hard work into the repository.  Click the &#8220;Import&#8221; button and navigate to your Xcode project&#8217;s directory.  If you haven&#8217;t done so already, you might want to think about configuring your project to use a directory for builds that lives OUTSIDE of your Xcode project directory.  If you configure your build paths (in your Project Settings) in this manner you will avoid checking in binary copies of your application, which is typically unnecessary as subversion is source control management (SCM) not binary control management.  After you have settled on your build path situation, go ahead and select your entire Xcode project and import it.  If the subversion server is &#8220;local&#8221; to your computer this process will be lighting fast.  If not, wait a while for it to finish.<br />
<img src="http://cdn.osxdaily.com/wp-content/uploads/2010/06/Importing-a-Project-to-the-Repository-610x705.jpg" alt="Importing a Project to the Repository" title="Importing a Project to the Repository" width="610" height="705" class="aligncenter size-large wp-image-4808" /></p>
<p><strong>Step 3) Check-out your newly imported code from the repository</strong></p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Now that you have stored your source code on the subversion server, the current local copy of your Xcode project can be moved off to the side, or even better, deleted.  Don&#8217;t worry since you placed the files inside of the repository, we can quickly check them out so that your working copy will be attached to the repository.  Navigate back to the SCM menu (noticing a trend here?) and select &#8220;Repositories&#8221;.   From the repository browsing window select your Xcode project and click the &#8220;Checkout&#8221; button.  Xcode will ask you for a place to save the project.  Any location will do, just save it.<img src="http://cdn.osxdaily.com/wp-content/uploads/2010/06/Checking-Out-the-Project-556x800.jpg" alt="Checking Out the Project" title="Checking Out the Project" width="556" height="800" class="aligncenter size-large wp-image-4817" /></p>
<p><strong>Step 4) Inform your Project that it is under SCM control</strong></p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Time to tell Xcode that your project is being managed by SCM, or more specifically subversion.  Pull your Project Settings and click the &#8220;Project Roots &#038; SCM&#8221; button.  It will bring up the window you see below where you want to select <Project File Directory> and then click the small black arrows until it reads your subversion repository.  That it. Hit Ok and return to Xcode.  Your project is now Subversion aware.<img src="http://cdn.osxdaily.com/wp-content/uploads/2010/06/tellxcodeitsmanaged.png" alt="tellxcodeitsmanaged" title="tellxcodeitsmanaged" width="464" height="597" class="aligncenter size-full wp-image-4812" /></p>
<p><strong>The Final Steps</strong><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The hard work has paid off.   You can now right click the menu bar of the navigation sidebar and check the &#8220;SCM&#8221; entry.  This will place an additional column in the sidebar which will have an &#8220;M&#8221; in it if a file is &#8220;newer&#8221; (meaning it needs to be committed) than what is in the Subversion repository.  You can now right click a file and commit it to the repository.  When you do that, Xcode will ask you to enter a comment that describes what changes were made to the file.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2010/06/03/configuring-xcode-to-use-subversion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Resize Partitions in Mac OS X with Disk Utility</title>
		<link>http://osxdaily.com/2009/11/20/resize-partitions-in-mac-os-x-with-disk-utility/</link>
		<comments>http://osxdaily.com/2009/11/20/resize-partitions-in-mac-os-x-with-disk-utility/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 13:31:24 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[resize partition]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=1595</guid>
		<description><![CDATA[You can easily resize any disk partition in Mac OS X using the included Disk Utility app, located in /Applications/Utilities, you can even resize a mounted volume but that&#8217;s not the best idea in the world. Before you go messing around and resizing your partitions, be sure to backup your data in case something goes [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p> You can easily resize any disk partition in Mac OS X using the included Disk Utility app, located in /Applications/Utilities, you can even resize a mounted volume but that&#8217;s not the best idea in the world. Before you go messing around and resizing your partitions, be sure to backup your data in case something goes wrong. </p>
<p>Since Mac OS X Leopard (and obviously Snow Leopard) you can grow or shrink HFS+ (Mac OS X) Partitions on the fly, with the resizing done live regardless of whether the drive is internal or an external drive.</p>
<p>[ tip idea and animated gif from <a href="http://www.creativetechs.com/iq/leopard_disk_utility_can_resize_partitions.html">CreativeTechs</a> ]</p>
<p><img src="http://cdn.osxdaily.com/wp-content/uploads/2009/10/DiskUtility-Resize.gif" alt="DiskUtility-Resize" title="DiskUtility-Resize" width="520" height="445" class="alignnone size-full wp-image-1594" /></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2009/11/20/resize-partitions-in-mac-os-x-with-disk-utility/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Secrets of the Command-Tab Mac Application Switcher</title>
		<link>http://osxdaily.com/2009/11/17/secrets-of-the-command-tab-mac-application-switcher/</link>
		<comments>http://osxdaily.com/2009/11/17/secrets-of-the-command-tab-mac-application-switcher/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 12:41:12 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=1600</guid>
		<description><![CDATA[Command-Tab in Mac OS X works really well as a quick application switcher and I use it all the time, but there&#8217;s more features available within the Command-Tab application switcher than just hitting Command+Tab itself. Once you&#8217;re in the application switcher you can try some of these other commands. Command+Tab launches the Application Switcher. Continue [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2009/10/command-tab.jpg" alt="command tab" title="command tab" width="610" height="144" class="alignnone size-full wp-image-1599" /></p>
<p>Command-Tab in Mac OS X works really well as a quick application switcher and I use it all the time, but there&#8217;s more features available within the Command-Tab application switcher than just hitting Command+Tab itself. Once you&#8217;re in the application switcher you can try some of these other commands.</p>
<p><strong>Command+Tab launches the Application Switcher</strong>. Continue holding down the Command key and then try the following buttons:</p>
<ul>
<li> tab &#8211; move selection to the right in the app list</li>
<li> ` &#8211; move selection to the left</li>
<li> h &#8211; hide the selected application</li>
<li> q &#8211; quit the selected application</li>
<li> mouse scrollwheel &#8211; move the selection back and forth</li>
<li> left arrow &#8211; move selection to the left</li>
<li> right arrow &#8211; move selection to the right</li>
<li> up arrow &#8211; enter expose within the selected application</li>
<li> down arrow &#8211; enter expose within the selected application</li>
</ul>
<p>Memorize these tips to master the Mac application switcher and speed up your workflow! (Note: the expose features appear to be Snow Leopard only)</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2009/11/17/secrets-of-the-command-tab-mac-application-switcher/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Check your Macs uptime and reboot history</title>
		<link>http://osxdaily.com/2009/09/22/check-your-macs-uptime-and-reboot-history/</link>
		<comments>http://osxdaily.com/2009/09/22/check-your-macs-uptime-and-reboot-history/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 14:33:46 +0000</pubDate>
		<dc:creator>Bill Ellis</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=889</guid>
		<description><![CDATA[Not to brag or anything, but I love the fact that that unless I&#8217;ve run Software Update I rarely have to reboot my Mac, this might not be that exciting to most Mac users but as a relatively recent Windows convert, I find this particularly nice. So naturally with my Mac geekiness I find it [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2009/09/terminal-icon-512x51221.png" alt="mac terminal" title="mac terminal" width="70" height="70" class="alignnone size-full wp-image-890" /> Not to brag or anything, but I love the fact that that unless I&#8217;ve run Software Update I rarely have to reboot my Mac, this might not be that exciting to most Mac users but as a relatively recent Windows convert, I find this particularly nice. So naturally with my Mac geekiness I find it fun to check the uptime and reboot history of my Mac and others, it&#8217;s easy to do and it&#8217;s actually functionally useful too for troubleshooting certain Mac problems. Here&#8217;s how to do both via the Command Line:</p>
<h2>How to Check your Macs uptime</h2>
<p>To check your Macs uptime, simply type &#8216;uptime&#8217; in the Terminal. In the below example, we have a Mac that has been up for 21 hours and 40 minutes.<br />
<code>YourMac:~ user$ uptime<br />
10:33  up 21:40, 4 users, load averages: 0.09 0.19 0.21</code></p>
<h2>How to Check your Macs reboot history</h2>
<p>To check the reboot history of your Mac, type &#8216;last reboot&#8217; in the Terminal. This will provide you with the dates and times of the last few reboots the machine has gone through.<br />
<code>YourMac:~user$ last reboot<br />
reboot    ~                         Tue Sep 22 12:52<br />
reboot    ~                         Sun Aug 30 23:17<br />
reboot    ~                         Sat Aug 29 01:12<br />
reboot    ~                         Fri Aug 28 22:07 </p>
<p>wtmp begins Fri Aug 28 22:07<br />
</code></p>
<p>Nice huh?</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2009/09/22/check-your-macs-uptime-and-reboot-history/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How I Got an Ultra-Portable 2.5lbs Mac OS X Netbook with a 10&#8243; LCD for $204</title>
		<link>http://osxdaily.com/2009/09/08/how-i-got-an-ultra-portable-2lbs-mac-os-x-netbook-with-a-10-lcd-for-204/</link>
		<comments>http://osxdaily.com/2009/09/08/how-i-got-an-ultra-portable-2lbs-mac-os-x-netbook-with-a-10-lcd-for-204/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 16:05:55 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Hackintosh]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[dell mini 10v]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=801</guid>
		<description><![CDATA[So you want a small lightweight portable Mac OS X machine, the closest thing Apple has in this area is the MacBook Air which is $1600 or more. No doubt about it, the MacBook Air is a great machine but I don&#8217;t want to spend anywhere near $1600 for another laptop when I already have [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2009/08/screen-shot-2009-08-31-at-75513-pm-150x150.png" alt="hackintosh dell mini 10v" title="hackintosh dell mini 10v" width="150" height="150" class="alignnone size-thumbnail wp-image-804" /> So you want a small lightweight portable Mac OS X machine, the closest thing Apple has in this area is the MacBook Air which is $1600 or more. No doubt about it, the MacBook Air is a great machine but I don&#8217;t want to spend anywhere near $1600 for another laptop when I already have a MacBook Pro. I&#8217;m thinking a small budget, like really small by Mac standards, how about $250 or less? Impossible you say? Wrong! It&#8217;s possible and I did it! Here&#8217;s how you can too. Be warned, this is not sanctioned by Apple, and it&#8217;s breaking the Mac OS X EULA agreement. </p>
<h3>What You Will Need</h3>
<p>* $200-$250, expenses vary based on your particular model, coupon code, and luck at the Dell Outlet<br />
* 8gb USB key or external USB hard drive you don&#8217;t mind formatting<br />
* Mac OS X 10.5 install DVD or image<br />
* some patience</p>
<h2>Finding a Cheap Dell Mini 10v for Hackintosh Purposes</h2>
<p>So now you need to find the cheap Dell Mini 10v, the refurbs from Dell Outlet serve this purpose wonderfully. Combined with a discount code from the DellOutlet Twitter, and you have yourself a very affordable Hackintosh. My final price was $204 shipped!</p>
<p><a href="http://twitter.com/delloutlet">Twitter: DellOutlet</a> &#8211; follow DellOutlet on Twitter to get product discount codes, I got one for 15% off from here. They pop up once a week or so and have a limited duration.</p>
<p><a href="http://outlet.us.dell.com/ARBOnlineSales/topics/global.aspx/arb/online/en/InventorySearch?c=us&#038;cs=22&#038;l=en&#038;lob=INSP&#038;MODEL_DESC=Inspiron%20Mini%2010v%20-%201011&#038;s=dfh">Dell.com/Outlet &#8211; Mini 10v</a> &#8211; check stock and sort by price, it&#8217;s a live search so you can constantly refresh it and see different stock from other people dumping their carts. I have seen a Mini 10v for as low as $219 BEFORE using the 15% coupon!</p>
<h2>Hackintosh: Installing Mac OS X on the Dell Mini 10v</h2>
<p><a href="http://gizmodo.com/5389166/how-to-hackintosh-a-dell-mini-10v-into-the-ultimate-snow-leopard-netbook">Gizmodo Guide to install Snow Leopard on the Dell Mini 10v</a> &#8211; this is based on the information from MyDellMini forums but it&#8217;s made a bit easier to follow and has some nice pictures of progress. If you want to install Snow Leopard on your Mini 10v, this is a great guide to follow.</p>
<p><a href="http://www.mydellmini.com/forum/dell-mini-10-guides/11450-fool-proof-no-hassle-mini-10v-install-everything-works.html">MyDellMini: Fool Proof No Hassle Mini 10v Install Guide</a> &#8211; Fellow OS X Daily author Bill Ellis wrote about the<a href="http://osxdaily.com/2009/08/27/install-mac-os-x-1058-on-a-dell-mini-10v-hackintosh/">Hackintosh Dell Mini 10v</a> several weeks ago, which is what first perked my interest in the topic. I followed the guide he suggested, it works, just follow the steps carefully and it will work for you too.</p>
<h3>Upgrades, Troubleshooting, and more</h3>
<p><a href="http://www.mydellmini.com/forum/dell-mini-10-guides/9209-ram-upgrade-video.html">MyDellMini &#8211; Install 2GB RAM Upgrade on Dell 10v</a> &#8211; I followed the videos here to upgrade the memory. Ok I admit, the RAM upgrade was a total pain, but OS X smokes with 2gb of ram on the Mini 10v so if you&#8217;re technically competent and have the patience, it&#8217;s the best $19 you&#8217;ll have spent in a while. For what it&#8217;s worth, OS X runs just fine with only 1GB of RAM but you will see a noticeable speed bump with the 2GB upgrade.</p>
<p><a href="http://www.mydellmini.com/forum/dell-mini-10v-discussion/">MyDellMini Forums</a> &#8211; this is a wildly helpful bunch of people that are quick to help and extremely knowledgeable on the topic, if you have any questions or run into problems at all, this is probably the best place to go. </p>
<p><a href="http://www.mydellmini.com/forum/os-x-snow-leopard/">MyDellMini Forums: Snow Leopard</a> &#8211; Now that Snow Leopard is out I&#8217;d love to get it running on my little Hackintosh, but I&#8217;m going to wait until the process is a bit more streamlined before attempting this. If you follow the MyDellMini forums though, you&#8217;ll see many people have successfully installed it already, it&#8217;s just a bit complicated. I imagine the Hackintosh community will sort this out pretty soon, it&#8217;s a smart group.</p>
<h4>Final Thoughts on Hackintosh</h4>
<p>Considering how vibrant the Hackintosh community is, particularly focused on Netbooks, I think it points to a hole in Apple&#8217;s current product line: a cheap, lightweight, super-portable Mac. Until Apple fills this niche with something (the rumored Mac Tablet, or whatever), I&#8217;ll bet the Hackintosh community continues to grow, especially when people are pinching pennies in a recessionary economy. Hopefully Apple steps up and delivers, an Official Mac Netbook or equivalent would be awesome and I would buy one!</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2009/09/08/how-i-got-an-ultra-portable-2lbs-mac-os-x-netbook-with-a-10-lcd-for-204/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Ignore Mac Software Update Packages</title>
		<link>http://osxdaily.com/2009/09/08/ignore-mac-software-update-packages/</link>
		<comments>http://osxdaily.com/2009/09/08/ignore-mac-software-update-packages/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 14:03:11 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=664</guid>
		<description><![CDATA[Apple certainly means well with the Software Updates, but sometimes I get update notifications I just don&#8217;t care about, or just don&#8217;t want to install. You can stop Software Update from pestering you about these particular packages by selecting the package in the Software Update screen, then navigating to the &#8216;Update&#8217; menu and selecting &#8220;Ignore [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>Apple certainly means well with the Software Updates, but sometimes I get update notifications I just don&#8217;t care about, or just don&#8217;t want to install. You can stop Software Update from pestering you about these particular packages by selecting the package in the Software Update screen, then navigating to the &#8216;Update&#8217; menu and selecting &#8220;Ignore Update&#8221; (see screenshot below). If you accidentally ignore a package you do want, or you change your mind later, no problem &#8211; simply go to the Software Updates main menu and select &#8220;Reset Ignored Updates&#8221;</p>
<p><img src="http://cdn.osxdaily.com/wp-content/uploads/2009/08/ignore-software-update.png" alt="ignore-software-update" title="ignore-software-update" width="536" height="218" class="alignnone size-full wp-image-665" /></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2009/09/08/ignore-mac-software-update-packages/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Install Mac OS X 10.5.8 or 10.6 on a Dell Mini 10v &#8211; Hackintosh</title>
		<link>http://osxdaily.com/2009/08/27/install-mac-os-x-1058-on-a-dell-mini-10v-hackintosh/</link>
		<comments>http://osxdaily.com/2009/08/27/install-mac-os-x-1058-on-a-dell-mini-10v-hackintosh/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 14:25:45 +0000</pubDate>
		<dc:creator>Bill Ellis</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[Hackintosh]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[dell mini 10v]]></category>
		<category><![CDATA[mac dell mini]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=587</guid>
		<description><![CDATA[The Hackintosh community is rather controversial but increasingly popular, and some of the most appealing Hackintosh machines are those based around Netbooks, tiny lightweight laptops that fill a niche Apple has yet to dabble in. The Dell Mini 9 has long been the cream of the Hackintosh Netbook crop, but it looks like the Dell [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2009/08/hackintosh-10v-300x228.jpg" alt="Dell Mini 10v Mac OS X" title="Dell Mini 10v Mac OS X" width="300" height="228" /> The Hackintosh community is rather controversial but increasingly popular, and some of the most appealing Hackintosh machines are those based around Netbooks, tiny lightweight laptops that fill a niche Apple has yet to dabble in. The Dell Mini 9 has long been the cream of the Hackintosh Netbook crop, but it looks like the Dell Mini 10v is giving it a run for it&#8217;s money, the internals are largely the same but it has a 10&#8243; screen. (Note that the Dell Mini 10 and 10v are completely different units with different hardware, the 10v is Hackintosh compatible, the 10 is not). It&#8217;s worth noting that installing Mac OS X on something other than Apple hardware is against the Apple OS X EULA, so the legitimacy of the entire Hackintosh movement is dubious at best, but morals aside&#8230;</p>
<p>If you want to run Mac OS X 10.6.2 on a Dell Mini 10v and want to pay around $200 USD, check out our <a href="http://osxdaily.com/2009/09/08/how-i-got-an-ultra-portable-2lbs-mac-os-x-netbook-with-a-10-lcd-for-204/">guide for a cheap hackintosh netbook</a></p>
<p>Installation is pretty simple, check out these how-to guides on MyDellMini.com, which guarantees a fool proof, no hassle, everything working Mac OS X 10.5.8 or even Mac OS X 10.6.2 installation on the Dell Mini 10v:</p>
<p><a href="http://www.mydellmini.com/forum/dell-mini-10-guides/11450-fool-proof-no-hassle-mini-10v-install-everything-works.html">MyDellMini: Fool proof no hassle Mini 10v Hackintosh guide</a></p>
<p><del datetime="2010-02-27T02:35:49+00:00">It&#8217;ll be interesting to see how Mac OS X 10.6 Snow Leopard runs on these Hackintosh machines&#8230; time will soon tell!</del></p>
<p><strong>Updated 2/25/2010</strong>: You can now easily install Snow Leopard 10.6 on the Dell Mini 10v, we have linked the easiest guide on MyDellMini forums for your convenience.</p>
<p><a href="http://www.mydellmini.com/forum/mac-os-x-guides/16676-how-install-osx-mini10.html">MyDellMini: How to Install 10.6 on a Mini 10v</a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2009/08/27/install-mac-os-x-1058-on-a-dell-mini-10v-hackintosh/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Creating a Hackintosh: Installing Mac OS X on Netbooks from the Dell Mini 9, MSI Wind, Lenovo S10, and more</title>
		<link>http://osxdaily.com/2009/04/26/creating-a-hackintosh-installing-mac-os-x-on-netbooks-from-the-dell-mini-9-msi-wind-lenovo-s10-and-more/</link>
		<comments>http://osxdaily.com/2009/04/26/creating-a-hackintosh-installing-mac-os-x-on-netbooks-from-the-dell-mini-9-msi-wind-lenovo-s10-and-more/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 05:10:29 +0000</pubDate>
		<dc:creator>Bill Ellis</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[Hackintosh]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=375</guid>
		<description><![CDATA[Creating your own cheap Mac Hackintosh out of a PC Netbook is pretty popular right now, so I compiled a list of various how-to guides mostly for myself but figured I would share it with our readers as well. The guides rank from reasonably easy (Dell Mini 9) to an arduous hack, and it&#8217;s technically [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="/images/osxdell.png" alt="Dell Mini 9 Mac OS X"> Creating your own cheap Mac Hackintosh out of a PC Netbook is pretty popular right now, so I compiled a list of various how-to guides mostly for myself but figured I would share it with our readers as well. The guides rank from reasonably easy (Dell Mini 9) to an arduous hack, and it&#8217;s technically against Apple&#8217;s OS X EULA agreement, so whether or not it&#8217;s worth proceeding with making one of these frankenstein Macs is entirely up to you. </p>
<p><a href="http://i.gizmodo.com/5156903/how-to-hackintosh-a-dell-mini-9-into-the-ultimate-os-x-netbook">Gizmodo: How to Hackintosh a Dell Mini 9</a> </p>
<p><a href="http://www.mydellmini.com/forum/dell-mini-10-guides/11450-fool-proof-no-hassle-mini-10v-install-everything-works.html">MyDellMini: Fool proof no hassle Dell Mini 10v Hackintosh guide</a></p>
<p><a href="http://forums.msiwind.net/osx-installing/boot132-retail-usb-install-t9642.html">MSiWind Forums: How to Install Mac OS X on an MSI Wind</a></p>
<p><a href="http://www.insanelymac.com/forum/index.php?showtopic=129774">InsanelyMac: Install OS X on an Acer Aspire One</a></p>
<p><a href="http://blog.stuart.shelton.me/archives/256">Stuart Shelton: How to install Mac OS X on a Samsung NC10</a></p>
<p><a href="http://www.s10lenovo.com/viewtopic.php?f=15&#038;t=571&#038;sid=41053038503f97ceb6721dcc91415424">S10Lenovo: Install Mac OS X on a Lenovo S10</a></p>
<p><a href="http://www.myhpmini.com/forum/viewtopic.php?f=17&#038;t=37&#038;start=0&#038;sid=51307ed583c5548ec1ce6242ad935fc9">MyHPMini: Install Mac OS X on an HP Mini 1000</a></p>
<p><a href="http://www.enik.ch/2009/03/osx-leopard-1056-on-the-eee-1000h/">Enik: Install Mac OS X 10.5.6 on an EEE 1000h</a></p>
<p>It&#8217;s worth mentioning that <a href="http://gadgets.boingboing.net/2008/12/17/osx-netbook-compatib.html">BoingBoing</a> has a pretty good <a href="http://gadgets.boingboing.net/2008/12/17/osx-netbook-compatib.html">OSX/Netbook compatibility chart</a> but much of the info looks out of date (from December of 2008) so it&#8217;s worth doing some of your own due diligence before relying 100% on the chart.</p>
<p><strong>Update:</strong> A reader has sent this in, saying that <a href="http://cid-f44b150c99ae9b44.skydrive.live.com/browse.aspx/Public/Snowy">these files work for installing Snow Leopard on a Dell Mini 10v</a> but we have not been able to test it&#8230; this link was pulled from the <a href="http://www.mydellmini.com/forum/os-x-snow-leopard/10638-gonna-try-snow-leopard-my-10v-7.html">MyDellMini Forums</a>. Not for novice users, proceed with caution!</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2009/04/26/creating-a-hackintosh-installing-mac-os-x-on-netbooks-from-the-dell-mini-9-msi-wind-lenovo-s10-and-more/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Highlight Stack Items on Hover</title>
		<link>http://osxdaily.com/2008/01/07/highlight-stack-items-on-hover/</link>
		<comments>http://osxdaily.com/2008/01/07/highlight-stack-items-on-hover/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 03:35:08 +0000</pubDate>
		<dc:creator>Bill Ellis</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/2008/01/07/highlight-stack-items-on-hover/</guid>
		<description><![CDATA[Here&#8217;s a great tip that creates a nice hover effect when your mouse goes over an application (or folder) within a Leopard stack. Why this isn&#8217;t enabled by default in Leopard is beyond me, because it makes navigating within stacks a whole lot easier. Don&#8217;t miss out, here&#8217;s how to activate it: Launch the Terminal [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="/images/stackhover.jpg"> Here&#8217;s a great tip that creates a nice hover effect when your mouse goes over an application (or folder) within a Leopard stack. Why this isn&#8217;t enabled by default in Leopard is beyond me, because it makes navigating within stacks a whole lot easier. Don&#8217;t miss out, here&#8217;s how to activate it:</p>
<p>Launch the Terminal and type the following command:<br />
<code>defaults write com.apple.dock mouse-over-hilite-stack -boolean yes</code></p>
<p>then, you&#8217;ll have to restart the Dock by issuing the following command:<br />
<code>killall Dock</code></p>
<p>To disable the hover highlights, type:<br />
<code>defaults write com.apple.dock mouse-over-hilite-stack -boolean no</code></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2008/01/07/highlight-stack-items-on-hover/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Useful Quick Look Tips from TUAW</title>
		<link>http://osxdaily.com/2008/01/05/useful-quick-look-tips-from-tuaw/</link>
		<comments>http://osxdaily.com/2008/01/05/useful-quick-look-tips-from-tuaw/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 22:49:24 +0000</pubDate>
		<dc:creator>William Pearson</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://osxdaily.com/2008/01/05/useful-quick-look-tips-from-tuaw/</guid>
		<description><![CDATA[Quick Look is likely the only feature in Leopard 10.5 that I actually notice and something I would certainly miss if I went back to 10.4, it&#8217;s just too useful. The Unofficial Apple Weblog has a decent post listing 10 useful Quick Look usage tips, some are built right in and won&#8217;t require modification, while [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="/images/macosx.jpg"> Quick Look is likely the only feature in Leopard 10.5 that I actually notice and something I would certainly miss if I went back to 10.4, it&#8217;s just too useful. <a href="http://www.tuaw.com/2008/01/05/10-ways-to-get-the-most-out-of-quick-look/">The Unofficial Apple Weblog</a> has a decent post listing 10 useful Quick Look usage tips, some are built right in and won&#8217;t require modification, while others will require 3rd party plugins to use. Here&#8217;s the full list, minus the detail:</p>
<p>   1. Identify files on remote machines.<br />
   2. Preview the contents of Zip files (plug-in required).<br />
   3. Preview the contents of a folder (plug-in required).<br />
   4. Examine snippets of code with syntax highlighting intact.<br />
   6. Prep your iWork documents for use with Quick Look.<br />
   7. Enhance TextMate.<br />
   8. Preview fonts.<br />
   9. Quick Look and Cover Flow.<br />
  10. Send images to iPhoto. </p>
<p>If these sound appealing, read more at <a href="http://www.tuaw.com/2008/01/05/10-ways-to-get-the-most-out-of-quick-look/">TUAW: 10 ways to get the most out of Quick Look</a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2008/01/05/useful-quick-look-tips-from-tuaw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the Mac OS X Dock from 3D to 2D</title>
		<link>http://osxdaily.com/2007/12/24/change-the-105-leopard-dock-from-3d-to-2d/</link>
		<comments>http://osxdaily.com/2007/12/24/change-the-105-leopard-dock-from-3d-to-2d/#comments</comments>
		<pubDate>Tue, 25 Dec 2007 05:50:14 +0000</pubDate>
		<dc:creator>William Pearson</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/2007/12/24/change-the-105-leopard-dock-from-3d-to-2d/</guid>
		<description><![CDATA[The appearance of the new Dock in Mac OS X 10.5 Leopard has caused somewhat of an uproar in the Mac community, some of whom even claim it looks like it belongs in Windows Vista. If you&#8217;re totally insulted by the new 3D dock, or if you just prefer the old Dock appearance, it&#8217;s very [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="/images/terminal.jpg"> The appearance of the new Dock in Mac OS X 10.5 Leopard has caused somewhat of an uproar in the Mac community, some of whom even claim it looks like it belongs in Windows Vista. If you&#8217;re totally insulted by the new 3D dock, or if you just prefer the old Dock appearance, it&#8217;s very easy to change and you don&#8217;t need to be a super Mac genius to figure it out. Simply launch your terminal and type the following commands:</p>
<p><code>defaults write com.apple.dock no-glass -boolean YES</code></p>
<p>then you will want to kill the Dock to relaunch it without the glass effect:<br />
<code>killall Dock</code></p>
<p>to get the reflective 3D Dock back, simply type the following:<br />
<code>defaults write com.apple.dock no-glass -boolean NO</code></p>
<p>again, you will want to kill the Dock to relaunch it. Enjoy!</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2007/12/24/change-the-105-leopard-dock-from-3d-to-2d/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Use Quick Look from the command line</title>
		<link>http://osxdaily.com/2007/12/24/use-quick-look-from-the-command-line/</link>
		<comments>http://osxdaily.com/2007/12/24/use-quick-look-from-the-command-line/#comments</comments>
		<pubDate>Tue, 25 Dec 2007 05:34:34 +0000</pubDate>
		<dc:creator>Bill Ellis</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/2007/12/24/use-quick-look-from-the-command-line/</guid>
		<description><![CDATA[Quick Look is a nice feature added in 10.5, I use it often for glancing at the content of various documents and it certainly beats launching an application. If you&#8217;re an avid command line user though, you may be browsing through a directories contents and wondering just what is that JPG or DOC file. Wonder [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="/images/terminal.jpg"> Quick Look is a nice feature added in 10.5, I use it often for glancing at the content of various documents and it certainly beats launching an application. If you&#8217;re an avid command line user though, you may be browsing through a directories contents and wondering just what is that JPG or DOC file. Wonder no more, because you can easily use Quick Look from the command line:</p>
<p>From the command line, use the following syntax:</p>
<p><code>qlmanage -p filename.jpg</code></p>
<p>This will launch a Quick Look window with whatever file is specified as &#8216;filename.jpg&#8217;, the file type can be anything that Quick Look is compatible with (which seems to be just about everything). </p>
<p><span id="more-263"></span></p>
<p>The qlmanage command has other abilities, here is the full flag list, courtesy of qlmanage -h:</p>
<p><code><br />
Usage: qlmanage [OPTIONS] path...<br />
	-h	Display this help<br />
	-r	Force reloading Generators list<br />
	-p	Show a preview of the documents<br />
	-t	Show thumbnails of the documents<br />
	-s size	Size for the thumbnail<br />
	-f factor	Scale factor for the thumbnail<br />
	-c contentTypeUTI	Force the content type used for the documents<br />
	-g generator	Force the generator to use<br />
</code></p>
<p>Note that you can have Quick Look launch in the background by using the following command, allowing you to continue using the Terminal as usual:</p>
<p><code>qlmanage -p filename.jpg &#038;</code></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2007/12/24/use-quick-look-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Quick Look files from the Trash</title>
		<link>http://osxdaily.com/2007/12/08/quick-look-files-from-the-trash/</link>
		<comments>http://osxdaily.com/2007/12/08/quick-look-files-from-the-trash/#comments</comments>
		<pubDate>Sat, 08 Dec 2007 09:26:46 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/2007/12/08/quick-look-files-from-the-trash/</guid>
		<description><![CDATA[Thanks to Quick Look in Leopard, you no longer have to drag files from the Trash to check them out. Simply hit Command-Y while on any file within the trash folder and Quick Look will behave as normal by launching a preview of the file contents. This great tip was found on TUAW (and screenshot [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="/images/quicklook-trash.jpg"> Thanks to Quick Look in Leopard, you no longer have to drag files from the Trash to check them out. Simply hit Command-Y while on any file within the trash folder and Quick Look will behave as normal by launching a preview of the file contents.  This great tip was found on <a href="http://www.tuaw.com/2007/12/07/leopard-love-quick-look-works-on-files-in-the-trash/">TUAW</a> (and screenshot was borrowed from them as well, obviously).</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2007/12/08/quick-look-files-from-the-trash/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Show full directory path in Finder window title bars</title>
		<link>http://osxdaily.com/2007/12/02/show-full-directory-path-in-finder-window-title-bars/</link>
		<comments>http://osxdaily.com/2007/12/02/show-full-directory-path-in-finder-window-title-bars/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 19:18:06 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/2007/12/02/show-full-directory-path-in-finder-window-title-bars/</guid>
		<description><![CDATA[The geekier amongst us and those familiar with Unix should really like this trick. You can have Mac OS X 10.5 display the full directory path in the Finder window title bar by issuing a simple command from the Terminal. defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES Then you&#8217;ll want to kill the Finder for changes [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="/images/fullpathtitles.jpg" alt="Full path in Finder title bars"></p>
<p>The geekier amongst us and those familiar with Unix should really like this trick. You can have Mac OS X 10.5 display the full directory path in the Finder window title bar by issuing a simple command from the Terminal. </p>
<p><code>defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES  </code><br />
Then you&#8217;ll want to kill the Finder for changes to take effect:<br />
<code>killall Finder</code></p>
<p>To disable the full path title bars and revert back to the default, simply repeat the command with NO instead of YES as the operator:<br />
<code>defaults write com.apple.finder _FXShowPosixPathInTitle -bool NO</code><br />
<code>killall Finder</code></p>
<p>Note: this apparently only works within Mac OS X 10.5 Leopard and newer (thanks kg!). Tested for 10.6.3 works fine as well.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2007/12/02/show-full-directory-path-in-finder-window-title-bars/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Get iTunes style scrollbars in Mac OS X Leopard</title>
		<link>http://osxdaily.com/2007/11/11/get-itunes-style-scrollbars-in-mac-os-x-leopard/</link>
		<comments>http://osxdaily.com/2007/11/11/get-itunes-style-scrollbars-in-mac-os-x-leopard/#comments</comments>
		<pubDate>Mon, 12 Nov 2007 04:22:04 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[10.5]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://osxdaily.com/2007/11/11/get-itunes-style-scrollbars-in-mac-os-x-leopard/</guid>
		<description><![CDATA[The appearance of Mac OS X has slowly been drifting away from the old aqua style to a more modern and refined look that closely resembles iTunes. The change in this direction was really made obvious within Leopard with the introduction of the coverflow style finder and the removal of the brushed metal windows. For [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="/images/itunesfinder.jpg"> The appearance of Mac OS X has slowly been drifting away from the old aqua style to a more modern and refined look that closely resembles iTunes. The change in this direction was really made obvious within Leopard with the introduction of the coverflow style finder and the removal of the brushed metal windows. For some reason, Apple ignored the scrollbars though, and we still have Aqua-styled candy looking scrollbars when everything else resembles iTunes. So you had to figure it was only a matter of time before a <a href="http://www.abitbol.org/macosx/">crafty Mac user</a> would change that, and here we have it. Installation is very easy, but I would backup the .rsrc file before you replace it with this new version.</p>
<p><a href="http://www.abitbol.org/macosx/Extras.zip">Download now</a><br />
Source and discussion: <a href="http://macthemes2.net/forum/viewtopic.php?id=16782387">MacThemes2.net</a><br />
<a href="http://www.abitbol.org/macosx/leopard/leopard05.jpg" target="_blank">Click here for a full size screenshot</a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2007/11/11/get-itunes-style-scrollbars-in-mac-os-x-leopard/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)
Database Caching 4/44 queries in 0.053 seconds using disk: basic
Object Caching 1057/1157 objects using disk: basic
Content Delivery Network via cdn.osxdaily.com

Served from: osxdaily.com @ 2012-05-25 16:38:04 -->
