<?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>DyeWeb.com</title>
	<atom:link href="http://dyeweb.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dyeweb.com</link>
	<description>The blog &#38; portfolio of Scott Dye</description>
	<lastBuildDate>Thu, 12 Mar 2009 21:50:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The new iPod Thimble!</title>
		<link>http://dyeweb.com/thoughts/54/the-new-ipod-thimble/</link>
		<comments>http://dyeweb.com/thoughts/54/the-new-ipod-thimble/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 19:13:15 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Macintosh & OSX]]></category>

		<guid isPermaLink="false">http://dyeweb.com/?p=54</guid>
		<description><![CDATA[Apple introduced their latest incarnation of the iPod Shuffle this week...and get ready for it...it's even smaller than the previous one. Wow, how much smaller can it get?
The new shuffle now features the ability to talk to you as well, which is a clever/necessary/gimmicky (take your pick) way to offset the fact it has pretty much [...]]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_55" class="wp-caption alignright" style="width: 160px"><img class="size-full wp-image-55 " style="border: 0px initial initial;" title="ipod shuffle" src="http://dyeweb.com/wp-content/uploads/2009/03/ipodshuffle.jpg" alt="The new iPod shuffle by Apple." width="150" height="175" /><p class="wp-caption-text">The new iPod shuffle by Apple.</p></div>Apple introduced their <a href="http://www.apple.com/ipodshuffle/">latest incarnation of the iPod Shuffle</a> this week...and get ready for it...it's even smaller than the previous one. Wow, how much smaller can it get?</p>
<p>The new shuffle now features the ability to talk to you as well, which is a clever/necessary/gimmicky (take your pick) way to offset the fact it has pretty much no interface. I’d be interested to see how well this works, or if it’s just annoying. The new shuffle now comes in silver or black aluminum.</p>
<p>From what it appears, you must use the earbuds that come with it, because the controls are on the earbud cord itself. I’m not sure what I think of this. Lots of people have a very personal relationship with their earbuds, and I think it’s key to allow people to use earbuds of their own choosing. I’ve got to give credit to Apple, though – when they do something so bold as to force you to use their own earbuds exclusively, they at least give you a compelling reason why you should. It doesn't hurt that forcing the use of the iconic white earbuds is a marketing coup for Apple as well.</p>
<p>There is an ironic thing about the direction Apple is going with some of their UI, though...they are eliminating buttons, but adding all sorts of clicking schemes to offset the lack of buttons. Short click, long click, double click, click and keep holding...is that really better than just having a couple more buttons? It’s funny to me, because the reason Jobs &amp; Company always said they wanted the one button mouse is because two buttons confused the user...they never knew when to use which button. Well, at least in that case they could see the options...if you don’t read the manual (and who does), I’m sure lots of people will not even realize what various types of clicks this new controller has, because they will assume it has only one button, when in reality, it has multiple buttons, depending on how you click it.</p>
<p>I thought this new iPod thimble was pretty cool, and then, when I told my wife “Hey, Apple announced a new iPod Shuffle like the one you have, except this one is even smaller.” She responded immediately with a simple “Why?”</p>
<p>I still haven’t come up with an answer to her...</p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/54/the-new-ipod-thimble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get the current username using Applescript</title>
		<link>http://dyeweb.com/thoughts/37/get-the-current-username-using-applescript/</link>
		<comments>http://dyeweb.com/thoughts/37/get-the-current-username-using-applescript/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 14:59:49 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Macintosh & OSX]]></category>

		<guid isPermaLink="false">http://dyeweb.com/thoughts/37/get-the-current-username-using-applescript/</guid>
		<description><![CDATA[For various reasons while creating Applescripts, I've had a need for the script to know which computer it was on, since I am writing scripts for several co-workers to use. The easiest way to do so for me was to use each computer's username (the shortname OS X uses for the home directory). It's a [...]]]></description>
			<content:encoded><![CDATA[<p>For various reasons while creating Applescripts, I've had a need for the script to know which computer it was on, since I am writing scripts for several co-workers to use. The easiest way to do so for me was to use each computer's username (the shortname OS X uses for the home directory). It's a pretty easy thing to extract from the home path:</p>
<p>[code lang="applescript"]<br />
set userHome to (text of word -1 of (path to home folder as text))</p>
<p>display dialog userHome<br />
[/code]</p>
<p>This has worked well for me to be able to purge the script's property settings whenever the script gets passed on to someone else (otherwise it seems to keep the property assignments on the new computer as well. Also, it's set up just in case I ever need to fork code for a particular user if their computer setup happens to have something that just won't work with the way the rest of the other computers are set up (hopefully that will <strong>not</strong> be necessary, but you just never know).</p>
<p>edit:<br />
Well as usual, there's an easier way:</p>
<p>[code lang="applescript"]<br />
set userHome to (short user name of (system info))</p>
<p>display dialog userHome<br />
[/code]</p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/37/get-the-current-username-using-applescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Palm Centro &#8211; one device to rule them all</title>
		<link>http://dyeweb.com/thoughts/34/palm-centro-on-order/</link>
		<comments>http://dyeweb.com/thoughts/34/palm-centro-on-order/#comments</comments>
		<pubDate>Sun, 21 Oct 2007 05:40:46 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Palm Centro]]></category>

		<guid isPermaLink="false">http://dyeweb.com/thoughts/34/palm-centro/</guid>
		<description><![CDATA[I am very soon to be a proud owner of the new Palm Centro smartphone, to replace (and combine) my existing standard flip-phone and my Palm TX.
I've considered before trying to "converge" all my various tech devices into one device. I had previously melded my previous PDA and my iPod into just the Palm TX, [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://dyeweb.com/wp-content/uploads/2007/10/centro-blk.jpg' alt='Palm Centro' align='right' />I am very soon to be a proud owner of the new <a href="http://www.palm.com/us/products/smartphones/centro/">Palm Centro</a> smartphone, to replace (and combine) my existing standard flip-phone and my <a href="http://www.palm.com/us/products/handhelds/tx/">Palm TX</a>.</p>
<p>I've considered before trying to "converge" all my various tech devices into one device. I had previously melded my previous PDA and my iPod into just the Palm TX, since it does a great job (for my uses) as a music and video player. I've always thought the Treo was too big for a phone, and didn't compare to the quite large screen of the TX, which is great for viewing videos in widescreen format. I have been using my TX daily at work to listen to several Podcasts a day, and to watch downloaded TV shows on it while I'm on the bike or treadmill at the gym (the only thing that's successfully convinced me to stay on a treadmill for 45 minutes).</p>
<p>As soon as I heard about the Centro, it intrigued me like no Treo ever had. It would allow me to combine my phone, PDA, and audio player into one device that is just barely larger than my current flip-phone. It will still work with my Bluetooth Stereo headphones, so I won't have to dodge earphone cords all day while listening to my podcasts.</p>
<p>The only real tradeoff will be having a much smaller screen, especially being used to the extra screen space the TX allows. I'll probably still use the TX for video watching at the gym, but otherwise, I'll happily have one less thing in my pockets.</p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/34/palm-centro-on-order/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iTunes 7 and the Audiobooks Tab</title>
		<link>http://dyeweb.com/thoughts/29/itunes-7-and-the-audiobooks-tab/</link>
		<comments>http://dyeweb.com/thoughts/29/itunes-7-and-the-audiobooks-tab/#comments</comments>
		<pubDate>Thu, 21 Sep 2006 13:48:07 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Macintosh & OSX]]></category>

		<guid isPermaLink="false">http://dyeweb.com/?p=29</guid>
		<description><![CDATA[Overall, I really like the new changes in iTunes 7. The new Cover Flow view is really great - being a visual person this appeals greatly to me. I even re-discovered several songs that I had forgotten I had just by flipping through the album art - it feels much more akin to the traditional [...]]]></description>
			<content:encoded><![CDATA[<p><img src='/wp-content/20060921itunes.jpg' alt='iTunes' align='right' />Overall, I really like the new changes in <a href="http://www.apple.com/itunes/overview/">iTunes 7</a>. The new <a href=" http://www.apple.com/itunes/jukebox/coverflow.html">Cover Flow</a> view is really great - being a visual person this appeals greatly to me. I even re-discovered several songs that I had forgotten I had just by flipping through the album art - it feels much more akin to the traditional way of looking through your CD/Album collection.</p>
<p>However, one thing I am very unhappy about is slow but steady slide toward "the new Apple way" - and making iTunes more of a proprietary experience, instead of an open experience with the iTunes store as an added value. This is especially apparent in how iTunes 7 handles Audio books.  <span id="more-29"></span></p>
<p>Apple has done a good thing by separating out Music, Audio Books, Movies, TV Shows, and Podcasts into their own separate areas. However, Apple alone has decided what goes in each of the new "categories". They make up their own rules, instead of allowing us to decide which files show up where. For instance, by default, my large collection of audio books are now split up between the Audiobooks tab and the music tab. I have a lot of older audio books that are still .mp3 files - Apple decides that only files with an extension of .M4B (a bookmarkable AAC format, the same they use for their own store) should count as audio books. </p>
<p><a href="http://www.dougscripts.com/itunes/scripts/ss.php?sp=makebookmarkable">Doug's Applescripts</a> has a handy script that will take the files that aren't showing up in the audiobooks tab, covert them to .M4B files and remove and re-add them to your iTunes library, which will then show up in the proper tab.</p>
<p>However, I would much prefer a way to choose where my Audio Books show up (that is the point of the Genre tag, after all), than by forcing me to convert all of my files to a different format.</p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/29/itunes-7-and-the-audiobooks-tab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pluto is not a planet?</title>
		<link>http://dyeweb.com/thoughts/28/pluto-is-not-a-planet/</link>
		<comments>http://dyeweb.com/thoughts/28/pluto-is-not-a-planet/#comments</comments>
		<pubDate>Sat, 26 Aug 2006 20:11:12 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://dyeweb.com/?p=28</guid>
		<description><![CDATA[I feel cheated...like I've been lied to all my life. What do you mean Pluto isn't a planet? Scientists are now saying Pluto isn't a planet...it's a dwarf planet. 
Huh?
That's like saying "We're not going to call it a ball any more...now it's called little ball."
]]></description>
			<content:encoded><![CDATA[<p>I feel cheated...like I've been lied to all my life. What do you mean Pluto isn't a planet? Scientists are now saying Pluto isn't a planet...it's a <em>dwarf</em> planet. </p>
<p>Huh?</p>
<p>That's like saying "We're not going to call it a ball any more...now it's called <em>little</em> ball."</p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/28/pluto-is-not-a-planet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grouping Navigation Areas of a Website</title>
		<link>http://dyeweb.com/thoughts/23/grouping-navigation-areas-of-a-website/</link>
		<comments>http://dyeweb.com/thoughts/23/grouping-navigation-areas-of-a-website/#comments</comments>
		<pubDate>Mon, 19 Jun 2006 15:36:09 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dyeweb.com/?p=23</guid>
		<description><![CDATA[In doing web design - especially for smaller sites and/or smaller companies - I often run into clients who want to have one list of navigation links.
Since websites have such a large number of links associated with them, it is common to create multiple navigation areas, loosely grouped by priority and/or intent. It is well [...]]]></description>
			<content:encoded><![CDATA[<p>In doing web design - especially for smaller sites and/or smaller companies - I often run into clients who want to have one list of navigation links.</p>
<p>Since websites have such a large number of links associated with them, it is common to create multiple navigation areas, loosely grouped by priority and/or intent. It is well documented from extensive user testing that online users â€œscanâ€ a webpage to find what they are looking for as opposed to â€œreadingâ€ it. Also, from past experience the typical user expects to find links either along the top, left, or bottom of the page.<br />
<span id="more-23"></span></p>
<p>As a list of links becomes longer (more than approx. 10 items) it is much more difficult to â€œscanâ€ the list and find a particular link â€“ the desired link gets â€œlostâ€ visually, like trying to pinpoint one particular word on an entire page of text â€“ it can be done, but you might pass by the word a couple of times before finding it. Simply put, it is easier to find what you are looking for in two groups of 5-10 links each instead of one long list of 10-20 links. </p>
<p>Larger sites (like msn.com or major news sites) have so many links that they have no option but to have long lists, but even then they try to group them as best they can. </p>
<p>On smaller sites, often there are three groups of links:</p>
<ol>
<li>the main â€œcategoryâ€ links (the main information-based sections of the site) - typically on the left or at the top of the site</li>
<li>utility links (action-oriented or interactive areas of the site) - usually at the top right of the site, smaller than the main category links</li>
<li>Footer/legal/corporate links (often including links such as â€œcorporate infoâ€, â€œemploymentâ€, â€œcontact usâ€ etc. as well as legal info)</li>
</ol>
<p>It should also be noted that a user with a specific goal in mind (like coming to the site just to send a comment or look for job postings) will typically look a little harder for a particular link than someone who is just looking for info. This allows you to emphasize the more general info links, and group them more prominently, and slightly de-emphasize the â€œspecific goalâ€ links. The end result is a site that is much easier to navigate by both types of users.</p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/23/grouping-navigation-areas-of-a-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One more OS9 user bites the dust (almost)</title>
		<link>http://dyeweb.com/thoughts/17/upgraded-to-osx/</link>
		<comments>http://dyeweb.com/thoughts/17/upgraded-to-osx/#comments</comments>
		<pubDate>Sun, 23 Oct 2005 03:48:53 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Macintosh & OSX]]></category>

		<guid isPermaLink="false">http://dyeweb.com/?p=17</guid>
		<description><![CDATA[After lots and lots of nudging, begging, and (mostly) waiting on my part...my father has finally taken the leap into OS X. Thank goodness!
 
He decided to buy a 12" Powerbook after using mine a few times. He has various Macs he uses for his business - 2 G4 towers, 2 Wallstreet Powerbooks, and a [...]]]></description>
			<content:encoded><![CDATA[<p>After lots and lots of nudging, begging, and (mostly) waiting on my part...<a href="http://www.burtondye.com">my father</a> has finally taken the leap into OS X. Thank goodness!<br />
<span id="more-17"></span> </p>
<p>He decided to buy a 12" Powerbook after using mine a few times. He has various Macs he uses for his business - 2 G4 towers, 2 Wallstreet Powerbooks, and a Bondi blue iMac. He's resisted upgrading for understandable reasons:</p>
<ul>
<li>he knows OS 9 (and has few problems with it, at least in his perception)</li>
<li>he uses two large format inkjet printers with various papers, and has all the needed settings figured out (which took a while to get straight)</li>
<li>the Point-of-purchase software he uses to manage the business stopped development at OS 9. The software does everything he needs, and he is not interested in spending the time and effort to migrate to a new system</li>
</ul>
<p>The funny part is that now that he has made the upgrade, he has ended up with a newer version than me! Tiger came with his new computer, and I'm still using Panther. </p>
<p>He's starting to get it. It's neat to see. On the phone today he asked me if Dashboard was new to Tiger. I told him it was and he replied "it's pretty neat." I knew it would be perfect for him to check stock prices whenever my grandfather called to ask how his stocks were doing. He's already using it for that, after only three days. </p>
<p>Pretty cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/17/upgraded-to-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Websites are like tatoos</title>
		<link>http://dyeweb.com/thoughts/15/websites-are-like-tattoos/</link>
		<comments>http://dyeweb.com/thoughts/15/websites-are-like-tattoos/#comments</comments>
		<pubDate>Mon, 05 Sep 2005 16:00:11 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://dyeweb.com/?p=15</guid>
		<description><![CDATA[While browsing the other night, I ran across a post by Dan Wood (creator of the fabulous - and currently in limbo - Watson), titled  Starting a website is like buying a turtle, in which he discusses the phenomenon created by the Google cache and the Wayback Machine.
To me though, it's more like getting [...]]]></description>
			<content:encoded><![CDATA[<p>While browsing the other night, I ran across a post by Dan Wood (creator of the fabulous - and currently in limbo - <a href="http://www.karelia.com/watson/">Watson</a>), titled  <a href="http://www.gigliwood.com/weblog/General/Starting_a_website_.html">Starting a website is like buying a turtle</a>, in which he discusses the phenomenon created by the Google cache and the <a href="http://www.archive.org/">Wayback Machine</a>.</p>
<p>To me though, it's more like getting a tattoo when you're young. I sure hope you'll still like what it looks like (and says about you) many, many years from now. Soon after a site is created, it's pretty much a permanent fixture of the web, and there's not much you can do about it, which means be careful what you say, and be ready to stand by it from that point onward. <span id="more-15"></span></p>
<p>While it's intriguing that I can see almost every iteration of the <a href="http://web.archive.org/web/*/http://spikevolley.com">first website I ever maintained</a>, it's also quite scary. I look at that archive now and think how temporary I considered all of those pages to be at the time. I keep thinking "did I ever post something on that site I wouldn't like seen now"? Probably not, but oh how easy it would have been at that point in my life. However, just like a tattoo, I'm not sure I would want the same things in public view today that I would have then.</p>
<p>At different points I have developed sites meant only for the eyes of a select group of friends or family. I've had to work hard and be very careful to keep them out of the search engines. Even with all the time researching and implementing <a href="http://www.searchengineworld.com/robots/robots_tutorial.htm">robots.txt</a> and such, one late night goof while meaning to submit a different site to google <em>still</em> has the home page to one of those sites in it's database - even with "no-index" and robot exclusions in place. But what if I hadn't been so web-savvy even then, not to mention overly protective of the personal info of me and my friends? All it would have taken was for another friend to have put a link on their site and all of my precautions would have be for nothing (good thing all my friends didn't have their own blog back then).</p>
<p>Recently at work I made one of those goofs. As I was getting ready to leave work one day, my boss IM'ed me to say that the login for a seldom-used portion of our site wasn't working. It seems a change by our hosting company broke the method I had used for password protection. I thought it would be safe enough to remove the password protection for the night and figure out how to fix it in the morning. Well, an extremely busy morning the next day caused me to forget all about it. I discovered my oversight a few weeks later when testing out the search engine placement for a new site we developed for a client. The second and third results for the client's business name were for the comps we showed the clients during development! Several redirects later pointed all traces of those comps to the client's homepage instead. I had to do this for two other clients and their comps as well, but in one of those cases a comp page had been cached by Google already. Not a big deal in this case, but wow could it have been.</p>
<p>I think of all the blogs I've read where people at one point discussed all sorts of opinions and personal topics, only to later decide they didn't like being so open after all...how do they feel about all that info still being out there?</p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/15/websites-are-like-tattoos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Print &amp; Web Design</title>
		<link>http://dyeweb.com/thoughts/14/print-web-design/</link>
		<comments>http://dyeweb.com/thoughts/14/print-web-design/#comments</comments>
		<pubDate>Mon, 20 Jun 2005 04:37:54 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Site Updates]]></category>

		<guid isPermaLink="false">http://dyeweb.com/?p=14</guid>
		<description><![CDATA[ Welcome to the online home of Dye Design. This current site is in the process of a complete redesign, so some things may be a little wonky - you have been warned. If you are in need of some design, feel free to send me a note, and I would be happy to talk [...]]]></description>
			<content:encoded><![CDATA[<p> Welcome to the online home of Dye Design. This current site is in the process of a <a href="v2/_layout.php">complete redesign</a>, so some things may be a little wonky - you have been warned. If you are in need of some design, feel free to <a href="/index.php?page_id=13">send me a note</a>, and I would be happy to talk to you about your creative needs. </p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/14/print-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Planes, Trains and Automobiles</title>
		<link>http://dyeweb.com/thoughts/8/planes-trains-and-automobiles/</link>
		<comments>http://dyeweb.com/thoughts/8/planes-trains-and-automobiles/#comments</comments>
		<pubDate>Sat, 05 Jun 2004 15:59:30 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://dyeweb.com/blog/?p=8</guid>
		<description><![CDATA[I had to go to New Hampsire to meet with a client, and went to Atlanta to watch some friends play in the US Open Volleyball Nationals in Atlanta. Since the flight my boss booked returned through Atlanta, I decided to stay for a couple of days, instead of flying back to Nashville, and turning [...]]]></description>
			<content:encoded><![CDATA[<p>I had to go to New Hampsire to meet with a client, and went to Atlanta to watch some friends play in the US Open Volleyball Nationals in Atlanta. Since the flight my boss booked returned through Atlanta, I decided to stay for a couple of days, instead of flying back to Nashville, and turning around and driving back to Atlanata.</p>
<p>Boy was it an experience. <span id="more-8"></span></p>
<p>Here are just a few of the characters I met along the way:</p>
<ul>
<li><strong>The Ticket Counter Worker:</strong> I was <em>very</em> late for my initial flight out of Nashville. This man sped my through the check-in process, and walked me over to the other security line, knowing it would be shorter. I made it to the plane 5 mintes before take-off, thanks to him.</li>
</ul>
<ul>
<li><strong>The Car Rental Manager:</strong> This guy was very helpful, even if he didn&#8217;t honor the deal that I had gotten from a <a href="http://www.onetravel.com/">schiester website</a>. He worked with me for an hour, called the website&#8217;s customer service, let me get on his computer to cancel my insurance with that company, and set me up with a different rental.</li>
</ul>
<ul>
<li><strong>The Crackhead Car Rental Shuttle Driver:</strong> She was quite a hoot, making fun of all of the rental-car drivers getting in her way, and complaining about the world in general. She talked non-stop during my entire ride. Okay, so she wasn&#8217;t a crackhead, and was actually quite nice, but boy, what a character.</li>
</ul>
<ul>
<li><strong>The Homeless Tourguide:</strong> As I made my way from the <a href="http://www.itsmarta.com">MARTA</a> station trying to find the Omni Hotel, a man who I came across asked what hotel I was looking for. When I said the Omni, he said, &#8220;shoo-oot, you got off the wrong train.&#8221; He walked me 2-3 blocks to show me where the hotel was, informed me of the better way to get there via MARTA train, and which stations and trains to take later when I went back to the aiprort. He asked if I was in Atlanta for the volleyball, and chit-chatted about that. When he asked where I was from, he said &#8220;man, this is gonna blow your mind,&#8221; and informed me that he was from Columbia, a town near where I&#8217;m from. I actually gave him $5 for his help. I&#8217;ve never given money to a homeless man before, but hey, he actually earned that money. He was helpful, polite, and actually talked to me, instead of just begging for money.</li>
</ul>
<ul>
<li><strong>My Mentor:</strong> While at the tournament, I ran into my mentor, who originally taught me (as well as many others in my area) how to play volleyball. It was good to see him. I had kept in touch occasionally through the years, but had recently lost touch with him via email, and had not seen him in more than ten years. It was good to see him again, and better yet, to reconnect him with a couple of the other &#8220;old school&#8221; players from my area that were at Nationals.</li>
</ul>
<ul>
<li><strong>Old Friends:</strong> I kept running into more and more old volleyball friends at Nationals each day I was there.</li>
</ul>
<ul>
<li><strong>The CNN Talent:</strong> While waiting in line at Dunkin Donuts in the <a href="http://www.digitalcity.com/atlanta/entertainment/venue.adp?sbid=103579463&#38;type=overview">CNN Center</a> Foodcourt, the guy standing behind me turned out to be an on-air personality, acting like a total jerk. Huffing and puffing, pacing, etc for having to wait. Poor thing. I&#8217;m sure he was thinking &#8220;I bet Larry King doesn&#8217;t have to get his own coffee.&#8221; </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/8/planes-trains-and-automobiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
