<?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>Nick Schneble</title>
	<atom:link href="http://www.nschneble.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nschneble.com</link>
	<description>I eat burgers, watch movies and travel the world.</description>
	<lastBuildDate>Thu, 22 Mar 2012 23:15:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Restoring From iCloud, or How iTunes Deleted All My Damn Playlists</title>
		<link>http://www.nschneble.com/restoring-from-icloud-backups-or-how-itunes-deleted-all-my-damn-playlists/</link>
		<comments>http://www.nschneble.com/restoring-from-icloud-backups-or-how-itunes-deleted-all-my-damn-playlists/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 19:06:15 +0000</pubDate>
		<dc:creator>Nick Schneble</dc:creator>
				<category><![CDATA[Tech Gone Awry]]></category>

		<guid isPermaLink="false">http://www.nschneble.com/?p=2076</guid>
		<description><![CDATA[I updated my now-defunct iPhone 3GS to iOS 5 and performed an iCloud backup before I picked up my shiny new iPhone 4S. As a result, I was able to setup my new iPhone using this iCloud backup right from &#8230; <a href="http://www.nschneble.com/restoring-from-icloud-backups-or-how-itunes-deleted-all-my-damn-playlists/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I updated my now-defunct iPhone 3GS to iOS 5 and performed an iCloud backup before I picked up my shiny new iPhone 4S. As a result, I was able to setup my new iPhone using this iCloud backup right from the Apple store.</p>
<p>Pretty awesome, right?</p>
<p>Almost. Restoring from an iCould backup is essentially a three-step process: restore device settings, download purchased items, and sync with iTunes.</p>
<p><strong>Restore Device Settings</strong><br />
This part is golden. The crux of what is stored in an iCloud backup are your device settings and app data, and these are beautifully restored. Everything from playlists to Angry Birds scores are restored.</p>
<p><strong>Download Purchased Items</strong><br />
Instead of including purchased apps and media in your iCloud backup, Apple simply re-downloads everything after you do a restore. Unfortunately, this process was only somewhat successful. All my apps downloaded fine, but I received an alert that I would need to sync with iTunes to restore my purchased media.</p>
<p><strong>Sync with iTunes</strong><br />
This is where things start to fall apart. Since all my playlists were restored but none of my music, iTunes went ahead and mirrored those changes, deleting all the items in my playlists as a result.</p>
<p>I also couldn&#8217;t play any purchased media (music, books) on my iPhone.</p>
<p>To fix, I first had to recreate all my playlists. Not fun. Second, I had to delete all purchased media from my iPhone and re-sync it all. Also not fun.</p>
<p>So I didn&#8217;t lose anything in the process, minus a few playlists. No app data was deleted or, dare I say it, Angry Birds scores. But the fact remains that had I ignored iCloud and stuck with the traditional iTunes backup, none of this mess would have happened.</p>
<p>Sure, I wouldn&#8217;t have been able to perform an untethered restore 30 seconds after unboxing my new iPhone, but I also wouldn&#8217;t have needed to stand in the corner of the Apple store for 30 minutes waiting for all my apps to download.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nschneble.com/restoring-from-icloud-backups-or-how-itunes-deleted-all-my-damn-playlists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Avoid Divide by Zero Errors in Spreadsheets</title>
		<link>http://www.nschneble.com/how-to-avoid-divide-by-zero-errors-in-spreadsheets/</link>
		<comments>http://www.nschneble.com/how-to-avoid-divide-by-zero-errors-in-spreadsheets/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 01:27:07 +0000</pubDate>
		<dc:creator>Nick Schneble</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=2024</guid>
		<description><![CDATA[I recently learned about the magic of the IF statement. No, not as a conditional in a programming language, but as a formula in a spreadsheet. You know those stupid #DIV/0! errors you get after you&#8217;ve masterfully crafted a beautiful &#8230; <a href="http://www.nschneble.com/how-to-avoid-divide-by-zero-errors-in-spreadsheets/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently learned about the magic of the IF statement. No, not as a conditional in a programming language, but as a formula in a spreadsheet.</p>
<p>You know those stupid <strong>#DIV/0!</strong> errors you get after you&#8217;ve masterfully crafted a beautiful spreadsheet that doesn&#8217;t have any data in it yet?</p>
<p>This fixes that.</p>
<p>Here&#8217;s the syntax<sup id="footnote-return-1"><a href="#footnote-1">1</a></sup>:</p>
<pre>
=IF(CONDITIONAL, THEN, ELSE)
</pre>
<p>For example, if you want to display the results of A1 / A2 in A3, you&#8217;d use the following formula in A3:</p>
<pre>
=IF(A2=0, "n/a", A1/A2)
</pre>
<p>The second parameter (&#8220;n/a&#8221; above) can be anything you want, and is only displayed if the conditional is true.</p>
<hr width="50%" />
<ol>
<li id="footnote-1">
At least in Google Docs. <a href="#footnote-return-1" title="Jump back to footnote 1 in the text">&#8617;</a>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.nschneble.com/how-to-avoid-divide-by-zero-errors-in-spreadsheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Fix Internet Sharing on Snow Leopard</title>
		<link>http://www.nschneble.com/how-to-fix-internet-sharing-on-snow-leopard/</link>
		<comments>http://www.nschneble.com/how-to-fix-internet-sharing-on-snow-leopard/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 22:08:19 +0000</pubDate>
		<dc:creator>Nick Schneble</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=1380</guid>
		<description><![CDATA[I have a BearExtender n3 that I use to access weak (or far away) wifi networks. When I&#8217;m using it I usually share my Internet connection through Airport. Except this stopped working after I upgraded to Snow Leopard. After Googling &#8230; <a href="http://www.nschneble.com/how-to-fix-internet-sharing-on-snow-leopard/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have a <a href="http://www.bearextender.com/">BearExtender n3</a> that I use to access weak (or far away) wifi networks. When I&#8217;m using it I usually share my Internet connection through Airport.</p>
<p>Except this stopped working after I upgraded to Snow Leopard.</p>
<p>After Googling for eons, I finally came across <a href="http://www.jules.fm/Logbook/files/mac_squeezebox_connection_sharing.html">a fix</a>. Though it was advertised for connecting a Squeezebox or Xbox 360, it works just as well for MacBooks and iPhones.</p>
<p><strong>Start Internet Sharing</strong><br />
This will create a file called &#8220;bootpd.plist&#8221; in /etc. Copy this file to your desktop.<sup id="footnote-return-1"><a href="#footnote-1">1</a></sup></p>
<p><strong>Stop Internet Sharing</strong><br />
Open &#8220;bootpd.plist&#8221; in a text editor. Look for a key called &#8220;reply_threshold_seconds&#8221; near the bottom of the file. It should have an integer value of 4. Change this value to 0 and copy the file back to /etc.</p>
<p>When you restart Internet Sharing everything should work again.<sup id="footnote-return-2"><a href="#footnote-2">2</a></sup></p>
<hr width="50%" />
<ol>
<li id="footnote-1">
To get to /etc, open a new Finder window, type command-shift-g and enter &#8220;/etc&#8221; in the text field. <a href="#footnote-return-1" title="Jump back to footnote 1 in the text">&#8617;</a>
</li>
<li id="footnote-2">
If it still doesn&#8217;t work, check &#8220;bootpd.plist&#8221; in /etc and make sure &#8220;reply_threshold_seconds&#8221; is still set to 0. <a href="#footnote-return-2" title="Jump back to footnote 2 in the text">&#8617;</a>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.nschneble.com/how-to-fix-internet-sharing-on-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quotables</title>
		<link>http://www.nschneble.com/quotables-sir-francis-bacon/</link>
		<comments>http://www.nschneble.com/quotables-sir-francis-bacon/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 21:51:06 +0000</pubDate>
		<dc:creator>Nick Schneble</dc:creator>
				<category><![CDATA[Quotables]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=1241</guid>
		<description><![CDATA[If a man will begin with certainties, he shall end in doubts; but if he will be content to begin with doubts he shall end in certainties. <a href="http://www.nschneble.com/quotables-sir-francis-bacon/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<blockquote class="alignleft pull"><p>Sir Francis Bacon</p></blockquote>
<div style="height: 6px"></div>
<div style="margin-bottom: 30px; overflow: hidden">
<blockquote><p>If a man will begin with certainties, he shall end in doubts; but if he will be content to begin with doubts he shall end in certainties.</p></blockquote>
</div>
<p style="text-align: right" class="attribution">
<em>Featured Image is provided courtesy of Flickr user <a href="http://flic.kr/p/jkjTB">minnetonkafelix</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nschneble.com/quotables-sir-francis-bacon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

