<?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>What a n00b! &#124; What a n00b!</title>
	<atom:link href="http://whatan00b.com/feed" rel="self" type="application/rss+xml" />
	<link>http://whatan00b.com</link>
	<description></description>
	<lastBuildDate>Thu, 31 Jan 2013 05:35:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>DRAC Goes Offline After Upgrade</title>
		<link>http://whatan00b.com/drac-goes-offline-after-upgrade</link>
		<comments>http://whatan00b.com/drac-goes-offline-after-upgrade#comments</comments>
		<pubDate>Wed, 30 Jan 2013 00:42:22 +0000</pubDate>
		<dc:creator>Wyatt Walter</dc:creator>
				<category><![CDATA[How-Tos / Tips]]></category>

		<guid isPermaLink="false">http://whatan00b.com/?p=1549</guid>
		<description><![CDATA[Lately with iDRAC 6 upgrades (I&#8217;ve noticed with 1.92 so far), the DRAC seems to reset itself to the default NIC selection, making it seem that the DRAC falls offline. I&#8217;ve had to look for this on twice now, it&#8217;s not under racadm setniccfg like you&#8217;d think. You can set &#8230;]]></description>
				<content:encoded><![CDATA[<p>Lately with iDRAC 6 upgrades (I&#8217;ve noticed with 1.92 so far), the DRAC seems to reset itself to the default NIC selection, making it seem that the DRAC falls offline. I&#8217;ve had to look for this on twice now, it&#8217;s not under racadm setniccfg like you&#8217;d think. You can set it with the intuitive:</p>
<p><code>racadm config -g cfgLanNetworking -o cfgNicSelection 2</code></p>
]]></content:encoded>
			<wfw:commentRss>http://whatan00b.com/drac-goes-offline-after-upgrade/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Memory Usage Growth After Lots of Table Creates/Drops</title>
		<link>http://whatan00b.com/mysql-memory-usage-growth-after-lots-of-table-createsdrops</link>
		<comments>http://whatan00b.com/mysql-memory-usage-growth-after-lots-of-table-createsdrops#comments</comments>
		<pubDate>Tue, 18 Sep 2012 04:23:22 +0000</pubDate>
		<dc:creator>Wyatt Walter</dc:creator>
				<category><![CDATA[How-Tos / Tips]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[percona]]></category>

		<guid isPermaLink="false">http://whatan00b.com/?p=1528</guid>
		<description><![CDATA[I should clarify somewhere here that &#8220;Lots&#8221; in the title means something on the order of half a million table creations and drops per week. This is pretty unique to our standard usage of MySQL, and I would assert unique for most. We&#8217;ve been having troubles for a while now &#8230;]]></description>
				<content:encoded><![CDATA[<p><em>I should clarify somewhere here that &#8220;Lots&#8221; in the title means something on the order of half a million table creations and drops per week. This is pretty unique to our standard usage of MySQL, and I would assert unique for most.</em></p>
<p>We&#8217;ve been having troubles for a while now with a cluster of MySQL nodes which consume a never-ending amount of memory over time until it eventually runs out, forcing us to restart MySQL if we catch it in time, or reboot the box if we don&#8217;t. After doing tons of searches (and looking through countless bug reports), it seemed like it could have been a few memory leaks, fixed in late 5.1 or early 5.5 land. As this cluster was slightly older and not updated regularly, we pushed things over to new nodes and up to a modern version of 5.5. However, this didn&#8217;t seem to solve the problem. Every week or so, we&#8217;d fail over to a secondary node and restart things. The biggest hint towards it being caused by all the creates is that the &#8220;leak&#8221; flowed through replication and the secondary nodes would run out within several hours of the primary.</p>
<p>As it turns out, the answer was quite simple. According to the Percona <a href="http://www.mysqlperformanceblog.com/2010/05/06/how-much-memory-innodb-dictionary-can-take/">MySQL Performance Blog</a>, the MySQL dictionary cache memory is allocated with each opened table, and never given back &#8211; without any limit. This isn&#8217;t so bad I suppose, except if you&#8217;re opening something like half a million tables per week and you just so happen to have a machine with a finite amount of memory. Then you might have a bit of trouble.</p>
<p>The fix is bad news if you&#8217;re a MySQL community-build user. There&#8217;s no way to limit it without switching to Percona Server (which I highly recommend over the stock MySQL builds, anyway). If you have installed Percona Server in favor of MySQL you can set <a href="http://www.percona.com/doc/percona-server/5.5/management/innodb_dict_size_limit.html?id=percona-server:features:innodb_dict_size_limit&amp;redirect=1">innodb_dict_size_limit</a> to limit the growth. This is &#8217;0&#8242; by default which mimics current stock MySQL. Note that this is a soft limit, so if you still have that many tables open you&#8217;ll just need moar memories.</p>
<p>I should also note that while this setting says it&#8217;s dynamic, it&#8217;s a danger zone. I set this to a not-terribly-aggressive-yet-still-lower-than-current-dictionary-size value on the non-active node and everything came to a screeching halt with this in the error log:</p>
<p><code>--Thread 1264216384 has waited at dict0dict.c line 744 for 688.00 seconds the semaphore:</code></p>
]]></content:encoded>
			<wfw:commentRss>http://whatan00b.com/mysql-memory-usage-growth-after-lots-of-table-createsdrops/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling InnoDB Compression on MySQL 5.5</title>
		<link>http://whatan00b.com/enabling-innodb-compression-on-mysql-5-5</link>
		<comments>http://whatan00b.com/enabling-innodb-compression-on-mysql-5-5#comments</comments>
		<pubDate>Fri, 31 Aug 2012 04:04:15 +0000</pubDate>
		<dc:creator>Wyatt Walter</dc:creator>
				<category><![CDATA[How-Tos / Tips]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[innodb]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://whatan00b.com/?p=1516</guid>
		<description><![CDATA[I got a quick little lesson this morning in a few MySQL internals while trying to enable InnoDB compression. On the surface, it seems pretty easy. The MySQL documentation just says you can do: ALTER TABLE table ROW_FORMAT=COMPRESSED; However, for me this did nothing. The size of the table didn&#8217;t &#8230;]]></description>
				<content:encoded><![CDATA[<p>I got a quick little lesson this morning in a few MySQL internals while trying to enable InnoDB compression. On the surface, it seems pretty easy. The MySQL <a href="http://dev.mysql.com/doc/innodb-plugin/1.0/en/innodb-compression-usage.html">documentation</a> just says you can do: </p>
<p><code>ALTER TABLE table ROW_FORMAT=COMPRESSED;</code></p>
<p>However, for me this did nothing. The size of the table didn&#8217;t change at all. After a bit of digging, I figured out that you have to set the default file format for InnoDB to Barracuda which has compression enabled. This is disabled by default, according to the <a href="http://dev.mysql.com/doc/refman/5.6/en/innodb-file-format.html">documentation</a>:</p>
<blockquote><p>Although Oracle recommends using the Barracuda format for new tables where practical, in MySQL 5.5 the default file format is still Antelope, for maximum compatibility with replication configurations containing different MySQL releases.
</p></blockquote>
<p>Pretty sneaky, but easy enough to fixup:</p>
<p><code>set global variable innodb_file_format = Barracuda;</code></p>
<p>add it to your my.cnf (/etc/my.cnf on most distros):</p>
<p><code>...<br />
innodb_file_format = Barracuda<br />
...</code></p>
<p>After that, the ALTER TABLE converted the table and cut the size on disk in half. Very nice. </p>
<p>Since this table is rarely read, and even more rarely written to, I didn&#8217;t end up doing much by way of performance testing or tuning. However, I should also note blog entry I found that seems to indicate that <a href="http://www.bigdbahead.com/?p=749">performance degrades as the size of the buffer pool increases</a> when compression is enabled. The workaround is to use multiple buffer pools. Fortunately, we&#8217;re already did this as a workaround for issues with <a href="http://www.mysqlperformanceblog.com/2012/06/22/drop-table-and-stalls-lazy-drop-table-in-percona-server-and-the-new-fixes-in-mysql/">slow DROP TABLE performance</a> on older versions of 5.5 when innodb_file_per_table is enabled.</p>
]]></content:encoded>
			<wfw:commentRss>http://whatan00b.com/enabling-innodb-compression-on-mysql-5-5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtualbox (and subsequently vagrant) machines fail to boot</title>
		<link>http://whatan00b.com/virtualbox-and-subsequently-vagrant-machines-fail-to-boot</link>
		<comments>http://whatan00b.com/virtualbox-and-subsequently-vagrant-machines-fail-to-boot#comments</comments>
		<pubDate>Thu, 26 Jul 2012 04:24:13 +0000</pubDate>
		<dc:creator>Wyatt Walter</dc:creator>
				<category><![CDATA[How-Tos / Tips]]></category>

		<guid isPermaLink="false">http://whatan00b.com/?p=1506</guid>
		<description><![CDATA[Today, when I went to boot one of the development environments on my laptop, I was greeted by a fun message: the-cloud:dev wwalter$ vagrant up [default] VM already created. Booting if it's not already running... [default] Clearing any previously set forwarded ports... [default] Forwarding ports... [default] -- 22 => 2222 &#8230;]]></description>
				<content:encoded><![CDATA[<p>Today, when I went to boot one of the development environments on my laptop, I was greeted by a fun message:</p>
<p><code><br />
the-cloud:dev wwalter$ vagrant up<br />
[default] VM already created. Booting if it's not already running...<br />
[default] Clearing any previously set forwarded ports...<br />
[default] Forwarding ports...<br />
[default] -- 22 => 2222 (adapter 1)<br />
[default] Creating shared folders metadata...<br />
[default] Clearing any previously set network interfaces...<br />
[default] Booting VM...<br />
[default] Waiting for VM to boot. This can take a few minutes.<br />
The VM failed to remain in the "running" state while attempting to boot.<br />
This is normally caused by a misconfiguration or host system incompatibilities.<br />
Please open the VirtualBox GUI and attempt to boot the virtual machine<br />
manually to get a more informative error message.<br />
</code></p>
<p>I popped open the VirtualBox GUI as the error message suggested, and ended up with a slightly less helpful version:</p>
<p><code><br />
Failed to open a session for the virtual machine dev_1340310725.</p>
<p>Failed to load VMMR0.r0 (VERR_SUPLIB_WORLD_WRITABLE).</p>
<p>Result Code: NS_ERROR_FAILURE (0x80004005)<br />
Component: Console<br />
Interface: IConsole {1968b7d3-e3bf-4ceb-99e0-cb7c913317bb}<br />
</code></p>
<p>As it turns out, /Applications on my MacBook had somehow been set to be world-writable.. I&#8217;m not sure what application I would have installed that caused this, but it&#8217;s definitely not cool. Anyway, easy fix is to run Disk Utility and Repair Permissions.</p>
<p><code><br />
Permissions differ on “Applications”; should be drwxrwxr-x ; they are drwxrwxrwx .<br />
Repaired “Applications”<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://whatan00b.com/virtualbox-and-subsequently-vagrant-machines-fail-to-boot/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Know Your Library, Yo</title>
		<link>http://whatan00b.com/know-your-library-yo</link>
		<comments>http://whatan00b.com/know-your-library-yo#comments</comments>
		<pubDate>Thu, 12 Jul 2012 07:05:36 +0000</pubDate>
		<dc:creator>Wyatt Walter</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[shutterguides]]></category>

		<guid isPermaLink="false">http://whatan00b.com/?p=1496</guid>
		<description><![CDATA[You can definitely file this one under &#8220;what a n00b!&#8221;. First, a little backstory. When we started out creating the Flickr integration for ShutterGuides, we used what seemed to be the most mature and stable Python Flickr API binding out there, flickrapi. The only drawback with this library is that &#8230;]]></description>
				<content:encoded><![CDATA[<p>You can definitely file this one under &#8220;what a n00b!&#8221;.</p>
<p>First, a little backstory. When we started out creating the Flickr integration for <a href="http://www.shutterguides.com">ShutterGuides</a>, we used what seemed to be the most mature and stable Python Flickr API binding out there, <a href="http://stuvel.eu/flickrapi/">flickrapi</a>. The only drawback with this library is that it doesn&#8217;t support oauth. It seemed to be the most solid and well-documented that we found, so we went ahead anyway. In the meantime, Flickr announced that they were end-of-life-ing their old auth mechanism in favor of oauth at the end of July this year. Great. (I found a blog post at one point promising oauth, but can&#8217;t seem to find it now.) Anyway, we decided that instead of adding oauth support to the library, to just migrate to a new library, we chose this <a href="https://github.com/alexis-mignon/python-flickr-api">one</a>.</p>
<p>All right, with that out of the way, let&#8217;s get to the point.</p>
<p>One of the swanky things about this new library is that it transparently retrieves information about Photo objects that aren&#8217;t necessarily returned by Flickr by default. One of the bad things about this new library is that it transparently retrieves information about Photo objects that aren&#8217;t necessarily returned by Flickr by default.</p>
<p>When I first developed the integration, I noticed it was a bit slower than the old one. I thought maybe I could chalk this up to extra latency from my home network to Flickr vs. our cloud provider to Flickr. However, once we got things into production, and got a real user to use it with a good amount of photos, the thing slowed to a crawl. Like, 20+s for a web request. Doh. As it turns out our call to flickr.Photosets.getPhotos (retrieve photos in a Flickr album) was not returning some of the data that we expected to be in the Photo object, and the library was graciously making an API call per photo to Flickr during our web request! (sorry about that, Flickr) The fix was trivial, we just needed to add the fields we use to the &#8220;extras&#8221; option during the original call, I just needed to notice that it was happening.</p>
<p>Like I said, put this one under &#8220;what a n00b!&#8221;. I knew better and yet it happened anyway. Let this be a reminder to everyone to check out that new code you just integrated into your app. I will leave you with a warning that you should take just as seriously.</p>
<p style="text-align: center;"><a href="http://whatan00b.com/know-your-library-yo/img_0344" rel="attachment wp-att-1498"><img class=" wp-image-1498 aligncenter" title="IMG_0344" src="http://whatan00b.com/wp-content/uploads/2012/07/IMG_0344-300x225.jpg" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://whatan00b.com/know-your-library-yo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Celery jobs unable to access objects when queued by post_save signal in Django</title>
		<link>http://whatan00b.com/celery-jobs-unable-to-access-objects-when-queued-by-post_save-signal-in-django</link>
		<comments>http://whatan00b.com/celery-jobs-unable-to-access-objects-when-queued-by-post_save-signal-in-django#comments</comments>
		<pubDate>Thu, 14 Jun 2012 00:06:27 +0000</pubDate>
		<dc:creator>Wyatt Walter</dc:creator>
				<category><![CDATA[How-Tos / Tips]]></category>
		<category><![CDATA[celery]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[shutterguides]]></category>

		<guid isPermaLink="false">http://whatan00b.com/?p=1477</guid>
		<description><![CDATA[I ran into a fun issue this week, working on job queueing in ShutterGuides. We use Django for the app server and django-celery for job queueing in the background. In our case, we added a post_save signal to our Guide model to trigger an import of the photos in the &#8230;]]></description>
				<content:encoded><![CDATA[<p>I ran into a fun issue this week, working on job queueing in <a href="http://www.shutterguides.com">ShutterGuides</a>. We use Django for the app server and django-celery for job queueing in the background. In our case, we added a post_save signal to our Guide model to trigger an import of the photos in the background. </p>
<p>The code was pretty typical and worked great in development, triggering after a save and throwing the job onto the queue. The workers consumed the jobs and pulled in photos exactly as expected.</p>

<p>However, I noticed that when using MySQL, this task seemed to not do the right thing as it found nothing to import. As it turns out, this was because the post_save signal in Django is <a href="http://stackoverflow.com/questions/8528264/why-can-i-access-an-object-during-its-post-save-signal-but-not-when-i-trigger">fired before the MySQL transaction has been applied</a>. So, if a worker picks it up off the queue immediately, it may not have access to the object in the database yet; or in the case of updates, will not have access to the newest version of the object. </p>
<p>The solution in the StackOverflow question referenced above seems to indicate something like Celery would solve this, which of course isn&#8217;t true since the job can fire before the transaction finishes as well. My solution was fairly simple, though perhaps a bit of a workaround:</p>
<p><code><br />
-    ImportPhotosTask.delay(instance)<br />
+    ImportPhotosTask.apply_async([instance], countdown=2)<br />
</code></p>
<p>There&#8217;s also a small patch on Github to add a <a href="https://github.com/davehughes/django-transaction-signals">post_commit signal to Django</a>, but I try to stay away from anything that calls itself a &#8220;monkey-patch&#8221; right in the description. Might be good code, got stopped at that statement..</p>
]]></content:encoded>
			<wfw:commentRss>http://whatan00b.com/celery-jobs-unable-to-access-objects-when-queued-by-post_save-signal-in-django/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Percona Live MySQL Conference 2012 &#8211; day 1</title>
		<link>http://whatan00b.com/percona-live-mysql-conference-2012-day-1</link>
		<comments>http://whatan00b.com/percona-live-mysql-conference-2012-day-1#comments</comments>
		<pubDate>Thu, 12 Apr 2012 07:14:15 +0000</pubDate>
		<dc:creator>Wyatt Walter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[percona]]></category>

		<guid isPermaLink="false">http://whatan00b.com/?p=1468</guid>
		<description><![CDATA[This week I am fortunate enough to be sent to the Percona Live Conference by my company. I&#8217;ve been sitting here tonight, pondering and recalling sessions for the day; trying to think of all those things that I learned I&#8217;m was doing wrong or better tools I could be using. &#8230;]]></description>
				<content:encoded><![CDATA[<p>This week I am fortunate enough to be sent to the Percona Live Conference by my <a href="http://www.sugarcrm.com">company</a>. I&#8217;ve been sitting here tonight, pondering and recalling sessions for the day; trying to think of all those things that I learned I&#8217;m was doing wrong or better tools I could be using. And, since I don&#8217;t blog enough lately, here we go!</p>
<p>Nothing earth-shattering so far, but some takeaways from sessions I hit up today:</p>
<p><em>Building a Multi-Master, Mult-Region Database Infrastructure in Amazon EC2</em></p>
<p style="padding-left: 30px;">When I first realized this was going to be just a demo of some commercial software (Tungsten Enterprise), not a &#8220;lessons-learned&#8221; type of session I was pretty disappointed (I didn&#8217;t read the program carefully enough!). As the speaker got deeper into the talk, though, I became more and more impressed with the technology. Continuent has built some interesting technology, letting you not only failover (and failback!) individual nodes easily, but also entire clusters. They also have some pretty hot backup/restore/replication functionality as well.</p>
<p><em>One to Many: The Story of Sharding at Box</em></p>
<p style="padding-left: 30px;">Definitely the most engaging session of the day for me, personally. The session was a pretty open story about Box&#8217;s migration from a single database architecture into a sharded architecture (which seems pretty new for them). There were quite a few gotcha&#8217;s along the way, especially on the application side. One of the more relevant pieces for me was in their clever use of the Tungsten Replicator to move databases between clusters in a fairly ad-hoc fashion.</p>
<p><em>The 5 Minute DBA: MySQL DBA 101 for Non-DBA&#8217;s</em></p>
<p style="padding-left: 30px;">While I wouldn&#8217;t exactly call myself a &#8220;Non-DBA&#8221;.. I know enough to be break things worse than they already are, and I am certainly not a full-time DBA. This was a great session a great overview of the basics (needed occasionally), and a solid overview of some of the tools available in the Percona Toolkit that I know I should be using but currently am not. For shame.</p>
<p><em>Backing up Facebook</em></p>
<p style="padding-left: 30px;">I have to be brutally honest and say attending this session was easily the biggest letdown of the day. I was hoping for more from Facebook on this one. We spent about 25 minutes listening to them talk about how they use mysqldump every day on every database server.. in a non-consistency-ensuring way. And when a pointed question was asked about what would happen when they would need to recover a host server to a point in time? The question was basically brushed off saying they&#8217;d use some other mechanism to restore (presumably Xtrabackup or something similar).. I thought that&#8217;s what we were here for? Whatever. I did have some interesting hallway conversation with a couple of fine folks about how perhaps there&#8217;s some interestingness happening on the database that they&#8217;re not wanting to talk about that solves this problem for them. That very well could be (and probably is) the right answer, but then why are they at a conference giving a session on doing backups? Ugh. Again.. whatever.</p>
<p><em>Scaling MySQL Databases for the Web</em></p>
<p style="padding-left: 30px;">This was another title that decieved me (&#8216;fool me twice&#8217;, or something like that..). It was less about scaling MySQL and more about a tool developed in-house at YouTube that currently front-ends all MySQL traffic there, doing some intelligent caching and optimization.</p>
<p>One more thing</p>
<p>I usually don&#8217;t enjoy or look forward to walking around in the exhibit halls at conferences like this, but I did talk with one very interesting vendor that I hadn&#8217;t heard of before. NuoDB seems to be working on a pretty interesting product that&#8217;s just about ready to release. I don&#8217;t really have the time to dive into details about <a href="http://www.nuodb.com/how_it_works.html">how it supposedly works</a>, but they seem to understand and handle the scaling-back part of elasticity better than most other database vendors I&#8217;ve talked with. They also have a replication strategy that&#8217;s similar to the way bittorrent works which is a pretty awesome idea. There seems to be nothing open (as in source) about the product, except they want others to write various language bindings for them, so we&#8217;ll see how well this thing takes off. Definitely an interesting product to watch, though.</p>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://whatan00b.com/percona-live-mysql-conference-2012-day-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>There&#8217;s no place like 127.0.0.1</title>
		<link>http://whatan00b.com/theres-no-place-like-127-0-0-1</link>
		<comments>http://whatan00b.com/theres-no-place-like-127-0-0-1#comments</comments>
		<pubDate>Sat, 28 Jan 2012 02:04:22 +0000</pubDate>
		<dc:creator>Wyatt Walter</dc:creator>
				<category><![CDATA[Just for Fun]]></category>

		<guid isPermaLink="false">http://whatan00b.com/?p=1452</guid>
		<description><![CDATA[My odometer read this as I pulled into my driveway at home tonight. No joke. There really is no place like localhost home.]]></description>
				<content:encoded><![CDATA[<p>My odometer read this as I pulled into my driveway at home tonight. No joke. There really is no place like <del datetime="2012-01-28T02:01:05+00:00">localhost</del> home.</p>
<p><a href="http://whatan00b.com/theres-no-place-like-127-0-0-1/img_0074" rel="attachment wp-att-1454"><img src="http://whatan00b.com/wp-content/uploads/2012/01/IMG_0074-300x225.jpg" alt="No place like 127.0.0.1" title="No place like 127.0.0.1" width="300" height="225" class="alignleft size-medium wp-image-1454" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://whatan00b.com/theres-no-place-like-127-0-0-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time Machine Backups from Airport Extreme</title>
		<link>http://whatan00b.com/time-machine-backups-from-airport-extreme</link>
		<comments>http://whatan00b.com/time-machine-backups-from-airport-extreme#comments</comments>
		<pubDate>Fri, 11 Nov 2011 06:06:36 +0000</pubDate>
		<dc:creator>Wyatt Walter</dc:creator>
				<category><![CDATA[How-Tos / Tips]]></category>
		<category><![CDATA[airport]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[backups]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[time machine]]></category>

		<guid isPermaLink="false">http://whatan00b.com/?p=1440</guid>
		<description><![CDATA[Hopefully Apple doesn&#8217;t make up some way to disable this in the future, but it seems that despite claims elsewhere on the web, the latest Airport Extreme can be used with a USB hard drive to perform Time Machine backups. I&#8217;ve always heard great things about the Airport devices and &#8230;]]></description>
				<content:encoded><![CDATA[<p>Hopefully Apple doesn&#8217;t make up some way to disable this in the future, but it seems that despite claims elsewhere on the web, the latest <a href="http://www.amazon.com/gp/product/B0057AVXJA/ref=as_li_ss_tl?ie=UTF8&#038;tag=whaan00-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B0057AVXJA">Airport Extreme</a><img src="http://www.assoc-amazon.com/e/ir?t=whaan00-20&#038;l=as2&#038;o=1&#038;a=B0057AVXJA" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> can be used with a USB hard drive to perform Time Machine backups. I&#8217;ve always heard great things about the Airport devices and really wanted to do backups over it, but I already had a larger USB hard drive, so a Time Capsule seemed like a bit of a waste. This worked with an Airport Extreme 802.11n 5th generation. My Macs are both Lion and Snow Leopard.</p>
<p>All you have to do is first plug the hard drive directory into your Mac, partition as desired and format filesystems as an HFS (Mac OS Extended). Then, plugin the drive and enable disk sharing on the Airport. After that&#8217;s done, your Aiport should show up in Finder. Once you mount it, you can select it from the Time Machine settings (it will appear as a Time Capsule). </p>
<p>That&#8217;s it! Glad I found out and wasn&#8217;t deterred by what Apple says and is on their forums. The Airport has been amazing, video streaming is far smoother now unlike with the aging wireless router I was replacing. Definitely a recommended buy!</p>
]]></content:encoded>
			<wfw:commentRss>http://whatan00b.com/time-machine-backups-from-airport-extreme/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Rant about Ubuntu 11.10</title>
		<link>http://whatan00b.com/a-rant-about-ubuntu-11-10</link>
		<comments>http://whatan00b.com/a-rant-about-ubuntu-11-10#comments</comments>
		<pubDate>Thu, 27 Oct 2011 06:35:38 +0000</pubDate>
		<dc:creator>Wyatt Walter</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu 11.10]]></category>

		<guid isPermaLink="false">http://whatan00b.com/?p=1434</guid>
		<description><![CDATA[Every 6 months when Ubuntu releases I throw caution to the wind, click the upgrade button on my desktop, and leave, expecting to come back shortly to an awesome new operating system. And every 6 months it seems I don&#8217;t come back to something awesome, but to a whole collection &#8230;]]></description>
				<content:encoded><![CDATA[<p>Every 6 months when Ubuntu releases I throw caution to the wind, click the upgrade button on my desktop, and leave, expecting to come back shortly to an awesome new operating system. And every 6 months it seems I don&#8217;t come back to something awesome, but to a whole collection of new problems. Usually it&#8217;s a whole collection of conflicts or broken packages. Sometimes the system won&#8217;t boot. Sometimes X won&#8217;t start or some weird new graphics problem pops up. It pretty much always leads to a fresh install. This time, however, things were different. With 11.10, things went smoothly and everything came back up nicely. That is until I logged in and realized all my GNOME settings were non-existent afte the upgrade to GNOME 3.</p>
<p>I don&#8217;t really have any particular loyalties or love of GNOME, I just used it because that was the default and tends to be the one that&#8217;s been polished the most by Ubuntu. While the new desktop looks great, it seems to have gone backwards quite a bit in usability. The integrations with Banshee/volume controls seem to be gone (or at least not working after my upgrade), menus are confusing and way too click-heavy, and there seems to be almost not configurability to the desktop. Even the new gnome-tweak-tool seems to have very little customizability. It seems over half of the customizations have to do with fonts and really small things that don&#8217;t matter to me at all. There are those who are passionate about fonts, but I am not one of those people. </p>
<p>Perhaps worse, there&#8217;s a new menu item under your username on the menu bar for &#8220;Online Accounts&#8221;. When I clicked on it, it brought me to a screen asking to give access to my Google account.. I thought maybe this could have some promise, so I granted it access to my Goolge account and it said that it had access to, among other things, docs (which I thought was going to be really awesome). However, nothing really indicated any next steps for accessing things. After poking around a bit and not finding anything, I did a quick search online to see if anyone could give any indication for what this thing was supposed to do. And, as it seems.. <a href="http://iloveubuntu.net/ubuntu-1110s-system-settings-features-online-accounts-and-color">It does nothing</a>. While I do enjoy a good technology preview.. I had to remind myself that this was an actual release. Ugh. I just granted access to my Google account for.. what? </p>
<p>One pleasant detail that I did thoroughly enjoy about the new GNOME is the OSX-style alt-tab/alt-~ app/window switching. Grouping applications and switching windows within the apps that way has been something that I&#8217;ve desired for a long time when switching back and forth. I know that most will probably hate it, but I&#8217;m a fan <img src='http://whatan00b.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://whatan00b.com/a-rant-about-ubuntu-11-10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
