<?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"
	>

<channel>
	<title>Digital-Traffic.net</title>
	<atom:link href="http://digital-traffic.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://digital-traffic.net/blog</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Wed, 21 May 2008 03:35:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>SpamAssassin: Dealing with unrecognized spam</title>
		<link>http://digital-traffic.net/blog/it-tech/spamassassin-dealing-with-unrecognized-spam/</link>
		<comments>http://digital-traffic.net/blog/it-tech/spamassassin-dealing-with-unrecognized-spam/#comments</comments>
		<pubDate>Sat, 03 May 2008 20:07:23 +0000</pubDate>
		<dc:creator>bshacklett</dc:creator>
		
		<category><![CDATA[IT / Tech]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[Maildir]]></category>

		<category><![CDATA[scripting]]></category>

		<category><![CDATA[spam]]></category>

		<category><![CDATA[SpamAssassin]]></category>

		<guid isPermaLink="false">http://digital-traffic.net/blog/?p=25</guid>
		<description><![CDATA[Everyone hates spam, and one of the main ways that people are fighting it is through the use of SpamAssassin. I&#8217;ve been using it for a while now and have Sieve detecting spam headers and moving them to my Junk folder.
The Problem
Dealing with spam that went unrecognized has been more of a manual process. Every [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone hates spam, and one of the main ways that people are fighting it is through the use of <a href="http://spamassassin.apache.org/">SpamAssassin</a>. I&#8217;ve been using it for a while now and have Sieve detecting spam headers and moving them to my Junk folder.</p>
<h3>The Problem</h3>
<p>Dealing with spam that went unrecognized has been more of a manual process. Every once in a while, I&#8217;d have to segregate all of my useful mail from the spam and run &#8220;sa-learn&#8221; on my the leftovers. This isn&#8217;t horrible, because I tend to shell into my server fairly frequently, but I really prefer to have menial tasks like this automated.</p>
<h3>A solution</h3>
<p>First of all, I created a folder in my mailbox called &#8220;Unrecognized Spam&#8221;. The name isn&#8217;t important, really. It just needs to be a place to file away all of those messages that SpamAssassin didn&#8217;t catch on the way in.</p>
<p>Once that was done, I wrote a very simple little script, which I dropped in /etc/cron.daily/:</p>

<div class="wp_syntax"><div class="code"><pre class="bash"><span style="color: #808080; font-style: italic;">#!/bin/bash</span>
&nbsp;
<span style="color: #007800;">SPAM_DIR=</span><span style="color: #ff0000;">&quot;/home/bshacklett/Maildir/Unrecognized Spam/cur&quot;</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #ff0000;">&quot;$SPAM_DIR&quot;</span>
sa-learn --spam .;
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

<p>Nasty, I know, but it did the job. All I had to do when I got spam that went unnoticed by SpamAssassin was drag it into my &#8220;Unrecognized Spam folder&#8221; and it would be learned and gone within 24 hours. Of course, I was also getting mail from the cron daemon complaining when there weren&#8217;t any emails to learn from or delete.</p>
<h3>Improvements</h3>
<p>So, this morning I had a little spare time, so I decided to improve on the script a bit:</p>

<div class="wp_syntax"><div class="code"><pre class="bash"><span style="color: #808080; font-style: italic;">#!/bin/bash</span>
&nbsp;
<span style="color: #808080; font-style: italic;"># Constants</span>
<span style="color: #007800;">SPAM_PATH=</span><span style="color: #ff0000;">&quot;Maildir/.Unrecognized Spam/cur&quot;</span>;
&nbsp;
<span style="color: #808080; font-style: italic;"># Find all of the directories directly under /home/</span>
<span style="color: #007800;">homeDirectories=</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>`<span style="color: #c20cb9; font-weight: bold;">find</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span> -maxdepth <span style="color: #000000;">1</span> -mindepth <span style="color: #000000;">1</span> -<span style="color: #7a0874; font-weight: bold;">type</span> d`<span style="color: #7a0874; font-weight: bold;">&#41;</span>;
&nbsp;
<span style="color: #808080; font-style: italic;"># Loop through the found directories and check for spam</span>
<span style="color: #000000; font-weight: bold;">for</span> homeDirectory <span style="color: #000000; font-weight: bold;">in</span> $<span style="color: #7a0874; font-weight: bold;">&#123;</span>homeDirectories<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span>
<span style="color: #000000; font-weight: bold;">do</span>
    <span style="color: #007800;">fullSpamPath=</span><span style="color: #007800;">$<span style="color: #7a0874; font-weight: bold;">&#123;</span>homeDirectory<span style="color: #7a0874; font-weight: bold;">&#125;</span><span style="color: #000000; font-weight: bold;">|</span>><span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$<span style="color: #7a0874; font-weight: bold;">&#123;</span>SPAM_PATH<span style="color: #7a0874; font-weight: bold;">&#125;</span><span style="color: #000000; font-weight: bold;">|</span>>;
&nbsp;
    <span style="color: #808080; font-style: italic;">#Check if the spam directory exists under this home directory</span>
    <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> -d  <span style="color: #ff0000;">&quot;${fullSpamPath}&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
&nbsp;
        <span style="color: #808080; font-style: italic;"># Check if there is mail under the spam directory</span>
        <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;$( ls -A &quot;</span><span style="color: #007800;">$<span style="color: #7a0874; font-weight: bold;">&#123;</span>fullSpamPath<span style="color: #7a0874; font-weight: bold;">&#125;</span><span style="color: #000000; font-weight: bold;">|</span>><span style="color: #ff0000;">&quot; )&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
            sa-learn --spam <span style="color: #ff0000;">&quot;$fullSpamPath&quot;</span>;
            <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #ff0000;">&quot;${fullSpammPath}/&quot;</span><span style="color: #000000; font-weight: bold;">*</span>;
        <span style="color: #000000; font-weight: bold;">fi</span>
    <span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p>Now I know I&#8217;m not a great shell scripter, but this is working pretty well. It basically scans all of the home directories and looks for the &#8220;Unrecognized Spam&#8221; directory under each one. If it finds it, it will test to make sure that there are emails in the folder, then learn them and remove them.</p>
<h3>Caveats</h3>
<ul>
<li> This isn&#8217;t going to scale all that well. I&#8217;m guessing it would be fine for 200 users or less, as it runs at night, but it would need some tweaking for anything more.</li>
<li> As it is, this requires that your mail be stored in the <a href="http://en.wikipedia.org/wiki/Maildir">Maildir</a> format. I know that sa-learn can work with mBox stores, but I&#8217;m not sure how you&#8217;d target it effectively.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://digital-traffic.net/blog/it-tech/spamassassin-dealing-with-unrecognized-spam/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Server Upgrade</title>
		<link>http://digital-traffic.net/blog/it-tech/server-upgrade/</link>
		<comments>http://digital-traffic.net/blog/it-tech/server-upgrade/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 19:20:41 +0000</pubDate>
		<dc:creator>bshacklett</dc:creator>
		
		<category><![CDATA[IT / Tech]]></category>

		<guid isPermaLink="false">http://digital-traffic.net/blog/?p=24</guid>
		<description><![CDATA[So, now that Hardy Heron is out, I&#8217;ve gone ahead and upgraded my server. It took a little while, but overall it went quite smoothly. Having the ability to go back and forth between the old server image and the new server image made it a much easier experience. Big thanks to Linode and virtualization.
Changes
One [...]]]></description>
			<content:encoded><![CDATA[<p>So, now that <a href="http://www.ubuntu.com/news/ubuntu-8.04-lts-server">Hardy Heron</a> is out, I&#8217;ve gone ahead and upgraded my server. It took a little while, but overall it went quite smoothly. Having the ability to go back and forth between the old server image and the new server image made it a much easier experience. Big thanks to <a href="http://www.linode.com">Linode</a> and <a href="http://en.wikipedia.org/wiki/Virtualization">virtualization</a>.</p>
<h3>Changes</h3>
<p>One large change I made to my configuration is using Dovecot&#8217;s sasl authentication for Postfix rather than Cyrus. Dovecot really seems to be making headway in the mail server market. I strongly reccomend it to anyone looking for a decent IMAP server.</p>
<p>I&#8217;ve also upgraded to Wordpress 2.5 and a later version of <a href="http://www.roundcube.net/">Roundcube</a> for webmail. Unfortunately, Ubuntu seems to be holding Roundcube back a bit in their package repository. I&#8217;m not sure what the holdup is, but they&#8217;re at least one version behind at the time I&#8217;m writing this. For that matter, Wordpress is a couple of releases behind as well. I guess that happens with an LTS release.</p>
<h3>Todo</h3>
<p><del>I&#8217;m still having a bit of trouble getting Wordpress&#8217; permalinks working correctly, so you&#8217;ll probably notice that some of the links aren&#8217;t working properly on the blog. I remember having this problem in the past, but, for the life of me, I can&#8217;t remember what I did to solve it.</del></p>
<p><em>Update:</em> Got the permalink issue taken care of. Apache must be told, with the &#8220;<a href="http://httpd.apache.org/docs/2.0/mod/core.html#allowoverride">AllowOverride</a>&#8221; parameter, to allow .htaccess files. If this isn&#8217;t done, they  will be ignored.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital-traffic.net/blog/it-tech/server-upgrade/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Buddy Club Racing Spec Seat: Initial Review</title>
		<link>http://digital-traffic.net/blog/uncategorized/buddy-club-racing-spec-seat-initial-review/</link>
		<comments>http://digital-traffic.net/blog/uncategorized/buddy-club-racing-spec-seat-initial-review/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 02:54:14 +0000</pubDate>
		<dc:creator>bshacklett</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.digital-traffic.net/blog/uncategorized/buddy-club-racing-spec-seat-initial-review/</guid>
		<description><![CDATA[I just installed a Buddy Club racing spec seat for my s13. The first thing I can say is that I never would have believed how much difference a racing seat can make had I not gotten a chance to sit in one myself. The first corner I took, I braced myself as usual so [...]]]></description>
			<content:encoded><![CDATA[<p>I just installed a Buddy Club racing spec seat for my s13. The first thing I can say is that I never would have believed how much difference a racing seat can make had I not gotten a chance to sit in one myself. The first corner I took, I braced myself as usual so as not to fly out the drivers side door, and an amazing thing happened. I didn&#8217;t move at all. The second corner I hit, I realized what the difference was. The third corner all I could do was grin.</p>
<h3>The good:</h3>
<ul>
<li>Obviously, the holding capability</li>
<li>The cost &#8212; At $600.00 shipped with rails, it&#8217;s very economical for a racing seat.</li>
<li>The look (I got black to match my black interior).</li>
<li>The weight (It feels about 2/3rds the weight of the stock seat, including the rails).</li>
</ul>
<h3>The questionable:</h3>
<ul>
<li>The width: I got the normal seat instead of the wide and I&#8217;m a little worried about comfort. I&#8217;m a size 32 waist, but it&#8217;s still very tight on the rib cage. I&#8217;m hoping this is something I will get used to, but I&#8217;m also braced to spend the money on a wider model. I still have the rails, so I wouldn&#8217;t be paying the full price again</li>
<li>The height: It definitely sits higher than stock, but somehow this doesn&#8217;t seem to be a problem. The way I have it mounted is with the rear angled down a bit, so my head doesn&#8217;t come any closer to the ceiling. Also, I actually seem to be in a bit better driving position. My left knee used to hit the steering wheel from time to time when clutching, but that&#8217;s not happening now.</li>
</ul>
<h3>The bad:</h3>
<ul>
<li>It comes with absolutely no instructions. I&#8217;m not looking for a detailed walkthrough, but best practices for mounting, or at least the size of the bolts (not included) should be documented. (M8 1.25, by the way)</li>
<li>The rails scratch up the seat. This is really unavoidable given the materials used. I guess you could put some sort of rubber mat in-between, but that doesn&#8217;t seem like a great option given the way the weight is transmitted to the rails.</li>
<li>The automatic seat belts in an s13 don&#8217;t like the seat very much. The lap belt just barely fits and the shoulder belt snags on the seat, making it hard to move sometimes. This isn&#8217;t necessarily the seat&#8217;s fault, though, just a conflict with the s13&#8217;s auto belts. I&#8217;m guessing it would happen with any decent racing seat.</li>
</ul>
<p>All in all, I&#8217;ll have to give it a while to see how the fitment goes, but I&#8217;m very happy that I can pay attention to driving, now, instead of holding myself in place. I&#8217;ll try to get some pics up when I can, but I promise nothing.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital-traffic.net/blog/uncategorized/buddy-club-racing-spec-seat-initial-review/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wii want wireless GC play</title>
		<link>http://digital-traffic.net/blog/gaming/wii-want-wireless-gc-play/</link>
		<comments>http://digital-traffic.net/blog/gaming/wii-want-wireless-gc-play/#comments</comments>
		<pubDate>Sat, 09 Jun 2007 01:36:12 +0000</pubDate>
		<dc:creator>bshacklett</dc:creator>
		
		<category><![CDATA[Gaming]]></category>

		<guid isPermaLink="false">http://www.digital-traffic.net/reflections/gaming/wii-want-wireless-gc-play/</guid>
		<description><![CDATA[
A couple of weeks ago I was able to secure a Wii from a GameStop about 4 miles away. I&#8217;ve got to say it&#8217;s the best purchase I&#8217;ve made since my Macbook Pro. Everyone in the house has been having a ton of fun with it. The cat&#8217;s even gotten in on the action by [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Image:Wii_Wiimotea.png" title="Wii with controller"><img src="http://www.digital-traffic.net/blog/wp-content/uploads/2007/06/wii_wiimotea1.thumbnail.png" alt="Wii with controller" style="border: 0.5em solid #eeeeee; margin-left: 1em; float: right" /></a></p>
<p>A couple of weeks ago I was able to secure a Wii from a GameStop about 4 miles away. I&#8217;ve got to say it&#8217;s the best purchase I&#8217;ve made since my Macbook Pro. Everyone in the house has been having a ton of fun with it. The cat&#8217;s even gotten in on the action by chewing up the wire to the sensor bar which was replaced by a <a href="http://www.nyko.com/nyko/products/?i=101">wireless model from Nyko</a>.One great thing about the Wii is that you&#8217;re not just limited to titles that are made specifically for the platform. Aside from the Virtual Console functionality, the Wii can handle GameCube games as well. Unfortunately, this means buying a GC controller, which is really my biggest gripe about the system.</p>
<p>My TV is about 10 feet back from the couch. This is not a good situation for wired controllers, and Wavebirds are overly expensive and hard to find. That basically leaves me with the option of a third party controller, which is something I always try to avoid. Rare is a third party controller that feels anything but hollow and cheap. I will admit that I haven&#8217;t gotten a chance to try many of the controllers available for the GameCube, but even in the best case scenario, I&#8217;m left with a big receiver sticking out of the side of my console for each controller I add.</p>
<p>Why? The Wii&#8217;s controller has an expansion port which the classic controller plugs into for an elegant wireless solution. This is perfectly suited to wireless play of GC games as well. I guess in the end, though, Nintendo just doesn&#8217;t want to deal with supporting that many peripherals.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital-traffic.net/blog/gaming/wii-want-wireless-gc-play/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The move to a new host</title>
		<link>http://digital-traffic.net/blog/it-tech/the-move-to-a-new-host/</link>
		<comments>http://digital-traffic.net/blog/it-tech/the-move-to-a-new-host/#comments</comments>
		<pubDate>Mon, 07 May 2007 03:30:28 +0000</pubDate>
		<dc:creator>bshacklett</dc:creator>
		
		<category><![CDATA[IT / Tech]]></category>

		<guid isPermaLink="false">http://www.digital-traffic.net/reflections/uncategorized/the-move-to-a-new-host/</guid>
		<description><![CDATA[Well, I&#8217;ve finally done it. Last night I made the final DNS changes and I&#8217;m up and running with my very own linode. It took some time to decide on which mail servers to use and then get everything configured correctly, but it was most definitely worth it.
Hosting is costing me $20.00 a month for [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;ve finally done it. Last night I made the final DNS changes and I&#8217;m up and running with my very own <a href="http://www.linode.com/products/">linode</a>. It took some time to decide on which mail servers to use and then get everything configured correctly, but it was most definitely worth it.</p>
<p>Hosting is costing me $20.00 a month for a full virtual colocated server running my linux distribution of choice (Ubuntu) and easy access to all of the tools that I need to manage it. I&#8217;m paying $20.00 a year for a DNS solution from <a href="http://www.dyndns.org">DynDNS</a>. Linode.com could do it all for me, but I have a server at my house that needs dynamic DNS updates and DynDNS was the best option for me.</p>
<p>So, for anyone curious, I&#8217;m running Apache2 with PHP5 and MySQL plus <a href="http://tomcat.apache.org/">Apache Tomcat</a> for Java support. On the mail side of things, I&#8217;ve got <a href="http://www.postfix.org/">Postfix</a> handling my SMTP needs and <a href="http://www.dovecot.org/">Dovecot</a> serving up IMAP (POP will soon be disabled). I&#8217;m running <a href="http://postgrey.schweikert.ch/">Postgrey</a> for spam controls which, coupled with slightly paranoid settings in Postfix, is keeping spam level at a very good level. Definitely not as low as when I was using boxtrapper, but for an automatic solution that is less vulnerable to exploits I can hardly complain. I will, however, be looking into some active blacklists soon as well. I have <a href="http://roundcube.net/">RoundCube</a> installed for web access to my emails and of course <a href="http://wordpress.org/">WordPress</a> which you&#8217;re reading from right now.</p>
<p>Please bear with me on the default WordPress theme for the time being. I&#8217;ve got some ideas for a new design, but I haven&#8217;t had the time to implement them. I&#8217;ll be working on it as soon as I&#8217;m finished with a few more pressing projects.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital-traffic.net/blog/it-tech/the-move-to-a-new-host/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Unemployed no longer!</title>
		<link>http://digital-traffic.net/blog/the-big-move/unemployed-no-longer/</link>
		<comments>http://digital-traffic.net/blog/the-big-move/unemployed-no-longer/#comments</comments>
		<pubDate>Sat, 18 Nov 2006 22:11:20 +0000</pubDate>
		<dc:creator>bshacklett</dc:creator>
		
		<category><![CDATA[The Big Move]]></category>

		<guid isPermaLink="false">http://64.22.71.58/reflections/?p=18</guid>
		<description><![CDATA[Sorry for the wait on this, but I didn&#8217;t want to post until everything was final. I started work on Monday at Stonefield Josephson working at the help desk as a contract-to-hire employee. Thursday I accepted an offer as a full employee. It&#8217;s a great place to work. All of the people there are very [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for the wait on this, but I didn&#8217;t want to post until everything was final. I started work on Monday at Stonefield Josephson working at the help desk as a contract-to-hire employee. Thursday I accepted an offer as a full employee. It&#8217;s a great place to work. All of the people there are very nice and the company treats its employees very well. Unfortunately, it doesn&#8217;t look like I&#8217;ll get any more Mac or Linux experience there, but there&#8217;s still a lot for me to learn and I think it&#8217;s going to be a great experience.</p>
<p>My commute is about 5 miles, but LA traffic makes that about 30 minutes on a good day. My drive home Thursday night was an hour and 15 minutes. I still love it here, though. For what I gain living here, a slightly longer commute to work is a small price to pay.<br />
We&#8217;ll be moving in about a month and a half into a house, hopefully. We&#8217;re currently looking around Sherman Oaks in the San Fernando Valley and around West LA. I can&#8217;t wait to get my own room. I&#8217;ll finally be able to put up all of my books on a bookshelf and take the rest of my belongings out of my car.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital-traffic.net/blog/the-big-move/unemployed-no-longer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I&#8217;m still alive</title>
		<link>http://digital-traffic.net/blog/the-big-move/im-still-alive/</link>
		<comments>http://digital-traffic.net/blog/the-big-move/im-still-alive/#comments</comments>
		<pubDate>Fri, 10 Nov 2006 02:13:05 +0000</pubDate>
		<dc:creator>bshacklett</dc:creator>
		
		<category><![CDATA[The Big Move]]></category>

		<guid isPermaLink="false">http://64.22.71.58/reflections/?p=17</guid>
		<description><![CDATA[Well, there&#8217;s been a decent amount going on here, but mostly the same thing every day, so I didn&#8217;t think it would be all that interesting to write about. I&#8217;ve received requests for an update, though, so here it is.
I&#8217;ve been getting used to the area pretty well. Traffic is interesting, but it&#8217;s not really [...]]]></description>
			<content:encoded><![CDATA[<p>Well, there&#8217;s been a decent amount going on here, but mostly the same thing every day, so I didn&#8217;t think it would be all that interesting to write about. I&#8217;ve received requests for an update, though, so here it is.</p>
<p>I&#8217;ve been getting used to the area pretty well. Traffic is interesting, but it&#8217;s not really any worse than route one in Rockland in the summer; it just goes farther. I&#8217;ve been doing a lot of interviews and I&#8217;ve got a couple jobs that I should be hearing back on tomorrow. Both of them would get me earning about $40,000 a year and they both have great benefits. One is farther away, but the scenery is really beautiful, so I don&#8217;t think the drive would be that much of a problem. Either way, I should be doing pretty well fairly soon.</p>
<p>That&#8217;s about it for the moment. Hopefully I&#8217;ll have some good news to post about tomorrow.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital-traffic.net/blog/the-big-move/im-still-alive/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Getting settled in</title>
		<link>http://digital-traffic.net/blog/the-big-move/getting-settled-in/</link>
		<comments>http://digital-traffic.net/blog/the-big-move/getting-settled-in/#comments</comments>
		<pubDate>Fri, 27 Oct 2006 19:33:38 +0000</pubDate>
		<dc:creator>bshacklett</dc:creator>
		
		<category><![CDATA[The Big Move]]></category>

		<guid isPermaLink="false">http://64.22.71.58/reflections/?p=16</guid>
		<description><![CDATA[It&#8217;s strange moving this far away. For the most part, though I expected it would take some time, I&#8217;m feeling pretty much at home here already. There are definitely things that will take some getting used to, like being so far away from many of my friends and family, but there are other friends here [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s strange moving this far away. For the most part, though I expected it would take some time, I&#8217;m feeling pretty much at home here already. There are definitely things that will take some getting used to, like being so far away from many of my friends and family, but there are other friends here that I haven&#8217;t seen for a while, and it&#8217;s nice to be with them again. It&#8217;s really a mixed bag.<br />
On the practical side, I&#8217;ve put in some applications for jobs and I&#8217;m hoping to hear back from them soon. Until I do I&#8217;ll just keep searching and sending resumes out. One annoying thing I&#8217;ve found is that many of them require a salary history along with a resume. This adds a level of difficulty for me since I&#8217;ve moved from a smaller town where the rate of pay is much lower.</p>
<p>We&#8217;ve also been doing some apartment searching, but it&#8217;s 2 months before we head out, so it hasn&#8217;t been very productive yet. We&#8217;re getting to know the different areas and price ranges, but that&#8217;s about all we can do for a while now.</p>
<p>For now, I&#8217;ll just have to take it as it comes and see what happens next.</p>
<p>P.S. I saw Alec Baldwin in an Apple store the other day, complaining about an iPod.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital-traffic.net/blog/the-big-move/getting-settled-in/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I&#8217;ve done it</title>
		<link>http://digital-traffic.net/blog/the-big-move/ive-done-it/</link>
		<comments>http://digital-traffic.net/blog/the-big-move/ive-done-it/#comments</comments>
		<pubDate>Sun, 22 Oct 2006 16:21:17 +0000</pubDate>
		<dc:creator>bshacklett</dc:creator>
		
		<category><![CDATA[The Big Move]]></category>

		<guid isPermaLink="false">http://64.22.71.58/reflections/?p=15</guid>
		<description><![CDATA[Well, I made it here safely. I just wanted to write a little post letting everyone know. Once I&#8217;m settled in, I&#8217;ll be more in the mood to write more. I also got a bunch of photos put up on my flickr space. I ended up taking an airplane tour over the Grand Canyon. Check [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I made it here safely. I just wanted to write a little post letting everyone know. Once I&#8217;m settled in, I&#8217;ll be more in the mood to write more. I also got a bunch of photos put up on my flickr space. I ended up taking an airplane tour over the Grand Canyon. <a target="_blank" href="http://www.flickr.com/photos/digital-traffic/">Check them out!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://digital-traffic.net/blog/the-big-move/ive-done-it/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The journey begins again</title>
		<link>http://digital-traffic.net/blog/the-big-move/the-journey-begins-again/</link>
		<comments>http://digital-traffic.net/blog/the-big-move/the-journey-begins-again/#comments</comments>
		<pubDate>Fri, 20 Oct 2006 02:07:29 +0000</pubDate>
		<dc:creator>bshacklett</dc:creator>
		
		<category><![CDATA[The Big Move]]></category>

		<guid isPermaLink="false">http://64.22.71.58/reflections/?p=14</guid>
		<description><![CDATA[Well, today I set out from Albuquerque at about 10am. I made my first stop at the Painted Dessert. It&#8217;s an experience that I would reccommend to anyone. The view is absolutely incredible. I got a few shots with my digital, but it&#8217;s in the car, and I&#8217;m feeling lazy right now, so you&#8217;ll have [...]]]></description>
			<content:encoded><![CDATA[<p>Well, today I set out from Albuquerque at about 10am. I made my first stop at the Painted Dessert. It&#8217;s an experience that I would reccommend to anyone. The view is absolutely incredible. I got a few shots with my digital, but it&#8217;s in the car, and I&#8217;m feeling lazy right now, so you&#8217;ll have to wait till tomorrow for me to make my upload. I should also have some shots of the Grand Canyon at that point, so it&#8217;ll be worth it :). Again, though, I&#8217;ve taken most of the shots on my 35mm, so it&#8217;ll be a week or two before I get the film processed, scanned and uploaded.</p>
<p>Anyway, tomorrow, my path should take me, first, to the Grand Canyon, then to Needles, California. The next day I should arrive at my final destination in Los Angeles. I&#8217;m feeling mixed about it. It&#8217;s been a great trip and I really would love to see more, but I&#8217;m also really looking forward to putting down some roots and beginning the next chapter of my life. The rest of the world will just have to wait for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital-traffic.net/blog/the-big-move/the-journey-begins-again/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
