<?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>Small Things Float</title>
	<atom:link href="http://www.smallthingsfloat.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.smallthingsfloat.com/blog</link>
	<description>I saw it in a movie</description>
	<lastBuildDate>Thu, 09 May 2013 04:48:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Clearing a single MAC address from the AdTran TA-5000</title>
		<link>http://www.smallthingsfloat.com/blog/2013/05/08/clearing-a-single-mac-address-from-the-adtran-ta-5000/</link>
		<comments>http://www.smallthingsfloat.com/blog/2013/05/08/clearing-a-single-mac-address-from-the-adtran-ta-5000/#comments</comments>
		<pubDate>Thu, 09 May 2013 04:48:25 +0000</pubDate>
		<dc:creator>bbchase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.smallthingsfloat.com/blog/?p=126</guid>
		<description><![CDATA[clear mac address‐table &#60;shelf/slot&#62; address xx:xx:xx:xx:xx:xx Handy if you&#8217;re moving to a new port on the same TA-5000.]]></description>
				<content:encoded><![CDATA[<p><!--?xml version="1.0" encoding="UTF-8" standalone="no"?--> clear mac address‐table &lt;shelf/slot&gt; address xx:xx:xx:xx:xx:xx</p>
<p>Handy if you&#8217;re moving to a new port on the same TA-5000.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smallthingsfloat.com/blog/2013/05/08/clearing-a-single-mac-address-from-the-adtran-ta-5000/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Script your OS X setup</title>
		<link>http://www.smallthingsfloat.com/blog/2013/03/31/script-your-os-x-setup/</link>
		<comments>http://www.smallthingsfloat.com/blog/2013/03/31/script-your-os-x-setup/#comments</comments>
		<pubDate>Sun, 31 Mar 2013 13:55:21 +0000</pubDate>
		<dc:creator>bbchase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.smallthingsfloat.com/blog/?p=119</guid>
		<description><![CDATA[I found a great bash script from Mathias Bynens on github that he uses to automate getting a new OS install just the way he likes it. It&#8217;s full of useful commands that you can use to tweak OS X to your delight. Just please don&#8217;t blindly run this script on your machine or you&#8217;ll potentially end [...]]]></description>
				<content:encoded><![CDATA[<p>I found a <a href="https://github.com/mathiasbynens/dotfiles/blob/master/.osx">great bash script</a> from Mathias Bynens on github that he uses to automate getting a new OS install just the way he likes it. It&#8217;s full of useful commands that you can use to tweak OS X to your delight. Just please don&#8217;t blindly run this script on your machine or you&#8217;ll potentially end up with behavior that you don&#8217;t like and don&#8217;t know how to undo.</p>
<p>I&#8217;m slowly working on molding his script into my own to keep in Dropbox and on a thumb drive so I don&#8217;t have to remember how to manually set up a new machine. When I&#8217;m finished, I&#8217;ll post what I come up with, but I thought it was worth sharing the original first.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smallthingsfloat.com/blog/2013/03/31/script-your-os-x-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.bash_profile or .bashrc in OS X?</title>
		<link>http://www.smallthingsfloat.com/blog/2013/03/30/bash_profile-or-bashrc-in-os-x/</link>
		<comments>http://www.smallthingsfloat.com/blog/2013/03/30/bash_profile-or-bashrc-in-os-x/#comments</comments>
		<pubDate>Sat, 30 Mar 2013 21:40:59 +0000</pubDate>
		<dc:creator>bbchase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.smallthingsfloat.com/blog/?p=118</guid>
		<description><![CDATA[I always forget which file to use when I want to change something in my environment. It doesn&#8217;t help that Terminal.app in OS X behaves a little differently than other *nix terminals. Thankfully, John Staiger posted a very clear explanation and a handy trick a few years back. The short version is this: .bash_profile runs when [...]]]></description>
				<content:encoded><![CDATA[<p>I always forget which file to use when I want to change something in my environment. It doesn&#8217;t help that Terminal.app in OS X behaves a little differently than other *nix terminals. Thankfully, John Staiger <a href="http://www.joshstaiger.org/archives/2005/07/bash_profile_vs.html">posted a very clear explanation and a handy trick</a> a few years back.</p>
<p>The short version is this: .bash_profile runs when you log in, .bashrc runs when you open a new terminal window EXCEPT in OS X which treats each new terminal window as a new login for some reason.</p>
<p>Staiger&#8217;s suggestion is to keep all your settings in .bashrc and just tell .bash_profile to call .bashrc so you don&#8217;t end up managing two files (<a href="http://www.joshstaiger.org/archives/2005/07/bash_profile_vs.html">click through for his .bash_profile contents</a>). This works just fine, but I don&#8217;t know that I&#8217;ve even run into a situation in OS X where .bashrc would be loaded instead of .bash_profile so it&#8217;s probably just as easy to keep everything in .bash_profile and never create .bashrc.</p>
<p>I imagine the trick would be more helpful if you&#8217;re working in different distros and want to manage your environment the same way regardless of which OS you&#8217;re currently on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smallthingsfloat.com/blog/2013/03/30/bash_profile-or-bashrc-in-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maxroam APN Settings for iPhone and Android</title>
		<link>http://www.smallthingsfloat.com/blog/2013/03/30/maxroam-apn-settings-for-iphone-and-android/</link>
		<comments>http://www.smallthingsfloat.com/blog/2013/03/30/maxroam-apn-settings-for-iphone-and-android/#comments</comments>
		<pubDate>Sat, 30 Mar 2013 20:33:48 +0000</pubDate>
		<dc:creator>bbchase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.smallthingsfloat.com/blog/?p=116</guid>
		<description><![CDATA[Dredged up from a cached Blogger entry for your reference. Your mileage may vary. Maxroam Mobile General APN Settings: APN: maxroam.com Username: maxroam Password: maxroam Maxroam APN Settings for iPhone / iPad: Go to Settings &#62; General &#62; Network &#62; Mobile Data Network &#62; APN and enter the following details Cellular Data: APN: maxroam.com Username: maxroam Password: [...]]]></description>
				<content:encoded><![CDATA[<p>Dredged up from a cached Blogger entry for your reference. Your mileage may vary.</p>
<p><b>Maxroam Mobile General APN Settings:</b><br />
APN: maxroam.com<br />
Username: maxroam<br />
Password: maxroam</p>
<p><b>Maxroam APN Settings for iPhone / iPad:</b><br />
Go to <b>Settings &gt; General &gt; Network &gt; Mobile Data Network &gt; APN</b> and enter the following details<br />
<span style="text-decoration: underline;">Cellular Data:</span><br />
APN: maxroam.com<br />
Username: maxroam<br />
Password: maxroam<br />
<span style="text-decoration: underline;">MMS:</span><br />
APN: maxroam.com<br />
Username: Blank<br />
Password: Blank<br />
MMSC: Blank<br />
MMS Proxy: Blank<br />
MMS Message Size: Blank<br />
MMS UA Prof URL: blank</p>
<p><b>Maxroam APN Settings for Android:</b><br />
Go to <b>Menu -&gt; Settings -&gt; Wireless &amp; networks-&gt; Mobile networks -&gt; Access Point Names -&gt; New APN</b> and key the following details<br />
Name: Maxroam<br />
APN: maxroam.com<br />
Proxy: &lt; Not Set &gt;<br />
Port: &lt; Not Set &gt;<br />
Username: maxroam<br />
Password: maxroam<br />
Server: &lt; Not Set &gt;<br />
MMSC: &lt; Not Set &gt;<br />
MMS Proxy: &lt; Not Set &gt;<br />
MMS Port: &lt; Not Set &gt;<br />
MMS Protocol: &lt; Not Set &gt;<br />
MCC: &lt; Not Set &gt;<br />
MNC: &lt; Not Set &gt;<br />
APN Type: &lt; Not Set &gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smallthingsfloat.com/blog/2013/03/30/maxroam-apn-settings-for-iphone-and-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transitioning From Google Reader</title>
		<link>http://www.smallthingsfloat.com/blog/2013/03/14/transitioning-from-google-reader/</link>
		<comments>http://www.smallthingsfloat.com/blog/2013/03/14/transitioning-from-google-reader/#comments</comments>
		<pubDate>Fri, 15 Mar 2013 01:13:19 +0000</pubDate>
		<dc:creator>bbchase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.smallthingsfloat.com/blog/?p=112</guid>
		<description><![CDATA[Just some quick thoughts. Here are the services I&#8217;m looking at as replacements: NewsBlur - Seems pretty quick and full-featured and there&#8217;s a social commenting aspect that looks similar to Google Reader of days gone by, but the site has this Java-y non-native feel to it that I don&#8217;t like. The interface feels busy, but it [...]]]></description>
				<content:encoded><![CDATA[<p>Just some quick thoughts. Here are the services I&#8217;m looking at as replacements:</p>
<ul>
<li><a href="http://www.newsblur.com/">NewsBlur</a> - Seems pretty quick and full-featured and there&#8217;s a social commenting aspect that looks similar to Google Reader of days gone by, but the site has this Java-y non-native feel to it that I don&#8217;t like. The interface feels busy, but it might be something that I&#8217;ll appreciate for its utility later.</li>
<li><a href="http://www.netvibes.com/">NetVibes</a> &#8211; I tried NetVibes several years ago when I thought that having a personal web portal (or whatever they were called) would be an awesome thing and I wasn&#8217;t particularly impressed. The RSS reader seems a bit barebones, but it&#8217;s decently quick. It feels more non-nativey than NewsBlur, but doesn&#8217;t appear to have the social features or many features at all.</li>
<li><a href="http://getprismatic.com/">Prismatic</a> - This might make a good tool for finding the latest news in groups of feeds that I don&#8217;t care to read completely, but it seems too magazine-ish for keeping track of sites where I read every post of that don&#8217;t post often and I have Flipboard for that.</li>
<li><a href="http://theoldreader.com/">The Old Reader</a> - A clone of Google Reader before the social features were stripped out. Looks promising, but has been down more than up since I started trying to use it so I can&#8217;t say for sure yet.</li>
<li><a href="http://feedafever.com/">Fever</a> &#8211; I almost bought this right when it came out. I like idea of their approach to sorting, and Fever already integrates with <a href="http://reederapp.com/">Reeder</a> (my RSS app of choice on Mac, iPad, and iPhone), but I&#8217;m a tiny bit wary of having to maintain my own installation of it. Costs $30 which is cheap as long as I end up using it.</li>
<li><a href="http://www.feedly.com/">Feedly</a> &#8211; Looks pretty and I like the versatility of the different web views and the iOS app is really slick. It&#8217;s not super intuitive for someone who&#8217;s expecting a classic RSS or email interface, but I don&#8217;t mind learning a bit. Sharing options look nice.</li>
<li><a href="http://netnewswireapp.com/">NetNewsWire</a> &#8211; I&#8217;ve tried this app multiple times over the course of many years along with apps like <a href="http://www.utsire.com/shrook/">Shrook</a>, <a href="http://www.newsfirerss.com/">NewsFire</a>, <a href="http://www.vienna-rss.org/">Vienna</a>, and I feel like there was one called NewsGator? But I never stick with it. I don&#8217;t really want to replace Reeder as my go-to native client.</li>
<li><a href="http://flipboard.com/">Flipboard</a> &#8211; I love Flipboard for browsing through high-volume feeds, but I never transitioned into using it for my main reads. I don&#8217;t think it&#8217;s really built for that.</li>
<li>I hope <a href="http://hivemined.org/">HiveMined</a> ships soon so I can check that out, but it&#8217;s been a long time coming.</li>
</ul>
<p>What&#8217;s likely to happen is that I&#8217;ll just jump on board with whoever Reeder builds-in support for. Right now that means Fever, but that only works on the iPhone app at the moment. Maybe as part of this transition I&#8217;ll offload some of my high-volume stuff into Flipboard and trim down my 130+ feeds. Otherwise, whatever holds the status quo will probably make me happy.</p>
<p>I will say that I very honestly miss the social functions in Google Reader. If someone manages to recreate that inside of a quality RSS reader (and I can get the right friends to use it), they will have my attention and my money).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smallthingsfloat.com/blog/2013/03/14/transitioning-from-google-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://www.smallthingsfloat.com/blog/2013/02/10/108/</link>
		<comments>http://www.smallthingsfloat.com/blog/2013/02/10/108/#comments</comments>
		<pubDate>Sun, 10 Feb 2013 15:04:03 +0000</pubDate>
		<dc:creator>bbchase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.smallthingsfloat.com/blog/?p=108</guid>
		<description><![CDATA[So I found this pic of Woz on his iPhone in a networking closet, drinking a beer and wearing a Daring Fireball t-shirt.]]></description>
				<content:encoded><![CDATA[<p>So I found this pic of Woz on his iPhone in a networking closet, drinking a beer and wearing a Daring Fireball t-shirt.</p>
<p><a href="http://www.smallthingsfloat.com/blog/wp-content/uploads/2013/02/woz.jpg"><img class="alignleft size-medium wp-image-109" alt="woz" src="http://www.smallthingsfloat.com/blog/wp-content/uploads/2013/02/woz-249x300.jpg" width="249" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smallthingsfloat.com/blog/2013/02/10/108/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Away!</title>
		<link>http://www.smallthingsfloat.com/blog/2013/01/25/its-away/</link>
		<comments>http://www.smallthingsfloat.com/blog/2013/01/25/its-away/#comments</comments>
		<pubDate>Fri, 25 Jan 2013 18:58:53 +0000</pubDate>
		<dc:creator>bbchase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.smallthingsfloat.com/blog/?p=103</guid>
		<description><![CDATA[When I think I’ve installed the right package to get this software to work.]]></description>
				<content:encoded><![CDATA[<p>When I think I’ve installed the right package to get this software to work.</p>
<p><a href="http://www.smallthingsfloat.com/blog/2013/01/25/its-away/impactedonthesurface/" rel="attachment wp-att-104"><img class="alignleft size-medium wp-image-104" alt="impactedonthesurface" src="http://www.smallthingsfloat.com/blog/wp-content/uploads/2013/01/impactedonthesurface-300x222.jpg" width="300" height="222" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smallthingsfloat.com/blog/2013/01/25/its-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing menu items in OS X Mountain Lion</title>
		<link>http://www.smallthingsfloat.com/blog/2013/01/05/removing-menu-items-in-os-x-mountain-lion/</link>
		<comments>http://www.smallthingsfloat.com/blog/2013/01/05/removing-menu-items-in-os-x-mountain-lion/#comments</comments>
		<pubDate>Sat, 05 Jan 2013 19:42:42 +0000</pubDate>
		<dc:creator>bbchase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.smallthingsfloat.com/blog/?p=98</guid>
		<description><![CDATA[cmd+shift+drag I&#8217;m not sure when this behavior changed, but I recently managed to magic a screen sharing menu item into my menu bar and couldn&#8217;t find the right preference window from which to remove it. Googling the problem results in years-old posts advising users to hold command while dragging the item from the menu bar, [...]]]></description>
				<content:encoded><![CDATA[<p>cmd+shift+drag</p>
<p>I&#8217;m not sure when this behavior changed, but I recently managed to magic a screen sharing menu item into my menu bar and couldn&#8217;t find the right preference window from which to remove it. Googling the problem results in years-old posts advising users to hold command while dragging the item from the menu bar, but that doesn&#8217;t work for me on my Mountain Lion machines. You have to hold down command and shift to drag it out.</p>
<p>Note that this only works for system menu bar items, but holding command and dragging will let you rearrange all items.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smallthingsfloat.com/blog/2013/01/05/removing-menu-items-in-os-x-mountain-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Roger Ebert on the Aurora shooting</title>
		<link>http://www.smallthingsfloat.com/blog/2012/07/23/roger-ebert-on-the-aurora-shooting/</link>
		<comments>http://www.smallthingsfloat.com/blog/2012/07/23/roger-ebert-on-the-aurora-shooting/#comments</comments>
		<pubDate>Mon, 23 Jul 2012 15:41:05 +0000</pubDate>
		<dc:creator>bbchase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.smallthingsfloat.com/blog/?p=95</guid>
		<description><![CDATA[“Should this young man . . . have been able to buy guns, ammunition and explosives? The gun lobby will say yes. And the endless gun control debate will begin again, and the lobbyists of the National Rifle Association will go to work, and the op-ed thinkers will have their usual thoughts, and the right [...]]]></description>
				<content:encoded><![CDATA[<p>“Should this young man . . . have been able to buy guns, ammunition and explosives? The gun lobby will say yes. And the endless gun control debate will begin again, and the lobbyists of the National Rifle Association will go to work, and the op-ed thinkers will have their usual thoughts, and the right wing will issue alarms, and nothing will change. And there will be another mass murder.”</p>
<p>from &#8220;<a href="http://www.nytimes.com/2012/07/21/opinion/weve-seen-this-movie-before.html">We&#8217;ve Seen This Movie Before</a>&#8220;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smallthingsfloat.com/blog/2012/07/23/roger-ebert-on-the-aurora-shooting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to send a cease &amp; desist without sounding like a jerk</title>
		<link>http://www.smallthingsfloat.com/blog/2012/07/23/how-to-send-a-cease-desist-without-sounding-like-a-jerk/</link>
		<comments>http://www.smallthingsfloat.com/blog/2012/07/23/how-to-send-a-cease-desist-without-sounding-like-a-jerk/#comments</comments>
		<pubDate>Mon, 23 Jul 2012 15:37:41 +0000</pubDate>
		<dc:creator>bbchase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.smallthingsfloat.com/blog/?p=94</guid>
		<description><![CDATA[by Jack Daniels (via Daring Fireball)]]></description>
				<content:encoded><![CDATA[<p>by <a href="http://boingboing.net/2012/07/22/jack-daniels-has-a-very-nice.html">Jack Daniels</a></p>
<p>(via <a href="http://daringfireball.net/linked/2012/07/22/jack">Daring Fireball</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smallthingsfloat.com/blog/2012/07/23/how-to-send-a-cease-desist-without-sounding-like-a-jerk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.816 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-19 16:26:42 -->
