<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>OS X Daily</title>
	
	<link>http://osxdaily.com</link>
	<description>News, tips, software, reviews, and more for Mac OS X, iPhone, iPad</description>
	<lastBuildDate>Sat, 11 Feb 2012 20:32:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/osxdaily" /><feedburner:info uri="osxdaily" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>osxdaily</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Download Photo Stream Photos to a Folder in Mac OS X</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/Ctw7WjHKOP0/</link>
		<comments>http://osxdaily.com/2012/02/11/save-photo-stream-photos-to-folder-mac-os-x/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 20:32:15 +0000</pubDate>
		<dc:creator>William Pearson</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[iCloud]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Photo Stream]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=27113</guid>
		<description><![CDATA[Photo Stream is a nice feature of iCloud that pushes all of your pictures automatically to your other iOS devices and your Mac with iPhoto or Aperture. If you haven&#8217;t used it before, this means if you take a picture on your iPhone, it will automatically show up in the Photo Stream on your iPad, [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://osxdaily.com/wp-content/uploads/2012/02/save-photo-stream-images-mac.jpg" alt="Save Photo Stream Images to a folder in Mac OS X" title="save-photo-stream-images-mac" width="620" height="299" class="aligncenter size-full wp-image-27115" /></p>
<p>Photo Stream is a nice feature of iCloud that pushes all of your pictures automatically to your other iOS devices and your Mac with iPhoto or Aperture. If you haven&#8217;t used it before, this means if you take a picture on your iPhone, it will automatically show up in the Photo Stream on your iPad, and also in iPhoto on your Mac. Oddly, there isn&#8217;t an option to choose a destination other than iPhoto or Aperture in Mac OS X though, but this cool trick allows you to specify a folder and then download all the images from iCloud to your Mac, without using iPhoto or Aperture.</p>
<p>In order to use the following script, you will need iOS 5 and OS X 10.7.2 or later, as well as <a href="http://osxdaily.com/2011/10/12/how-to-setup-icloud/">iCloud set up and configured</a> and the Photo Stream option enabled in Mac OS X&#8217;s iCloud System Preferences.</p>
<h2 style="font-size:1.2em;">Save Photo Stream Images to a Folder in Mac OS X</h2>
<ul>
<li>Open AppleScript Editor, found at /Applications/Utilities/AppleScript Editor.app</li>
<li>In a new blank AppleScript window, paste in the following code, replacing &#8220;USERNAME&#8221; with the short user name of your Mac OS X home directory:</li>
<p><code>tell application "Finder"<br />
set this_folder to "Macintosh HD:Users:USERNAME:Library:Application Support:iLifeAssetManagement:assets" as alias<br />
set target_folder to "Macintosh HD:Users:USERNAME:Pictures:MyStream" as alias<br />
try<br />
duplicate (every file of the entire contents of this_folder whose name contains "IMG") to the target_folder with replacing<br />
end try<br />
end tell</code></p>
<li>This will look something like this in the AppleScript editor:</li>
</ul>
<p><img src="http://osxdaily.com/wp-content/uploads/2012/02/download-photo-stream-images-script.jpg" alt="Download Photo Stream Images to a Folder in Mac OS X with an AppleScript" title="download-photo-stream-images-script" width="596" height="294" class="aligncenter size-full wp-image-27125" /></p>
<ul>
<li>Adjust the target_folder variables as appropriate &#8211; Change &#8220;Macintosh HD&#8221; if your hard drive is named something else, and change &#8220;MyStream&#8221; if you want the final directory to be something other than that name located in the user Pictures directory &#8211; remember with AppleScript, rather than slashes the colon is used instead to type and show file and folder paths</li>
<li>Run the script to verify that it works and then save the script with an appropriate name like &#8220;PhotoStreamDownloader&#8221;, and select &#8220;Application&#8221; as the file format for easy access and launching later</li>
</ul>
<p>Now anytime you want to download your Photo Stream to your Mac, just launch that saved script app and you will grab your latest Photo Stream images to the configure directory in Mac OS X. For best results, place the application into your /Applications directory and add it to Launchpad for easy future use.</p>
<p>AppleScript Editor is fairly intuitive, and if you entered a directory or path wrong when you attempt to run the script it will let you know with an &#8220;AppleScript Error&#8221; message. If you get a &#8220;iLifeAssetManagement:assets wasn&#8217;t found&#8221; message, then you haven&#8217;t enabled Photo Stream in iCloud&#8217;s System Preference panel. </p>
<p>Hopefully a future update to iCloud and Photo Stream will allow us to choose an image download destination directly, but until then this great trick from <a href="http://www.idownloadblog.com/2012/02/11/save-photo-stream-images/">iDownloadblog</a> works just fine.</p>
<p>Like this? Check out some <a href="http://osxdaily.com/tag/icloud/">more iCloud tips</a>.</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/T-xrhdMjljHh19OS0-jN__heIq0/0/da"><img src="http://feedads.g.doubleclick.net/~a/T-xrhdMjljHh19OS0-jN__heIq0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/T-xrhdMjljHh19OS0-jN__heIq0/1/da"><img src="http://feedads.g.doubleclick.net/~a/T-xrhdMjljHh19OS0-jN__heIq0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=Ctw7WjHKOP0:bB5DxiEI2pg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Ctw7WjHKOP0:bB5DxiEI2pg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=Ctw7WjHKOP0:bB5DxiEI2pg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Ctw7WjHKOP0:bB5DxiEI2pg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=Ctw7WjHKOP0:bB5DxiEI2pg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Ctw7WjHKOP0:bB5DxiEI2pg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Ctw7WjHKOP0:bB5DxiEI2pg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/Ctw7WjHKOP0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/11/save-photo-stream-photos-to-folder-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/11/save-photo-stream-photos-to-folder-mac-os-x/</feedburner:origLink></item>
		<item>
		<title>Make an Active Console Log the Background Wallpaper of iPad or iPhone</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/14JQztdAdBs/</link>
		<comments>http://osxdaily.com/2012/02/11/make-an-active-console-log-the-background-wallpaper-of-ipad-or-iphone/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 19:51:09 +0000</pubDate>
		<dc:creator>William Pearson</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[cydia]]></category>
		<category><![CDATA[interesting]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[Jailbreak]]></category>
		<category><![CDATA[WallpaperLog]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=27104</guid>
		<description><![CDATA[A new free app will soon be available on the Cydia store that puts an active Console log as the background wallpaper of your iPhone, iPad, or iPod touch, giving you an overview of all low level events going on with iOS on the device. WallpaperLog will be a free download on Cydia. Of course, [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://osxdaily.com/wp-content/uploads/2012/02/wallpaperlog-ios.jpg" alt="WallpaperLog for iOS" title="wallpaperlog-ios" width="620" height="439" class="aligncenter size-full wp-image-27105" /></p>
<p>A new free app will soon be available on the Cydia store that puts an active Console log as the background wallpaper of your iPhone, iPad, or iPod touch, giving you an overview of all low level events going on with iOS on the device. </p>
<p>WallpaperLog will be a free download on Cydia. Of course, to use and access the Cydia store you will need to have a jailbroken iOS device. Nowadays that isn&#8217;t too hard to do and it&#8217;s easy to reverse, so if you don&#8217;t have jailbroken hardware and are interested in trying this out, backup your iOS device and then use either <a href="http://osxdaily.com/2012/01/20/jailbreak-iphone-4s-ios-5-0-1-absinthe/">Absinthe for iOS 5.01. on iPad 2 and iPhone 4S</a> or <a href="http://osxdaily.com/2011/12/27/how-to-jailbreak-ios-5-0-1-untethered-with-redsn0w/">redsn0w for iOS 5.0.1 on all other iDevices</a>. </p>
<p>It&#8217;s not known for certain yet, but it looks like this scrolls through /private/var/log/system.log, as you can see up top on an iPhone (left) and iPad (right), and larger full size screenshots below. Is this useful? Not necessarily for everyone. Is this cool? Yes, absolutely, and the geekier amongst us should get a kick out of it, much like a GeekTool script <a href="http://osxdaily.com/2011/07/11/display-a-list-of-open-network-connections-on-the-mac-os-x-desktop/">running atop</a> the background of a Mac OS X desktop,</p>
<p><span id="more-27104"></span><br />
Larger view of WallpaperLog on iPad:<br />
<img src="http://osxdaily.com/wp-content/uploads/2012/02/wallpaperlog-ipad.jpg" alt="WallpaperLog on iPad" title="wallpaperlog-ipad" width="620" height="827" class="aligncenter size-full wp-image-27106" /></p>
<p>Larger screen shot of WallpaperLog on iPhone:<br />
<img src="http://osxdaily.com/wp-content/uploads/2012/02/wallpaperlog-iphone.jpg" alt="WallpaperLog on iPhone" title="wallpaperlog-iphone" width="600" height="900" class="aligncenter size-full wp-image-27107" /></p>
<p>If you don&#8217;t see WallpaperLog yet it&#8217;s because it was just submitted, so look again shortly and it should be up. Hat tip to developer <a href="https://twitter.com/filippobiga/status/168399796686692354">@filippobiga</a> for screenshots and info.</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/hT3XvfEgPnO2M7DCtjCGOCLO7vA/0/da"><img src="http://feedads.g.doubleclick.net/~a/hT3XvfEgPnO2M7DCtjCGOCLO7vA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hT3XvfEgPnO2M7DCtjCGOCLO7vA/1/da"><img src="http://feedads.g.doubleclick.net/~a/hT3XvfEgPnO2M7DCtjCGOCLO7vA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=14JQztdAdBs:N3IzaLwYsRA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=14JQztdAdBs:N3IzaLwYsRA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=14JQztdAdBs:N3IzaLwYsRA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=14JQztdAdBs:N3IzaLwYsRA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=14JQztdAdBs:N3IzaLwYsRA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=14JQztdAdBs:N3IzaLwYsRA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=14JQztdAdBs:N3IzaLwYsRA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/14JQztdAdBs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/11/make-an-active-console-log-the-background-wallpaper-of-ipad-or-iphone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/11/make-an-active-console-log-the-background-wallpaper-of-ipad-or-iphone/</feedburner:origLink></item>
		<item>
		<title>Mac Setups: MacBook Pro 13″ &amp; External LG 22″ Display</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/jHnzi6pUJiw/</link>
		<comments>http://osxdaily.com/2012/02/11/mac-setups-macbook-pro-13-external-lg-22-display/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 19:11:42 +0000</pubDate>
		<dc:creator>William Pearson</dc:creator>
				<category><![CDATA[Mac Setups]]></category>
		<category><![CDATA[Apple setup]]></category>
		<category><![CDATA[apple setups]]></category>
		<category><![CDATA[mac setup]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=26825</guid>
		<description><![CDATA[This nice and clean Mac setup comes from reader Jason Y. and is used for graphic design and photo editing. Rather than going with the defacto Apple keyboard and mouse, Jason chose a wireless mouse and solar keyboard from Logitech, making it stand out a bit from the pack. Hardware shown in this setup consists [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://osxdaily.com/wp-content/uploads/2012/02/macbook-pro-desk.jpg" alt="MacBook Pro Desk" title="macbook-pro-desk" width="620" height="339" class="aligncenter size-full wp-image-26827" /></p>
<p>This nice and clean Mac setup comes from reader Jason Y. and is used for graphic design and photo editing. Rather than going with the defacto Apple keyboard and mouse, Jason chose a wireless mouse and solar keyboard from Logitech, making it stand out a bit from the pack. Hardware shown in this setup consists of the following gear:</p>
<ul>
<li>Macbook Pro 13&#8243; 2011 model with i5 CPU and 8GB RAM</li>
<li><a href="http://www.amazon.com/gp/product/B0044RUSZM/ref=as_li_ss_tl?ie=UTF8&#038;tag=oxd-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B0044RUSZM">Griffin Elevator Laptop Stand</a><img src="http://www.assoc-amazon.com/e/ir?t=oxd-20&#038;l=as2&#038;o=1&#038;a=B0044RUSZM" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></li>
<li>LG 22&#8243; Flatron IPS226 Display</li>
<li><a href="http://www.amazon.com/gp/product/B005L38VRU/ref=as_li_ss_tl?ie=UTF8&#038;tag=oxd-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B005L38VRU">Logitech Wireless Solar Keyboard (Mac layout)</a><img src="http://www.assoc-amazon.com/e/ir?t=oxd-20&#038;l=as2&#038;o=1&#038;a=B005L38VRU" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />)</li>
<li>Logitech M215 mouse</li>
</ul>
<p>I have an older MacBook Pro 13&#8243; on the same Griffin laptop stand with an external monitor, and I can confirm that it makes for a pretty nice desk arrangement that emphasizes productivity. Using a laptop stand provides for better ergonomics by raising the display closer to eye level, and also helps keep the MacBook Pro cool by allowing for improved airflow. I&#8217;ve never used a solar powered keyboard before, but it&#8217;s very well rated on Amazon and not having to deal with swapping out dead batteries constantly sounds like a nice perk.</p>
<p>Another great <a href="http://osxdaily.com/category/mac-setups/">Mac setup</a>, thanks for sending this in Jason!</p>
<p><em>Submit pictures of your own Apple &#038; Mac setups to osxdailycom@gmail.com &#8211; please include some details on the hardware and what you use it for.</em></p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/qr6u5XL3__763x8JmQ5oledPwD0/0/da"><img src="http://feedads.g.doubleclick.net/~a/qr6u5XL3__763x8JmQ5oledPwD0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qr6u5XL3__763x8JmQ5oledPwD0/1/da"><img src="http://feedads.g.doubleclick.net/~a/qr6u5XL3__763x8JmQ5oledPwD0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=jHnzi6pUJiw:hskhjQER-kM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=jHnzi6pUJiw:hskhjQER-kM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=jHnzi6pUJiw:hskhjQER-kM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=jHnzi6pUJiw:hskhjQER-kM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=jHnzi6pUJiw:hskhjQER-kM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=jHnzi6pUJiw:hskhjQER-kM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=jHnzi6pUJiw:hskhjQER-kM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/jHnzi6pUJiw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/11/mac-setups-macbook-pro-13-external-lg-22-display/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/11/mac-setups-macbook-pro-13-external-lg-22-display/</feedburner:origLink></item>
		<item>
		<title>Disable Launchpad Fade Transition Effect in Mac OS X Lion</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/Gxtpf3FXmM0/</link>
		<comments>http://osxdaily.com/2012/02/10/disable-launchpad-fade-transition-effect-in-mac-os-x/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 22:22:33 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Customize]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[defaults write]]></category>
		<category><![CDATA[LaunchPad]]></category>
		<category><![CDATA[Mac OS X 10.7]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=27086</guid>
		<description><![CDATA[Launchpad shows a fading transition anytime it is opened or closed, making for a nice effect over whatever is in the background. It&#8217;s pleasant looking, but if you don&#8217;t like it you can disable the fading with a few defaults write commands. You can also choose to disable only half of the transition, either for [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://osxdaily.com/wp-content/uploads/2012/02/launchpad-transition.jpg" alt="Launchpad Transition in Mac OS X Lion" title="launchpad-transition" width="620" height="339" class="aligncenter size-full wp-image-27094" /></p>
<p>Launchpad shows a fading transition anytime it is opened or closed, making for a nice effect over whatever is in the background. It&#8217;s pleasant looking, but if you don&#8217;t like it you can disable the fading with a few defaults write commands. You can also choose to disable only half of the transition, either for showing or hiding Launchpad.</p>
<h2 style="font-size:1.2em;">Disable Launchpad Fading</h2>
<p>Launch the Terminal and enter the following commands separately:</p>
<p><code>defaults write com.apple.dock springboard-show-duration -int 0</code><br />
<code>defaults write com.apple.dock springboard-hide-duration -int 0</code></p>
<p>Now you must kill the Dock so it relaunches with the changes:</p>
<p><code>killall Dock</code></p>
<p>Launchpad is a subprocess of the Dock so killing the Dock forces Launchpad to reload, and the change will be immediately noticeable when you open <a href="http://osxdaily.com/tag/launchpad/">Launchpad</a> again. Gone is the smooth transition, and now it&#8217;s a sudden switch, almost like changing desktops but without the side scrolling animation. If you only want to disable half of the effect, say for when Launchpad is being hidden, only use the defaults write command with &#8220;springboard-hide-duration&#8221; in the string.</p>
<h2 style="font-size:1.2em;">Re-enable Launchpad Fading</h2>
<p>To reenable fading and go back to the default OS X Lion setting, use the following commands:</p>
<p><code> defaults delete com.apple.dock springboard-show-duration</code><br />
<code> defaults delete com.apple.dock springboard-hide-duration</code></p>
<p>Again kill the Dock with:</p>
<p><code>killall Dock</code></p>
<p><img src="http://osxdaily.com/wp-content/uploads/2012/02/remove-launchpad-fade-effect.jpg" alt="Remove Launchpad Fade Effect" title="remove-launchpad-fade-effect" width="620" height="248" class="aligncenter size-full wp-image-27087" /></p>
<p>Launchpad will now be back to it&#8217;s usual self with the fading transitions. If you&#8217;re not certain, hold down the shift key and see if the transition is <a href="http://osxdaily.com/2011/11/13/hold-shift-key-to-use-launchpad-in-slow-motion/">in slow motion</a>.</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/pqerLYTBLJYuDJRcakCTSmTkE-8/0/da"><img src="http://feedads.g.doubleclick.net/~a/pqerLYTBLJYuDJRcakCTSmTkE-8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/pqerLYTBLJYuDJRcakCTSmTkE-8/1/da"><img src="http://feedads.g.doubleclick.net/~a/pqerLYTBLJYuDJRcakCTSmTkE-8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=Gxtpf3FXmM0:CquLo4f5Y2Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Gxtpf3FXmM0:CquLo4f5Y2Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=Gxtpf3FXmM0:CquLo4f5Y2Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Gxtpf3FXmM0:CquLo4f5Y2Q:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=Gxtpf3FXmM0:CquLo4f5Y2Q:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Gxtpf3FXmM0:CquLo4f5Y2Q:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Gxtpf3FXmM0:CquLo4f5Y2Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/Gxtpf3FXmM0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/10/disable-launchpad-fade-transition-effect-in-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/10/disable-launchpad-fade-transition-effect-in-mac-os-x/</feedburner:origLink></item>
		<item>
		<title>Redesigned MacBook Pro Lineup to be Revealed This Year?</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/cIvJfedgxww/</link>
		<comments>http://osxdaily.com/2012/02/10/redesigned-macbook-pro-lineup-to-be-revealed-this-year/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 20:28:24 +0000</pubDate>
		<dc:creator>Matt Chan</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Rumor]]></category>
		<category><![CDATA[macbook pro]]></category>
		<category><![CDATA[rumors]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=27077</guid>
		<description><![CDATA[The entire MacBook Pro lineup will be redesigned &#8220;radically&#8221; this year to more closely resemble the MacBook Air, according to a new report from AppleInsider. Citing a source who says &#8220;they&#8217;re all going to look like MacBook Airs,&#8221; AppleInsider also suggests the MacBook Pro 15&#8243; will likely be the first of the bunch to be [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://osxdaily.com/wp-content/uploads/2012/02/macbook-pro-lineup-2012.jpg" alt="MacBook Pro Lineup in 2012 maybe" title="macbook-pro-lineup-2012" width="620" height="98" class="aligncenter size-full wp-image-27078" /></p>
<p>The entire MacBook Pro lineup will be redesigned &#8220;radically&#8221; this year to more closely resemble the MacBook Air, according to a new report from <a href="http://www.appleinsider.com/articles/12/02/10/apple_to_disrupt_notebook_space_with_radically_redesigned_macbook_pros.html">AppleInsider</a>. Citing a source who says &#8220;they&#8217;re all going to look like MacBook Airs,&#8221; AppleInsider also suggests the MacBook Pro 15&#8243; will likely be the first of the bunch to be redesigned, and will feature the removal of older technologies like the traditional hard disk drive and optical drives, in favor of digital distribution and SSD drives.</p>
<p>Assuming the latest report lines up with past rumors and reports, here is what we could possibly see from a refreshed MacBook Pro line this year:</p>
<ul>
<li>Thin and light MacBook Air inspired design</li>
<li>Dual Core &#038; Quad Core Ivy Bridge CPU&#8217;s with speeds <a href="http://osxdaily.com/2011/12/06/future-macbook-air-to-support-two-external-displays/">up to 2.9GHz</a></li>
<li>An ultra high resolution display at <a href="http://osxdaily.com/2011/12/14/macbook-pro-with-2880x1800-retina-display-rumored-for-release-in-2012/">2880&#215;1800</a></li>
<li>SSD drive to replace the traditional hard drives</li>
<li>Removal of the optical drive</li>
<li>Longer battery life</li>
<li>Emphasis on digital distribution for software installation</li>
</ul>
<p>Taiwanese trade publication Digitimes previously suggested that a new MacBook Pro (or Air) 15&#8243; model <a href="http://osxdaily.com/2011/11/14/macbook-air-15-coming-in-2012/">may come in March</a>, which would coincide nicely with the <a href="http://osxdaily.com/2012/02/09/ipad-3-release-set-for-march/">iPad 3 rollout</a>. If the suspected high resolution display was included, it would also help to resolve the issue of designing for a <a href="http://osxdaily.com/2012/02/10/how-ipad-3s-retina-display-resolution-would-compare-to-other-screens/">retina iPad resolution</a> on the currently smaller screen resolutions offered with Mac laptops.</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/QZQYBX80z194DIWZuqtOmklZ32E/0/da"><img src="http://feedads.g.doubleclick.net/~a/QZQYBX80z194DIWZuqtOmklZ32E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QZQYBX80z194DIWZuqtOmklZ32E/1/da"><img src="http://feedads.g.doubleclick.net/~a/QZQYBX80z194DIWZuqtOmklZ32E/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=cIvJfedgxww:TPSDP625Fdo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=cIvJfedgxww:TPSDP625Fdo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=cIvJfedgxww:TPSDP625Fdo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=cIvJfedgxww:TPSDP625Fdo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=cIvJfedgxww:TPSDP625Fdo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=cIvJfedgxww:TPSDP625Fdo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=cIvJfedgxww:TPSDP625Fdo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/cIvJfedgxww" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/10/redesigned-macbook-pro-lineup-to-be-revealed-this-year/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/10/redesigned-macbook-pro-lineup-to-be-revealed-this-year/</feedburner:origLink></item>
		<item>
		<title>Keep a MacBook Running While Closed Without Going to Sleep with NoSleep</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/8sEuwJBbE1I/</link>
		<comments>http://osxdaily.com/2012/02/10/run-macbook-with-lid-closed-without-sleep-nosleep/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 19:06:31 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[clamshell]]></category>
		<category><![CDATA[clamshell mode]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[MacBook Air]]></category>
		<category><![CDATA[macbook pro]]></category>
		<category><![CDATA[NoSleep]]></category>
		<category><![CDATA[sleep]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=27063</guid>
		<description><![CDATA[With traditional clamshell mode for a MacBook Air, MacBook Pro, or Macbook, an external display, mouse, and keyboard must be attached in order to maintain the running closed-lid clamshell state. Thanks to a third party kernel extension called NoSleep we can now remove those hardware limitations and run a Mac laptop with the lid closed [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://osxdaily.com/wp-content/uploads/2012/02/closed-macbook-air.jpg" alt="Closed MacBook Air" title="closed-macbook-air" width="620" height="109" class="aligncenter size-full wp-image-27067" /></p>
<p>With traditional <a href="http://osxdaily.com/2010/04/15/how-to-use-a-macbook-or-macbook-pro-with-the-lid-closed-and-hooked-to-an-external-monitor/">clamshell mode</a> for a MacBook Air, MacBook Pro, or Macbook, an external display, mouse, and keyboard must be attached in order to maintain the running closed-lid clamshell state. Thanks to a third party kernel extension called NoSleep we can now remove those hardware limitations and run a Mac laptop with the lid closed and no hardware attached.</p>
<p>Installing NoSleep is easy and places a System Preference panel for configuration, along with a menu bar item that lets you toggle the NoSleep function similar to the Caffeine app, but only impacting lid sleep behavior. </p>
<ul>
<li><a href="http://code.google.com/p/macosx-nosleep-extension/">Download NoSleep from Google Code</a></li>
</ul>
<p><img src="http://osxdaily.com/wp-content/uploads/2012/02/closed-macbook-no-sleep.jpg" alt="Closed MacBook No Sleep" title="closed-macbook-no-sleep" width="620" height="388" class="aligncenter size-full wp-image-27070" /></p>
<p>Check &#8220;Do not fall asleep when lid is closed&#8221; and you can freely shut a portable Mac without the machine sleeping, even without a keyboard or display attached. This is great if you have an old MacBook laying around you want to use as a file server or wireless <a href="http://osxdaily.com/2010/06/18/mac-media-center/">media center</a>, or you just want to close a Mac while it sits quietly on a desk downloading large files or anything else &#8211; just remember to keep the Mac well ventilated when running with the lid closed.</p>
<p>If you&#8217;re done with NoSleep or just don&#8217;t find it useful, uninstalling NoSleep is best achieved through the bundled uninstaller bash script.</p>
<p>This extension was found on Twitter, although I can&#8217;t recall who from or the origin tweet. Thanks to whoever it was!</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/3v68CEwVHffdxwcMRdo5rYI6uJ0/0/da"><img src="http://feedads.g.doubleclick.net/~a/3v68CEwVHffdxwcMRdo5rYI6uJ0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/3v68CEwVHffdxwcMRdo5rYI6uJ0/1/da"><img src="http://feedads.g.doubleclick.net/~a/3v68CEwVHffdxwcMRdo5rYI6uJ0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=8sEuwJBbE1I:hHGXNHB7FLY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=8sEuwJBbE1I:hHGXNHB7FLY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=8sEuwJBbE1I:hHGXNHB7FLY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=8sEuwJBbE1I:hHGXNHB7FLY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=8sEuwJBbE1I:hHGXNHB7FLY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=8sEuwJBbE1I:hHGXNHB7FLY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=8sEuwJBbE1I:hHGXNHB7FLY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/8sEuwJBbE1I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/10/run-macbook-with-lid-closed-without-sleep-nosleep/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/10/run-macbook-with-lid-closed-without-sleep-nosleep/</feedburner:origLink></item>
		<item>
		<title>How iPad 3′s Retina Display Resolution Would Compare to Other Screens</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/X8Wo-V07a_0/</link>
		<comments>http://osxdaily.com/2012/02/10/how-ipad-3s-retina-display-resolution-would-compare-to-other-screens/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 07:02:29 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPad 3]]></category>
		<category><![CDATA[Rumor]]></category>
		<category><![CDATA[rumors]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=27051</guid>
		<description><![CDATA[Assuming iPad 3 (or whatever the next iPad is called) gets the much rumored and highly anticipated &#8216;retina&#8217; treatment, the screens resolution would come in at a whopping 2048&#215;1536 pixels. That&#8217;s an enormous amount of pixels for a screen that isn&#8217;t even 10&#8243;, and to help convey just how large that is comes an image [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://osxdaily.com/wp-content/uploads/2012/02/ipad-3-vs-other-resolutions.jpg" alt="iPad 3 vs other resolutions" title="ipad-3-vs-other-resolutions" width="620" height="465" class="aligncenter size-full wp-image-27052" style="border:1px solid #333;" /></p>
<p>Assuming iPad 3 (or whatever the next iPad is called) gets the <a href="http://osxdaily.com/2012/02/09/ipad-3-release-set-for-march/">much rumored</a> and highly anticipated &#8216;retina&#8217; treatment, the screens resolution would come in at a whopping 2048&#215;1536 pixels. That&#8217;s an enormous amount of pixels for a screen that isn&#8217;t even 10&#8243;, and to help convey just how large that is comes an image from <a href="http://clkoerner.com/2012/02/09/what-does-the-new-ipad-screen-look-like/">clkoerner</a> that compares the rumored iPad 3 resolution to other common resolutions, including the original iPhones, retina iPhones, prior iPads, and a Blu-ray full HD 1080p movie.</p>
<p><a href="http://clkoerner.com/wordpress/wp-content/uploads/2012/02/omgitsfullofpixels.png" target="_blank">Click here to see the full version</a>, be prepared to do a lot of horizontal and vertical scrolling. </p>
<p>As we&#8217;ve mentioned before, there is currently no Mac screen capable of displaying a resolution of that size natively, which will pose an interesting challenge for developers and designers to prepare artwork and apps for the next iPad. That fact combined with <a href="http://osxdaily.com/2012/02/07/high-dpi-cursors-found-in-os-x-10-7-3/">recent evidence</a> and rumors have led many to believe that Macs with high DPI displays may arrive soon after iPad 3 is announced, although this could be just wishful thinking. A refreshed Apple lineup complete with ultra high resolutions? Let&#8217;s hope so, we&#8217;ll be finding out soon enough.</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/nufZnX9aZA93NFxKgQYeToHvmZY/0/da"><img src="http://feedads.g.doubleclick.net/~a/nufZnX9aZA93NFxKgQYeToHvmZY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/nufZnX9aZA93NFxKgQYeToHvmZY/1/da"><img src="http://feedads.g.doubleclick.net/~a/nufZnX9aZA93NFxKgQYeToHvmZY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=X8Wo-V07a_0:g0ysUZxi_4U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=X8Wo-V07a_0:g0ysUZxi_4U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=X8Wo-V07a_0:g0ysUZxi_4U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=X8Wo-V07a_0:g0ysUZxi_4U:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=X8Wo-V07a_0:g0ysUZxi_4U:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=X8Wo-V07a_0:g0ysUZxi_4U:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=X8Wo-V07a_0:g0ysUZxi_4U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/X8Wo-V07a_0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/10/how-ipad-3s-retina-display-resolution-would-compare-to-other-screens/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/10/how-ipad-3s-retina-display-resolution-would-compare-to-other-screens/</feedburner:origLink></item>
		<item>
		<title>New iPhone 4S Commercials Focus on Siri: “Road Trip” and “Rock God”</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/BAjgubbBKbo/</link>
		<comments>http://osxdaily.com/2012/02/09/new-iphone-4s-commercials-focus-on-siri-road-trip-and-rock-god/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 06:08:40 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[apple commercial]]></category>
		<category><![CDATA[apple commercials]]></category>
		<category><![CDATA[iPhone 4S]]></category>
		<category><![CDATA[iPhone 4S commercial]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=27046</guid>
		<description><![CDATA[Apple has started to air two new iPhone 4S commercials that focus on Siri. The first ad is titled &#8220;Road Trip&#8221; and features a young couple winging a road trip with the help of Siri. The second ad is titled &#8220;Rock God&#8221; and features a teenagers journey with music, aided by none other than Siri. [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>Apple has started to air two new iPhone 4S commercials that focus on Siri. The first ad is titled &#8220;Road Trip&#8221; and features a young couple winging a road trip with the help of Siri. The second ad is titled &#8220;Rock God&#8221; and features a teenagers journey with music, aided by none other than Siri. Both follow the same recurring theme as past <a href="http://osxdaily.com/tag/iphone-4s-commercial/">iPhone 4S commercials</a> and have the same <a href="http://osxdaily.com/2011/12/11/background-music-from-the-iphone-4s-commercial/">background tune</a>. You can watch both of them below.</p>
<p><iframe width="620" height="345" src="http://www.youtube.com/embed/-UpmQN55q2g?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p><iframe width="620" height="345" src="http://www.youtube.com/embed/-G8fG1bKgQo?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p>As usual with <a href="http://osxdaily.com/tag/apple-commercial/">Apples commercials</a>, the objective is to show how people interact with the iPhone and Siri in real life situations. Although they aren&#8217;t as fun as the classic <a href="http://osxdaily.com/2011/12/18/santa-iphone-4s-commercial/">Santa Siri ad</a>, they both do a good job of conveying how useful Siri is for getting directions, finding food and events, retrieving information, sending text messages, and many other daily tasks.</p>
<p>These ads started to air earlier in the week, but weren&#8217;t posted online until this evening.</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/-V0NjdsTKqHbJbpwzB6zVK2POF4/0/da"><img src="http://feedads.g.doubleclick.net/~a/-V0NjdsTKqHbJbpwzB6zVK2POF4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-V0NjdsTKqHbJbpwzB6zVK2POF4/1/da"><img src="http://feedads.g.doubleclick.net/~a/-V0NjdsTKqHbJbpwzB6zVK2POF4/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=BAjgubbBKbo:9FfNvne1Rd4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=BAjgubbBKbo:9FfNvne1Rd4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=BAjgubbBKbo:9FfNvne1Rd4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=BAjgubbBKbo:9FfNvne1Rd4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=BAjgubbBKbo:9FfNvne1Rd4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=BAjgubbBKbo:9FfNvne1Rd4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=BAjgubbBKbo:9FfNvne1Rd4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/BAjgubbBKbo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/09/new-iphone-4s-commercials-focus-on-siri-road-trip-and-rock-god/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/09/new-iphone-4s-commercials-focus-on-siri-road-trip-and-rock-god/</feedburner:origLink></item>
		<item>
		<title>Set Gmail as Default Email Client for Chrome, Firefox, and Safari</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/fVb8Zfwy3fA/</link>
		<comments>http://osxdaily.com/2012/02/09/gmail-default-email-client-for-chrome-firefox-safari/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 23:55:42 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[web browser]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=27036</guid>
		<description><![CDATA[Clicking an email link in a web browser defaults to launching Mail.app, which is great if you use Mail but not so great if you use webmail services like Gmail. This is fairly easy to resolve, though you&#8217;ll have to configure it separately on a per-browser basis, with different methods for Firefox, Safari, Chrome, and [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://osxdaily.com/wp-content/uploads/2012/02/gmail1.jpg" alt="Gmail as the default email client" title="gmail" width="445" height="150" class="aligncenter size-full wp-image-27043" /></p>
<p>Clicking an email link in a web browser defaults to launching Mail.app, which is great if you use Mail but not so great if you use webmail services like Gmail. This is fairly easy to resolve, though you&#8217;ll have to configure it separately on a per-browser basis, with different methods for Firefox, Safari, Chrome, and Opera.</p>
<h2 style="font-size:1.2em;">Set Gmail as Default Email Client in Chrome and Opera</h2>
<ul>
<li>Launch a new browser window and open up Gmail</li>
<li>Open the Javascript console by hitting Command+Option+J and then paste in the following:<br />
<code>navigator.registerProtocolHandler("mailto",<br />
                                  "https://mail.google.com/mail/?extsrc=mailto&#038;url=%s",<br />
                                  "Gmail");</code></p>
<li>Accept the confirmation at the top of the browser window and <a href="mailto:osxdailycom@gmail.com?subject=I set Gmail as my default mail client">try out a mailto link</a></li>
</ul>
<p><img src="http://osxdaily.com/wp-content/uploads/2012/02/gmail-default-email-client-chrome.jpg" alt="Gmail as default email in Chrome" title="gmail-default-email-client-chrome" width="620" height="179" class="aligncenter size-full wp-image-27039" /></p>
<p>This can be undone or changed again by going to chrome://settings/handlers and adjusting the setting as appropriate.</p>
<h2 style="font-size:1.2em;">Use Gmail as Default Email in Firefox</h2>
<ul>
<li>Open Firefox Preferences</li>
<li>Click on &#8220;Applications&#8221; tab</li>
<li>Locate &#8220;mailto&#8221; under the &#8216;Content Type&#8217; tab and change the action to &#8220;Use Gmail&#8221;</li>
<li>Close out of Firefox Preferences</li>
</ul>
<p><img src="http://osxdaily.com/wp-content/uploads/2012/02/gmail-email-client-firefox.jpg" alt="Gmail Default Email with Firefox" title="gmail-email-client-firefox" width="619" height="226" class="aligncenter size-full wp-image-27038" /></p>
<p>Switching back to the default behavior is just a matter of selecting Mail again as the action.</p>
<h2 style="font-size:1.2em;">Using Gmail as Email Default in Safari</h2>
<p>Safari users can either use a browser extension called GmailThis available from <a href="https://extensions.apple.com/#email">Apple&#8217;s extensions gallery</a>, or can use apps like <a href="http://toolbar.google.com/gmail-helper/notifier_mac.html">Gmail Notifier</a> which we have discussed <a href="http://osxdaily.com/2007/03/17/google-notifier-gmail-alerts-in-your-menubar/">here before</a> for it&#8217;s menu bar alerts.  After Google Notifier has been installed:</p>
<ul>
<li>Open Mail Preferences and click on &#8220;General&#8221;</li>
<li>Pull down the &#8220;Default email reader&#8221; and locate &#8216;Google Notifier&#8217;</li>
<li>Quit out of Mail.app</li>
</ul>
<p>Older versions of Mac OS X can use <a href="http://osxdaily.com/2007/03/09/how-to-use-gmail-or-yahoo-web-mail-for-mailto-links/">WebMailer</a> as well, but Google Notifier is the most reliable. </p>
<p>Heads up to <a href="http://updates.html5rocks.com/2012/02/Getting-Gmail-to-handle-all-mailto-links-with-registerProtocolHandler">HTML5Rocks</a> for the Chrome tip.</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/dOG-m2zHmXOj4Uz2sJHi3AiGSP4/0/da"><img src="http://feedads.g.doubleclick.net/~a/dOG-m2zHmXOj4Uz2sJHi3AiGSP4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dOG-m2zHmXOj4Uz2sJHi3AiGSP4/1/da"><img src="http://feedads.g.doubleclick.net/~a/dOG-m2zHmXOj4Uz2sJHi3AiGSP4/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=fVb8Zfwy3fA:8ro032rgzD0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=fVb8Zfwy3fA:8ro032rgzD0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=fVb8Zfwy3fA:8ro032rgzD0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=fVb8Zfwy3fA:8ro032rgzD0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=fVb8Zfwy3fA:8ro032rgzD0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=fVb8Zfwy3fA:8ro032rgzD0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=fVb8Zfwy3fA:8ro032rgzD0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/fVb8Zfwy3fA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/09/gmail-default-email-client-for-chrome-firefox-safari/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/09/gmail-default-email-client-for-chrome-firefox-safari/</feedburner:origLink></item>
		<item>
		<title>See Every Apple Design Released in History With a 30 Second Video</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/RnjHApvI7Xo/</link>
		<comments>http://osxdaily.com/2012/02/09/see-every-apple-design-in-history-with-a-30-second-video/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 20:31:43 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Apple history]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=27016</guid>
		<description><![CDATA[Want to see every Apple design ever released in 30 seconds of cheesy video? Of course you do. You&#8217;ll see everything from the Apple I to the QuickTake Camera to the LC III and of course modern gear like the iPhone and iPad. It looks like all the bases of Apple&#8217;s historical releases are covered [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><iframe width="620" height="345" src="http://www.youtube.com/embed/ScHTwrvkOXA?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p>Want to see every Apple design ever released in 30 seconds of cheesy video? Of course you do. You&#8217;ll see everything from the Apple I to the QuickTake Camera to the LC III and of course modern gear like the iPhone and iPad. It looks like all the bases of Apple&#8217;s <a href="http://osxdaily.com/tag/apple-history/">historical</a> releases are covered here, although I&#8217;m not so sure the sock looking things at the end are genuine Apple gear.</p>
<p><strong>Update</strong>: Apparently the socks at the end are real, <a href="http://store.apple.com/us/product/M9720G/B">yes Apple sells socks</a>, well, for your iPod anyway. Thanks to those who pointed this out!</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/Uyn3DGTv50ZAM40wEHXkHCaPqFw/0/da"><img src="http://feedads.g.doubleclick.net/~a/Uyn3DGTv50ZAM40wEHXkHCaPqFw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Uyn3DGTv50ZAM40wEHXkHCaPqFw/1/da"><img src="http://feedads.g.doubleclick.net/~a/Uyn3DGTv50ZAM40wEHXkHCaPqFw/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=RnjHApvI7Xo:JwYQq27H9kk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=RnjHApvI7Xo:JwYQq27H9kk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=RnjHApvI7Xo:JwYQq27H9kk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=RnjHApvI7Xo:JwYQq27H9kk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=RnjHApvI7Xo:JwYQq27H9kk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=RnjHApvI7Xo:JwYQq27H9kk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=RnjHApvI7Xo:JwYQq27H9kk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/RnjHApvI7Xo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/09/see-every-apple-design-in-history-with-a-30-second-video/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/09/see-every-apple-design-in-history-with-a-30-second-video/</feedburner:origLink></item>
		<item>
		<title>iPad 3 Release Set for March</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/b1mXGj0EzyI/</link>
		<comments>http://osxdaily.com/2012/02/09/ipad-3-release-set-for-march/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 17:57:04 +0000</pubDate>
		<dc:creator>Matt Chan</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Rumor]]></category>
		<category><![CDATA[iPad 3]]></category>
		<category><![CDATA[rumors]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=27017</guid>
		<description><![CDATA[The iPad 3 will be announced in the first week of March and likely go on sale soon after, according to a new report from the Wall Street Journal&#8217;s AllThingsD. Typically well connected and the source of most accurate leaks from Apple, AllThingsD says the event will probably be held at the Yerba Buena Center [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://osxdaily.com/wp-content/uploads/2012/02/ipad-3-looks-like-ipad-2.jpg" alt="iPad 3 looks like an iPad 2" title="ipad-3-looks-like-ipad-2" width="620" height="64" class="aligncenter size-full wp-image-27021" /></p>
<p>The <a href="http://osxdaily.com/tag/ipad-3/">iPad 3</a> will be announced in the first week of March and likely go on sale soon after, according to a new report from the <a href="http://allthingsd.com/20120209/apple-to-announce-ipad-3-first-week-in-march/">Wall Street Journal&#8217;s AllThingsD</a>. Typically well connected and the source of most accurate leaks from Apple, AllThingsD says the event will probably be held at the Yerba Buena Center for the Arts in San Francisco.</p>
<p>As for the device itself, AllThingsD reiterates existing rumors that iPad 3 will have a much faster processor and a high resolution &#8220;retina&#8221; display. Here is a roundup of the current rumors to paint a better picture of the device we&#8217;ll see in March:</p>
<ul>
<li>Quad-Core CPU</li>
<li>Improved graphics chip</li>
<li>2048&#215;1536 resolution retina display</li>
<li>Dual Mode CDMA-GSM Support for 3G devices</li>
<li>Improved rear and front cameras</li>
<li>Enclosure, size, and appearance practically identical to iPad 2</li>
<li>Siri integration</li>
<li>Likely to ship with iOS 5.1</li>
</ul>
<p>Most of these rumors have <a href="http://osxdaily.com/2011/11/22/ipad-3-with-retina-display-and-an-ipad-mini-7-8-to-be-released-in-2012/">been around a while</a> in some form or another. There is also some speculation that the next iPad won&#8217;t be called iPad 3 at all, but possibly iPad 2S, iPad HD, or something else entirely.</p>
<p>Regarding the physical appearance of the device, AllThingsD says the next iPad will be &#8220;similar in form factor to the iPad 2&#8243;. This is familiar wording to the final rumors leading up to the iPhone 4S&#8217;s release last year, which ended up looking almost identical to the prior generation iPhone 4. The idea of having a similar appearance is also backed up by recently leaked images from <a href="http://apple.pro/index.php?do=/blog/7/ipad3-%E5%BE%8C%E8%93%8B%E6%9B%9D%E5%85%89%E6%80%8E%E9%BA%BC%E9%80%99%E9%BA%BC%E5%A4%9A%E9%98%BF-xd/">Apple.pro</a> that are said to be of the third generation iPad rear shell:</p>
<p><img src="http://osxdaily.com/wp-content/uploads/2012/02/ipad-3-shell.jpg" alt="iPad 3 shell" title="ipad-3-shell" width="620" height="223" class="aligncenter size-full wp-image-27020" /></p>
<p>These pictures show what appears to be a rear enclosure for an iPad with a 3G antenna, and although it looks nearly the same as iPad 2 there are some minor differences in how the interior is laid out.</p>
<p><strong>Update:</strong> The <a href="http://bits.blogs.nytimes.com/2012/02/09/ipad-march-apple/">New York Times</a> is also chiming in with their own sources, confirming the early March timeframe and also reaffirming some of the hardware rumors:</p>
<blockquote><p>An Apple employee said that the version of the new iPad that is being tested inside the company is “essentially the same size and shape as the iPad 2,” with an improved and “truly amazing” screen. The tablet will include a faster processor, said the employee, who did not want to be identified because Apple is not fond of leaks.</p></blockquote>
<p>The NYT report also raises some questions on naming the next iPad, which may or may not be called iPad 3.</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/t7DRUZORmYaBs0Y8LDDBDQTDk_M/0/da"><img src="http://feedads.g.doubleclick.net/~a/t7DRUZORmYaBs0Y8LDDBDQTDk_M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/t7DRUZORmYaBs0Y8LDDBDQTDk_M/1/da"><img src="http://feedads.g.doubleclick.net/~a/t7DRUZORmYaBs0Y8LDDBDQTDk_M/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=b1mXGj0EzyI:_sVdWE6EI8w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=b1mXGj0EzyI:_sVdWE6EI8w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=b1mXGj0EzyI:_sVdWE6EI8w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=b1mXGj0EzyI:_sVdWE6EI8w:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=b1mXGj0EzyI:_sVdWE6EI8w:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=b1mXGj0EzyI:_sVdWE6EI8w:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=b1mXGj0EzyI:_sVdWE6EI8w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/b1mXGj0EzyI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/09/ipad-3-release-set-for-march/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/09/ipad-3-release-set-for-march/</feedburner:origLink></item>
		<item>
		<title>Verify SHA1 Hash with openssl</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/Ei1WVQFdzi4/</link>
		<comments>http://osxdaily.com/2012/02/09/verify-sha1-hash-with-openssl/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 13:54:18 +0000</pubDate>
		<dc:creator>William Pearson</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[hash]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[sha1]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=26869</guid>
		<description><![CDATA[An alternative to checking a SHA1 hash with shasum is to use openssl. Yes, the same openssl utility used to encrypt files can be used to verify the validity of files. The syntax is quite similar to the shasum command, but you do need to specify &#8216;sha1&#8242; as the specific algorithm: openssl sha1 /path/to/filename To [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>An alternative to <a href="http://osxdaily.com/2012/02/05/check-sha1-checksum-in-mac-os-x/">checking a SHA1 hash with shasum</a> is to use openssl. Yes, the same openssl utility used to <a href="http://osxdaily.com/2012/01/30/encrypt-and-decrypt-files-with-openssl/">encrypt files</a> can be used to verify the validity of files. </p>
<p>The syntax is quite similar to the shasum command, but you do need to specify &#8216;sha1&#8242; as the specific algorithm:</p>
<p><code>openssl sha1 /path/to/filename</code></p>
<p>To verify a file on the desktop, the command would look like this:</p>
<p><code>openssl sha1 ~/Desktop/DownloadedFile.dmg</code></p>
<p>The output isn&#8217;t quite as nice as shasum, but it remains easy to interpret:</p>
<p><code>$ openssl sha1 ~/Desktop/DownloadedFile.dmg<br />
SHA1(/Users/OSXDaily/Desktop/DownloadedFile.dmg)= ba33b60954960b0836daac20b98abd25a21618da3</code></p>
<p>For the average user, there isn&#8217;t much advantage to use openssl over shasum when verifying checksums, so it&#8217;s mostly a matter of habit and whichever is most convenient.</p>
<p><em>Thanks to those readers who recommended this.</em></p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/338hn_ovHDucS5ACfbcBvjaOxvA/0/da"><img src="http://feedads.g.doubleclick.net/~a/338hn_ovHDucS5ACfbcBvjaOxvA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/338hn_ovHDucS5ACfbcBvjaOxvA/1/da"><img src="http://feedads.g.doubleclick.net/~a/338hn_ovHDucS5ACfbcBvjaOxvA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=Ei1WVQFdzi4:WFPcbKzFLFY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Ei1WVQFdzi4:WFPcbKzFLFY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=Ei1WVQFdzi4:WFPcbKzFLFY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Ei1WVQFdzi4:WFPcbKzFLFY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=Ei1WVQFdzi4:WFPcbKzFLFY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Ei1WVQFdzi4:WFPcbKzFLFY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Ei1WVQFdzi4:WFPcbKzFLFY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/Ei1WVQFdzi4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/09/verify-sha1-hash-with-openssl/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/09/verify-sha1-hash-with-openssl/</feedburner:origLink></item>
		<item>
		<title>How to Restore an iPhone or iPad Using iTunes</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/8c1uvRykIQw/</link>
		<comments>http://osxdaily.com/2012/02/09/restore-iphone-or-ipad-with-itunes/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 12:12:32 +0000</pubDate>
		<dc:creator>Matt Chan</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=26055</guid>
		<description><![CDATA[Restoring an iPhone or iPad to it&#8217;s default factory settings is easy whether you are restoring as a troubleshooting step or just preparing to transfer ownership of the hardware. You can reset the iPhone on the the device itself, but if the device is unresponsive, stuck on a boot loop, or otherwise needs to be [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://osxdaily.com/wp-content/uploads/2012/02/restore-iphone-or-ipad.jpg" alt="Restore an iPhone or iPad" title="restore-iphone-or-ipad" width="570" height="289" class="aligncenter size-full wp-image-26993" /></p>
<p>Restoring an iPhone or iPad to it&#8217;s default factory settings is easy whether you are restoring as a troubleshooting step or just preparing to transfer ownership of the hardware. You can <a href="http://osxdaily.com/2012/01/17/reset-iphone-factory-settings/">reset the iPhone on the the device itself</a>, but if the device is unresponsive, stuck on a boot loop, or otherwise needs to be restored directly, the next choice is to connect the iOS hardware to a computer and use iTunes.</p>
<p>Using iTunes is also typically faster than resetting through the iPhone or iPad itself, so keep this in mind if you tried the on-device method but it took forever.</p>
<h2 style="font-size:1.2em;">How to Restore an iPhone or iPad with iTunes</h2>
<p>If you want to restore to factory settings, <em>do not</em> restore from a backup during this process:</p>
<ol>
<li>Launch iTunes</li>
<li>Connect the iPhone, iPad, or iPod touch to the computer and select it within iTunes, if it&#8217;s <a href="http://osxdaily.com/2012/02/07/iphone-not-in-itunes-easy-fix/">not visible</a> check the &#8220;Show&#8221; button</li>
<li>Click on the &#8220;Summary&#8221; tab and click on the &#8220;Restore&#8221; button</li>
<p><img src="http://osxdaily.com/wp-content/uploads/2012/02/restore-iphone-factory-settings.jpg" alt="Restore iPhone or iPad to factory settings" title="restore-iphone-factory-settings" width="620" height="153" class="aligncenter size-full wp-image-26991" /></p>
<li>iTunes will prompt you to back up the device, this is recommended but if you want factory settings only click &#8220;Don&#8217;t Back Up&#8221;</li>
<li>At the confirmation screen, click on &#8220;Restore&#8221; to begin restoring the device to factory settings</li>
</ol>
<p>When finished, iTunes will alert you the device has been restored, but restoring may take a while. When the device is done, the iPhone/iPad/iPod touch will boot up and be reset completely to factory settings. This means that pre-iOS 5 will require the device to be connected to iTunes to finish, or after iOS 5 you will be presented with the familiar set up screens.</p>
<p>As mentioned before, to maintain the factory settings do not select to <a href="http://osxdaily.com/2010/10/21/restore-iphone-from-backup/">restore from a backup</a> when this process is finished, otherwise you&#8217;ll simply be left with a device that has a freshly installed iOS but with the same data as when you started.</p>
<p>If you encounter <a href="http://osxdaily.com/2010/12/06/error-3194-fix-for-itunes/">error 3194</a> during this process, you probably jailbroke your device at some point and need to change the the hosts file.</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/ODh7ifk6cXw1fcnZvvvO34mAiDc/0/da"><img src="http://feedads.g.doubleclick.net/~a/ODh7ifk6cXw1fcnZvvvO34mAiDc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ODh7ifk6cXw1fcnZvvvO34mAiDc/1/da"><img src="http://feedads.g.doubleclick.net/~a/ODh7ifk6cXw1fcnZvvvO34mAiDc/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=8c1uvRykIQw:2pX9UTub-dM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=8c1uvRykIQw:2pX9UTub-dM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=8c1uvRykIQw:2pX9UTub-dM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=8c1uvRykIQw:2pX9UTub-dM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=8c1uvRykIQw:2pX9UTub-dM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=8c1uvRykIQw:2pX9UTub-dM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=8c1uvRykIQw:2pX9UTub-dM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/8c1uvRykIQw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/09/restore-iphone-or-ipad-with-itunes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/09/restore-iphone-or-ipad-with-itunes/</feedburner:origLink></item>
		<item>
		<title>Organize, Tile, &amp; Resize Windows Without a Mouse Using Spectacle for Mac OS X</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/psI7OetXcI0/</link>
		<comments>http://osxdaily.com/2012/02/08/organize-tile-resize-windows-without-a-mouse-spectacle-for-mac-os-x/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 19:02:34 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[mac apps]]></category>
		<category><![CDATA[Spectacle]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=26975</guid>
		<description><![CDATA[Spectacle is a free utility for Mac OS X that helps you quickly and easily organize and resize windows, without using the mouse. Apps like this make it much easier to view multiple documents alongside one another and can help to boost productivity, particularly after you remember the keystrokes to throw windows around the screen. [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://osxdaily.com/wp-content/uploads/2012/02/spectacle-resizes-windows-mac.jpg" alt="Spectacle organizes and resizes windows in Mac OS X" title="spectacle-resizes-windows-mac" width="620" height="409" class="aligncenter size-full wp-image-26976" /></p>
<p>Spectacle is a free utility for Mac OS X that helps you quickly and easily organize and resize windows, without using the mouse. Apps like this make it much easier to view multiple documents alongside one another and can help to boost productivity, particularly after you remember the keystrokes to throw windows around the screen.</p>
<p>Want a browser window to align to the left while a text editor is aligned on the right? Want to tile four windows into each corner of the screen? Easy. If you use multiple monitors, Spectacle will also let you push windows to the the other displays too.</p>
<ul>
<li><a href="http://itunes.apple.com/us/app/spectacle/id487069743">Download Spectacle free from the Mac App Store</a></li>
</ul>
<p>Spectacle is open source and works with Mac OS X 10.6 and 10.7. Here&#8217;s the full list of keyboard shortcuts you can use:</p>
<h3 style="font-size:1.1em;">Spectacle Keyboard Shortcuts:</h3>
<ul>
<li>Center / Cmd + Alt + C</li>
<li>Fullscreen / Cmd + Alt + F</li>
</ul>
<ul>
<li>Left Half / Cmd + Alt + ←</li>
<li>Right Half / Cmd + Alt + →</li>
<li>Top Half / Cmd + Alt + ↑</li>
<li>Bottom Half / Cmd + Alt + ↓</li>
</ul>
<ul>
<li>Upper Left Corner / Cmd + Ctrl + ←</li>
<li>Lower Left Corner / Cmd + Shift + Ctrl + ←</li>
<li>Upper Right Corner / Cmd + Ctrl + →</li>
<li>Lower Right Corner / Cmd + Shift + Ctrl + →</li>
</ul>
<ul>
<li>Left Display / Cmd + Alt + Ctrl + ←</li>
<li>Right Display / Cmd + Alt + Ctrl + →</li>
<li>Top Display / Cmd + Alt + Ctrl + ↑</li>
<li>Bottom Display / Cmd + Alt + Ctrl + ↓</li>
</ul>
<p>The keystrokes are fully customizable, and the only other preference options are to show the Spectacle menu bar item and launch at login or not.</p>
<p><img src="http://osxdaily.com/wp-content/uploads/2012/02/spectacle-preferences.jpg" alt="Spectacle Preferences " title="spectacle-preferences" width="620" height="458" class="aligncenter size-full wp-image-26977" /></p>
<p>Even with OS X Lion&#8217;s <a href="http://osxdaily.com/2011/08/18/resize-windows-mac-os-x-modifier-keys/">new ways to resize windows</a>, I find apps like Spectacle to be extremely useful, and once you get the hang of using them it&#8217;s hard to go back.</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/isjLiIknPQPwaXaUrMy8kHcqXpc/0/da"><img src="http://feedads.g.doubleclick.net/~a/isjLiIknPQPwaXaUrMy8kHcqXpc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/isjLiIknPQPwaXaUrMy8kHcqXpc/1/da"><img src="http://feedads.g.doubleclick.net/~a/isjLiIknPQPwaXaUrMy8kHcqXpc/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=psI7OetXcI0:CVbv7rpN_3g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=psI7OetXcI0:CVbv7rpN_3g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=psI7OetXcI0:CVbv7rpN_3g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=psI7OetXcI0:CVbv7rpN_3g:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=psI7OetXcI0:CVbv7rpN_3g:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=psI7OetXcI0:CVbv7rpN_3g:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=psI7OetXcI0:CVbv7rpN_3g:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/psI7OetXcI0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/08/organize-tile-resize-windows-without-a-mouse-spectacle-for-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/08/organize-tile-resize-windows-without-a-mouse-spectacle-for-mac-os-x/</feedburner:origLink></item>
		<item>
		<title>Repair Boot Disk in Mac OS X Lion with Disk Utility &amp; Recovery HD</title>
		<link>http://feedproxy.google.com/~r/osxdaily/~3/Z4TcgmQMZ9I/</link>
		<comments>http://osxdaily.com/2012/02/08/repair-boot-disk-mac-os-x-disk-utilit/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 18:34:25 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[disk utility]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mac OS X 10.7]]></category>
		<category><![CDATA[recovery drive]]></category>
		<category><![CDATA[Recovery HD]]></category>
		<category><![CDATA[recovery mode]]></category>
		<category><![CDATA[Repair Disk]]></category>
		<category><![CDATA[repair permissions]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=26960</guid>
		<description><![CDATA[If you have tried to repair the boot volume before in Mac OS X before, you&#8217;ll undoubtedly have found the &#8220;Repair Disk&#8221; option is grey and unavailable within the Disk Utility tool. While this is still the case while booted in OS X Lion, you can repair the Mac OS X boot disk thanks to [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://osxdaily.com/wp-content/uploads/2012/02/repair-disk-disk-utility.jpg" alt="Repair Disk with Disk Utility " title="repair-disk-disk-utility" width="601" height="375" class="aligncenter size-full wp-image-26968" /></p>
<p>If you have tried to repair the boot volume before in Mac OS X before, you&#8217;ll undoubtedly have found the &#8220;Repair Disk&#8221; option is grey and unavailable within the Disk Utility tool. While this is still the case while booted in OS X Lion, you <em>can</em> repair the Mac OS X boot disk thanks to Lion&#8217;s Recovery Partition, preventing the need from using an external boot drive to repair the disk.</p>
<p><img src="http://osxdaily.com/wp-content/uploads/2012/02/repair-disk.jpg" alt="Repair Disk unavailable" title="repair-disk" width="514" height="83" class="aligncenter size-full wp-image-26971" /><br />
Once booted into Recovery mode you&#8217;ll find the limitations on Disk Utility&#8217;s repair function has been removed, here&#8217;s how to do that.</p>
<h2 style="font-size:1.2em;">Repairing a Mac Boot Disk with Disk Utility &#038; OS X Lion</h2>
<ul>
<li>Reboot the Mac and hold down Command+R to <a href="http://osxdaily.com/2012/02/03/how-to-boot-into-os-x-lions-recovery-hd-partition/">boot into Recovery</a></li>
<li>Select &#8220;Recovery HD&#8221; at the boot menu</li>
<li>At the Mac OS X Utilities screen, select &#8220;Disk Utility&#8221;</li>
<li>Select the boot volume or partition from the left menu and click on the &#8220;Repair&#8221; tab</li>
<li>Repair Disk is now possible, click on &#8220;Repair Disk&#8221; to repair the boot volume</li>
</ul>
<p><img src="http://osxdaily.com/wp-content/uploads/2012/02/repair-disk-boot-volume.jpg" alt="Repair Disk on Boot Volume" title="repair-disk-boot-volume" width="525" height="422" class="aligncenter size-full wp-image-26967" /></p>
<p>While you&#8217;re in Recovery mode, you may also want to verify disk permissions and repair them, <a href="http://osxdaily.com/2011/11/15/repair-user-permissions-in-mac-os-x-lion/">repair user permissions</a>, and verify and repair other disks as well.</p>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/btqNUOLYm54kh2Tuvv2aR8h4W4M/0/da"><img src="http://feedads.g.doubleclick.net/~a/btqNUOLYm54kh2Tuvv2aR8h4W4M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/btqNUOLYm54kh2Tuvv2aR8h4W4M/1/da"><img src="http://feedads.g.doubleclick.net/~a/btqNUOLYm54kh2Tuvv2aR8h4W4M/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/osxdaily?a=Z4TcgmQMZ9I:BxE8rwsZrR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Z4TcgmQMZ9I:BxE8rwsZrR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=Z4TcgmQMZ9I:BxE8rwsZrR0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Z4TcgmQMZ9I:BxE8rwsZrR0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/osxdaily?i=Z4TcgmQMZ9I:BxE8rwsZrR0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Z4TcgmQMZ9I:BxE8rwsZrR0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/osxdaily?a=Z4TcgmQMZ9I:BxE8rwsZrR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/osxdaily?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/osxdaily/~4/Z4TcgmQMZ9I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/02/08/repair-boot-disk-mac-os-x-disk-utilit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://osxdaily.com/2012/02/08/repair-boot-disk-mac-os-x-disk-utilit/</feedburner:origLink></item>
	</channel>
</rss><!-- W3 Total Cache: Page cache debug info:
Engine:             disk (enhanced)
Key:                feed/_index.html
Caching:            enabled
Status:             not cached
Creation Time:      0.388s
Header info:
X-Pingback:         http://osxdaily.com/xmlrpc.php
ETag:               "3b7d002d28756264bddb1abb87ce6be5"
X-Powered-By:       W3 Total Cache/0.9.1.3
Content-Type:       text/xml; charset=UTF-8
Last-Modified:      Sat, 11 Feb 2012 21:37:05 GMT
Vary:               Accept-Encoding, Cookie
Expires:            Sat, 11 Feb 2012 22:37:05 GMT
Content-Encoding:   gzip
-->

