<?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>MikeBrum.com &#187; Random</title>
	<atom:link href="http://mikebrum.com/category/random/feed/" rel="self" type="application/rss+xml" />
	<link>http://mikebrum.com</link>
	<description>Bombarding the net with slightly greasy solar atoms for almost 10 years...</description>
	<lastBuildDate>Tue, 07 Feb 2012 20:14:14 +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>New WordPress Plugin &#8212; Auto Add Users To Mingle</title>
		<link>http://mikebrum.com/new-wordpress-plugin-auto-add-users-to-mingle/</link>
		<comments>http://mikebrum.com/new-wordpress-plugin-auto-add-users-to-mingle/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 07:18:14 +0000</pubDate>
		<dc:creator>mbrum</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://mikebrum.com/?p=2233</guid>
		<description><![CDATA[I downloaded the Mingle Forum Plugin today and started tooling around with it. After working through a number of small configuration problems, I discovered that you have to manually allow users to post in forums. Since the plugin is actually really great, I didn&#8217;t want to scrap it despite this missing functionality. It didn&#8217;t seem [...]]]></description>
			<content:encoded><![CDATA[<p>I downloaded the <a title="Mingle Forum Plugin" href="http://cartpauj.icomnow.com/projects/mingle-forum-plugin/">Mingle Forum Plugin</a> today and started tooling around with it. After working through a number of small configuration problems, I discovered that you have to manually allow users to post in forums. Since the plugin is actually really great, I didn&#8217;t want to scrap it despite this missing functionality.</p>
<p>It didn&#8217;t seem like it should be &#8220;that hard&#8221; to figure out the database tables that handled the user-group relationship and create a <a title="WordPress" href="http://wordpress.org/">WordPress</a> plugin that would automatically join a new user to the appropriate tables. I&#8217;m not sure why, exactly, I assumed this &#8212; but that&#8217;s the premise I was working off of. The following is the actual plugin and details for anyone that wants to implement it as-is. There&#8217;s plenty more work that would need to be done to &#8220;release it&#8221;.</p>
<p>It&#8217;s important to mention that EVERY user that logs into your <a title="WordPress" href="http://wordpress.org/">WordPress</a> instance will be added to a SINGLE group. There&#8217;s no way to exclude any users (without adding code for that explicit purpose). This isn&#8217;t a problem for my implementation, but I can understand that this may be an issue for some people. Either way, I&#8217;m sure this should be adequate for most people&#8217;s use.</p>
<blockquote><p>&lt;?php<br />
/*<br />
Plugin Name: Auto Add Users To Mingle<br />
Plugin URI: <a title="MikeBrum.com" href="http://mikebrum.com/">http://mikebrum.com/</a><br />
Description: This plugin automatically joins any user to a defined group ID so they can make forum posts<br />
Version: 0.1<br />
Author: Mike Brum<br />
Author URI: <a title="MikeBrum.com" href="http://mikebrum.com/">http://mikebrum.com/</a><br />
License: Freestuffz<br />
*/</p>
<p>/*<br />
This program is distributed in the hope that it will be useful,<br />
but WITHOUT ANY WARRANTY. Please test it in a way that will not<br />
expose you to the loss of data if any problems are encountered.<br />
*/</p>
<p>class forumAdder {<br />
function add2forum() {<br />
global $current_user, $wpdb;<br />
$current_user = wp_get_current_user();<br />
$cuid = $current_user-&gt;ID;</p>
<p># check db to see if they&#8217;re part of &#8220;the group&#8221;<br />
$id_query = &#8220;SELECT id, user_id FROM <strong>wp_mauimtg_forum_usergroup2user</strong> WHERE user_id = &#8216;$cuid&#8217;&#8221;;<br />
$my_id = $wpdb-&gt;get_row($id_query, ARRAY_N);</p>
<p># if not, then add them<br />
if ( (! $my_id[1] ) &amp;&amp; ($cuid != &#8217;0&#8242;) &amp;&amp; ($cuid != &#8221;) ){<br />
$wpdb-&gt;insert( &#8216;<strong>wp_mauimtg_forum_usergroup2user</strong>&#8216;,<br />
array( &#8216;user_id&#8217; =&gt; $cuid, &#8216;group&#8217; =&gt; <strong>2</strong> ),<br />
array( &#8216;%d&#8217;, &#8216;%s&#8217; )<br />
);<br />
}<br />
}<br />
}</p>
<p>$myForumAdder = new forumAdder();<br />
add_action(&#8216;shutdown&#8217;, array($myForumAdder, &#8216;add2forum&#8217;));<br />
?&gt;</p></blockquote>
<p>So the first thing that you&#8217;ll need to do is copy the code above to a file and put it in your plugins dir for <a title="WordPress" href="http://wordpress.org/">WordPress</a>. I called it &#8220;auto_add_users_to_mingle.php&#8221;. Seemed appropriate.</p>
<p>There&#8217;s two things that you need to change:</p>
<p><em>wp_mauimtg_forum_usergroup2user</em> &#8212; this is the Mingle &#8216;forum_usergroup2user&#8217; table. Given the <a title="WordPress" href="http://wordpress.org/">WordPress</a> table prefix for the blog I was added it to is &#8220;wp_mauimtg_&#8221;, this is how we get this full table name. If you look in your wp-config.php file and look at your $table_prefix variable, it should be obvious what this should be changed to. It&#8217;ll basically be: $table_prefix + &#8216;forum_usergroup2user&#8217;</p>
<p>For reference, my exact line from wp-config.php is:</p>
<blockquote><p>$table_prefix  = &#8216;wp_mauimtg_&#8217;;</p></blockquote>
<p>The other important thing that needs to change is the line:</p>
<blockquote><p>array( &#8216;user_id&#8217; =&gt; $cuid, &#8216;group&#8217; =&gt; <strong>2</strong> ),</p></blockquote>
<p>Specifically, the number &#8220;2&#8243; (the rest of the line needs to stay exactly the same).</p>
<p>Now, there&#8217;s no &#8220;easy&#8221; way to figure out what this number is supposed to be. You&#8217;re going to have to log into your database and figure out what that number is.</p>
<p>Here&#8217;s a straight forward way to figure it out (using the table names that I&#8217;m looking at as defined by my $table_prefix):</p>
<p>1) look at all entries in the table wp_mauimtg_forum_usergroups and find the group that you want everyone to be added to. There&#8217;s a column called &#8220;name&#8221; that will actually display the group name, so there&#8217;s no real guessing involved once you spit out the contents of wp_mauimtg_forum_usergroups.</p>
<p>2) the value in the &#8220;id&#8221; column is the number that you&#8217;re going to want to specify in the above line.</p>
<p>For example, if you have a group called &#8220;Family&#8221; that you wanted everyone added to and you looked that row up in your wp_mauimtg_forum_usergroups table and found that it had an id of &#8220;15&#8243;, then the line would need to be changed to:</p>
<blockquote><p>array( &#8216;user_id&#8217; =&gt; $cuid, &#8216;group&#8217; =&gt; 15 ),</p></blockquote>
<p>Once you&#8217;ve made the 2x table name changes and the 1x number change, you should be ready to activate the plugin.</p>
<p>If you get an error, you&#8217;ve probably screwed up the PHP syntax and should fine-tooth-comb the changes you made.</p>
<p>As I mentioned, this is my first plugin, so I&#8217;m sure there&#8217;s a number of things I could do to improve it. For instance, I&#8217;d imagine there&#8217;s a way to pull out the value of $table_prefix and do the string concatenation and I could make an admin panel for the plugin that brings up the list of groups in wp_mauimtg_forum_usergroups and lets you select one from a pull-down instead of having to hack at it by hand.</p>
<p>But both of these enhancements are for another day.</p>
<p>I just wanted to contribute the code if it can help others. Hope you have luck implementing it.</p>
<p>You can download a zip file directly: <a title="auto_add_users_to_mingle.0.1.zip" href="http://mikebrum.com/wp-content/uploads/2011/09/auto_add_users_to_mingle.0.1.zip">auto_add_users_to_mingle.0.1.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mikebrum.com/new-wordpress-plugin-auto-add-users-to-mingle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Not Quite 5 Hour Energy</title>
		<link>http://mikebrum.com/not-quite-5-hour-energy/</link>
		<comments>http://mikebrum.com/not-quite-5-hour-energy/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 09:24:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://mikebrum.com/?p=2226</guid>
		<description><![CDATA[I&#8217;m up late tonight with some overnight maintenances for work. On one hand, it&#8217;s only 11pm here because work is pegged to EDT and I&#8217;m in HST. The bad thing is that I&#8217;m also pretty tied to EDT and wake up at 5am or earlier. If I were still on the East Coast, it&#8217;d be [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m up late tonight with some overnight maintenances for work.</p>
<p>On one hand, it&#8217;s only 11pm here because work is pegged to EDT and I&#8217;m in HST. The bad thing is that I&#8217;m also pretty tied to EDT and wake up at 5am or earlier. If I were still on the East Coast, it&#8217;d be 5am and I&#8217;d have been up from the night prior, with work starting at 11:30pm. But given that I&#8217;m still waking up really early, the fact that it&#8217;s only 11pm is somewhat immaterial &#8212; especially when you consider how long I&#8217;ve been working today. The raw hours are a bit scary.</p>
<p>From my last trip to Oahu, I had a leftover &#8220;5 Hour Energy&#8221; drink that I never ended up needing. It was the first time I had bought one, but figured since I&#8217;d be up really late, it was probably worth having it just in case. Well, &#8216;in case&#8217; never came so it traveled back with me to sit in my medicine cabinet. Around 8pm, I could tell that I was starting to get a tad slower. I was far from &#8220;tired&#8221;, but I knew I was going to be feeling it in a few hours despite the copious amounts of Coke that I&#8217;ve been consuming all day long. With that realization, I went to the medicine cabinet and cracked open the tiny bottle.</p>
<p>While bringing it to my mouth to drink, I paused and read the &#8220;instructions&#8221;. Basically, they said &#8220;drink half of the bottle if you want 1/2 the energy in the bottle, but drink the whole thing if you want super energy&#8221;. I knew I had at least 5-6 hours of work ahead of me, so I figured it was both safe and prudent to go all in.</p>
<p>Here&#8217;s where disappointment sets in &#8212; it&#8217;s only 3 hours later (I&#8217;m still working) and I feel exactly like I would have had I not taken that drink. I have to do a lot of out-of-hours work and get woken up in the middle of the night with phone calls, so I&#8217;ve got a pretty good bead on how I react to sleep and sleep deprivation.</p>
<p>My loose assumption is that my body is pretty well tuned to break down stimulants given my diet that consists of a large amount of sugar and caffeine sources. I&#8217;m one of those people that can drink soda right up to going to bed and my eyes still shut when I hit the pillow. Maybe this should have flavored my expectation of efficacy, but given the explicit goal of the drink, I was hoping for more.</p>
<p>Next time, I&#8217;ll just take an afternoon nap.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikebrum.com/not-quite-5-hour-energy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sore Legs</title>
		<link>http://mikebrum.com/sore-legs/</link>
		<comments>http://mikebrum.com/sore-legs/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 16:01:46 +0000</pubDate>
		<dc:creator>mbrum</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://mikebrum.com/?p=2152</guid>
		<description><![CDATA[Dominic and Joe were visiting from Monday to Wednesday. It was really great to see some people that we knew since we haven&#8217;t seen any of our friends since we left in May. It&#8217;s definitely weird. We did manage to get a bunch of beach and snorkeling time in, hence the sore legs. Since I [...]]]></description>
			<content:encoded><![CDATA[<p>Dominic and Joe were visiting from Monday to Wednesday. It was really great to see some people that we knew since we haven&#8217;t seen any of our friends since we left in May. It&#8217;s definitely weird.</p>
<p>We did manage to get a bunch of beach and snorkeling time in, hence the sore legs.</p>

<a href="http://mikebrum.com/wp-content/gallery/underwater/20110628_spotted_reef_crab_01.jpg" title="I noticed this guy while snorkeling with Nick and Joe. He was either terrified or unphased by my presence, since he let me get inches from his face to snap this shot." class="thickbox" rel="singlepic311" >
	<img class="ngg-singlepic" src="http://mikebrum.com/wp-content/gallery/cache/311__320x240_20110628_spotted_reef_crab_01.jpg" alt="Spotted Reef Crab" title="Spotted Reef Crab" />
</a>

<p>Since I work at home and Corinne just got a job (and works alone while there), we haven&#8217;t really had the opportunity to meet a lot of new people yet. I know it&#8217;s only a matter of time, but it doesn&#8217;t change how odd it feels. It&#8217;ll definitely change over time though.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikebrum.com/sore-legs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flux (not the capacitor)</title>
		<link>http://mikebrum.com/flux-not-the-capacitor/</link>
		<comments>http://mikebrum.com/flux-not-the-capacitor/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 02:23:09 +0000</pubDate>
		<dc:creator>mbrum</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://mikebrum.com/?p=2136</guid>
		<description><![CDATA[Ok, so this blog thing&#8230;. not so much with the updates. There&#8217;s a really good reason why: In a month, I&#8217;m moving to Hawaii. See, told ya. After I get settled, I plan on getting back w/ the updates. I&#8217;ll also have fun stuffs to talk about and hopefully tons of pictures to post. Until [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so this blog thing&#8230;. not so much with the updates.</p>
<p>There&#8217;s a really good reason why:</p>
<blockquote><p>In a month, I&#8217;m moving to Hawaii.</p></blockquote>
<p>See, told ya.</p>
<p>After I get settled, I plan on getting back w/ the updates. I&#8217;ll also have fun stuffs to talk about and hopefully tons of pictures to post.</p>
<p>Until then, do the Facebook thing if you need to know the day-to-day nonsense.</p>
<p>Aloha, bitches.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikebrum.com/flux-not-the-capacitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alone In The Wild</title>
		<link>http://mikebrum.com/alone-in-the-wild/</link>
		<comments>http://mikebrum.com/alone-in-the-wild/#comments</comments>
		<pubDate>Fri, 26 Nov 2010 19:00:59 +0000</pubDate>
		<dc:creator>mbrum</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://mikebrum.com/?p=2130</guid>
		<description><![CDATA[It&#8217;s the day after Thanksgiving and I&#8217;m sitting on my ass watching TV and wasting time on the internet. While far from the most productive, it&#8217;s not the worst way to spend a day off. While flipping around, I came across the show Alone In The Wild. It&#8217;s absolutely amazing. Here&#8217;s the basic idea: Alone [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s the day after Thanksgiving and I&#8217;m sitting on my ass watching TV and wasting time on the internet. While far from the most productive, it&#8217;s not the worst way to spend a day off.</p>
<p>While flipping around, I came across the show <a title="Alone In The Wild" href="http://channel.nationalgeographic.com/channel/alone-in-the-wild"><em>Alone In The Wild</em></a>. It&#8217;s absolutely amazing. Here&#8217;s the basic idea:</p>
<blockquote><p>Alone in the Wild follows the survival adventure  of Ed Wardle as he treks across the Yukon territory for three months.</p></blockquote>
<p>Short and sweet, right? On its surface, you&#8217;d think it sounds a bit like Man vs Wild or Survivorman, but this couldn&#8217;t be further from the truth. I&#8217;ve only seen 1 episode, but what an impact. Besides the constant struggle to find food and stress over things like bears, Ed&#8217;s biggest challenge may be simply being alone with nobody around and nobody to talk to. He frequently talks about how much he misses people and is frequently seen crying &#8212; either due to stress or loneliness.</p>
<p>It&#8217;s definitely not on the brighter end of &#8220;entertainment&#8221;.</p>
<p>Ultimately, Ed had to get airlifted out of the wilderness after 50 days because he was basically dying of starvation. While he didn&#8217;t meet his 90 day goal, I can&#8217;t imagine most people would fare much better.</p>
<p>This is a partial paraphrase of something Ed said earlier in the  episode, but there&#8217;s a huge difference between living and surviving&#8230;  and watching just one episode is a very sobering reminder of that.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikebrum.com/alone-in-the-wild/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>October Closing Down</title>
		<link>http://mikebrum.com/october-closing-down/</link>
		<comments>http://mikebrum.com/october-closing-down/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 21:19:47 +0000</pubDate>
		<dc:creator>mbrum</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://mikebrum.com/?p=2127</guid>
		<description><![CDATA[It&#8217;s the last day of October &#8211; Halloween &#8211; and I&#8217;m not looking forward to the winter at all. I don&#8217;t even look forward to fall. If there&#8217;s a hell for me, it&#8217;s full of ice and snow, not fire &#8212; Stygia. I realized that, yet again, I&#8217;ve been very bad at updating. Facebook gets [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s the last day of October &#8211; Halloween &#8211; and I&#8217;m not looking forward to the winter at all. I don&#8217;t even look forward to fall. If there&#8217;s a hell for me, it&#8217;s full of ice and snow, not fire &#8212; <a title="Stygia" href="http://en.wikipedia.org/wiki/Baator#Stygia">Stygia</a>.</p>
<p>I realized that, yet again, I&#8217;ve been very bad at updating. Facebook gets all the love simply due to it being very easy. Twitter even gets some action. The breakdown is somewhat odd &#8212; facebook gets nonsense and links, twitter gets MMA and M:tG posts (oddly incongruous) and my blog gets rambling. I need to find a better way to get the lot integrated.</p>
<p>I&#8217;m still playing M:tG regularly. I need to focus some of that as well since it&#8217;s kind of all over the place and I&#8217;m sure I could be improving more if I looked at my play habits. I&#8217;m tired of playing and being &#8220;about average&#8221; and not taking home any prizes. I&#8217;d really like to get to a point where the hobby starts to support itself. While paying for it doesn&#8217;t bother me, I&#8217;d still like to get something back for the time and money investment.</p>
<p>And work&#8230; got lots of that and it&#8217;s been a very strange month. The next two will likely be strange too. We&#8217;ll see what happens.</p>
<p>When something exciting happens, I&#8217;ll be sure to holler. </p>
]]></content:encoded>
			<wfw:commentRss>http://mikebrum.com/october-closing-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UFC 118!</title>
		<link>http://mikebrum.com/ufc-118/</link>
		<comments>http://mikebrum.com/ufc-118/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 02:12:23 +0000</pubDate>
		<dc:creator>mbrum</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://mikebrum.com/?p=2108</guid>
		<description><![CDATA[I went to UFC 118 last night at the TD Garden &#8212; such a fun time! I&#8217;m a fairly recent UFC convert, but I&#8217;ve been really enjoying the sport. I have some friends in town from Portland, OR that are big fans and have been to events in the past, so we ponied up the [...]]]></description>
			<content:encoded><![CDATA[<p>I went to UFC 118 last night at the TD Garden &#8212; such a fun time!</p>
<p>I&#8217;m a fairly recent UFC convert, but I&#8217;ve been really enjoying the sport. I have some friends in town from Portland, OR that are big fans and have been to events in the past, so we ponied up the cash for tix and set in to watch some fights. We had good seats and a nice view of the action. A pair of cheap binoculars really helped when there was an unobstructed view to get a great shot of the action.</p>
<p>Not all of our picks won, but it was still worth it.</p>
<p>The Couture v Toney fight ended pretty much exactly as expected and was hilarious to watch. The Lauzon fight was great and the crowd was totally in his corner. </p>
<p>If UFC ever comes back to Boston or is having an event somewhere nearby, I&#8217;ll def by looking for tickets. </p>
]]></content:encoded>
			<wfw:commentRss>http://mikebrum.com/ufc-118/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Should Do This More Often</title>
		<link>http://mikebrum.com/i-should-do-this-more-often/</link>
		<comments>http://mikebrum.com/i-should-do-this-more-often/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 04:33:56 +0000</pubDate>
		<dc:creator>mbrum</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://mikebrum.com/?p=2097</guid>
		<description><![CDATA[I haven&#8217;t posted since 2009. That&#8217;s kinda horrible. I&#8217;ve been meaning to post an update for a while, but simply haven&#8217;t gotten around to it. While I come up with a more content-rich update, know that I just uploaded 15 new images to my Underwater Gallery. We were able to get out to the Isle [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t posted since 2009. That&#8217;s kinda horrible.</p>
<p>I&#8217;ve been meaning to post an update for a while, but simply haven&#8217;t gotten around to it. </p>
<p>While I come up with a more content-rich update, know that I just uploaded 15 new images to my <a href="http://mikebrum.com/photo-galleries/?mode=gallery&#038;gallery=underwater">Underwater Gallery</a>. We were able to get out to the Isle of Shoals this year, similar to last year. Definitely a great dive with some amazing animals!</p>
<p>I&#8217;ll update more later &#8211; promise!</p>
]]></content:encoded>
			<wfw:commentRss>http://mikebrum.com/i-should-do-this-more-often/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Airport Goodness</title>
		<link>http://mikebrum.com/more-airport-goodness/</link>
		<comments>http://mikebrum.com/more-airport-goodness/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 03:40:47 +0000</pubDate>
		<dc:creator>mbrum</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://mikebrum.com/?p=2094</guid>
		<description><![CDATA[I fly out to Portland tomorrow. I&#8217;m far from being &#8220;packed&#8221;, but I&#8217;m &#8220;very organized&#8221; right now since I did all laundry-related work earlier in the day and there&#8217;s nice piles of clothes ready for me to pack up. I don&#8217;t depart tomorrow until 4:45, so I should be totally fine as long as I [...]]]></description>
			<content:encoded><![CDATA[<p>I fly out to Portland tomorrow. I&#8217;m far from being &#8220;packed&#8221;, but I&#8217;m &#8220;very organized&#8221; right now since I did all laundry-related work earlier in the day and there&#8217;s nice piles of clothes ready for me to pack up.</p>
<p>I don&#8217;t depart tomorrow until 4:45, so I should be totally fine as long as I don&#8217;t sleep until 3. </p>
<p>Beyond &#8220;dealing with the weather&#8221;, it&#8217;s a very open trip.</p>
<p>Not looking forward to the flight, but I&#8217;m happy that it&#8217;s a non-stop flight from BOS to PDX. Could be a lot worse.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikebrum.com/more-airport-goodness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP via iPhone</title>
		<link>http://mikebrum.com/wp-via-iphone/</link>
		<comments>http://mikebrum.com/wp-via-iphone/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 04:04:13 +0000</pubDate>
		<dc:creator>mbrum</dc:creator>
				<category><![CDATA[Nerd]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://mikebrum.com/wp-via-iphone/</guid>
		<description><![CDATA[I just downloaded a wordpress app for the iPhone and seeing how well it works. So far, it&#8217;s pretty slick. Later, if this goes smoothly, I&#8217;ll figure out how it works with images. Definitely neat!]]></description>
			<content:encoded><![CDATA[<p>I just downloaded a wordpress app for the iPhone and seeing how well it works. So far, it&#8217;s pretty slick. </p>
<p>Later, if this goes smoothly, I&#8217;ll figure out how it works with images. Definitely neat!</p>
]]></content:encoded>
			<wfw:commentRss>http://mikebrum.com/wp-via-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

