<?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>Tue, 17 Jan 2012 22:27:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<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>

