<?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>Andy Laub &#187; Site</title>
	<atom:link href="http://andylaub.com/category/site/feed/" rel="self" type="application/rss+xml" />
	<link>http://andylaub.com</link>
	<description>Andy Laub is a designer &#38; developer in central Wisconsin.</description>
	<lastBuildDate>Fri, 30 Jul 2010 04:08:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1-beta</generator>
		<item>
		<title>Sixteen Candles</title>
		<link>http://andylaub.com/2010/07/14/sixteen-candles/</link>
		<comments>http://andylaub.com/2010/07/14/sixteen-candles/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 02:20:43 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[andylaub.com]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=2998</guid>
		<description><![CDATA[I just realized I never wrote a leader for this post, so here goes: nerdery abounds at redesign time.]]></description>
			<content:encoded><![CDATA[<p>JQuery. I&#8217;m pretty sure that&#8217;s where this all started. A few months ago I redid my <a href="http://hire.andylaub.com/">work site</a> in effort to add a little more, well, <em>pop</em>. In doing so I had a little discussion with JQuery and we decided that it would be fun to hang out some more. Since then it&#8217;s been finding its way into more and more of my projects, as it&#8217;s proven to be remarkably useful.</p>
<p>As I become more familiar with it, it&#8217;s easier for me to see what it&#8217;s capable of (hint: everything), and as a result I started thinking about a redesign of this blog in an effort to <strike>completely and utterly abuse</strike> integrate some of those capabilities. As work progressed, I realized there were some other bullet points I&#8217;ve been wanting to hit as well. Here&#8217;s the laundry list:</p>
<h5>JQuery</h5>
<p>Like I said. In this case I&#8217;m using it mainly for the archive dropdown and the endless scrolling on listing pages. I played with some concepts that involved more horizontal scrolling, but decided to ultimately go a different direction. </p>
<h5>Grids</h5>
<p>I&#8217;ve been basing the various iterations of this blog off of grids for a long time, but this is the first time in awhile where said grid hasn&#8217;t been dictated by Flickr. In this case I decided to try a <a href="http://960.gs/">960 grid system</a> and ended up using a 16 column grid here, with each column equaling 50px with a 10px gutter. I used this <a href="http://www.spry-soft.com/grids/">CSS generator</a> to develop the initial CSS.</p>
<p>I&#8217;m debating whether I&#8217;d use this technique if I were to do it all again as I had a couple of hangups with the process:</p>
<ul>
<li>I didn&#8217;t love the naming conventions for the various classes; I ended up replacing all the underscores with dashes because that&#8217;s what I&#8217;ve become accustomed to using in my CSS.</li>
<li>The system falters somewhat if you&#8217;re floating multiple blocks inside of a larger block (for example, three <code>.grid-3</code>&#8216;s in a <code>.grid-9</code>. You need to add <code>.omega</code> (to remove the right margin) to the last block in the line, which doesn&#8217;t bode particularly well for dynamically-generated content.</li>
<li>It seems like an excessive amount of markup in general. Then again, I suppose that comes with the territory in a system that&#8217;s attempting to be somewhat universal.</li>
</ul>
<h5>Dynamic Stylesheets</h5>
<p>I&#8217;ve been wanting to experiment with adding constants to my CSS files for some time now. One way of doing this is with <a href="http://lesscss.org/">LESS</a>, a Ruby gem (also available as a <a href="http://wordpress.org/extend/plugins/wp-less/">WordPress plugin</a>, thankfully).  LESS basically allows you to define constants and nest classes within your stylesheets, which is a tremendously useful concept.</p>
<p>But in short, I hated it. I attribute part of this to the fact that I had already been messing with PHP as a way to dynamicize my CSS, but the LESS system ended up being a little too clunky for me to find useful:</p>
<ul>
<li>LESS does math, and that&#8217;s great. Except when it tries to divide my shorthand font declarations, and as a result the entire CSS becomes null and void.</li>
<li>It seems that commas are no less of a hurdle, as I found LESS to stumble when I was trying to define the same set of properties for two different elements.</li>
<li>As I mentioned, any issue with syntax will cause the entire stylesheet to be totally dysfunctional with no indication of what the problem is.</li>
</ul>
<p>I ended including the CSS in PHP form, which has functioned in a much more predictable manner.</p>
<h5>Color Editing</h5>
<p>This is the third version of mine to feature theme-editable colors. In this case, though, I ended up going a slightly different route. I had been using a variation of the <code>functions.php</code> file from the old default Kubrick theme, which writes custom CSS in the header of the HTML to define the chosen color. Instead of that, I decided to make use of my newly-created PHP CSS and pass that new color to the CSS via a <a href="http://andylaub.com/wordpress/wp-content/themes/laub-160/style.dark.php?color=b00bie" title="a perennial favorite">URL variable</a>. Much cleaner. </p>
<p>In addition, I decided to make light and dark stylesheets from the get-go, which I can also switch from the admin.</p>
<h5>Mobile Friendly(ish)</h5>
<p>I&#8217;ve been watching with interest the recent developments in <a href="http://www.alistapart.com/articles/responsive-web-design/">&#8220;responsive web design&#8221;</a>. As such I decided to define an alternate version of the site for mobile devices and viewports smaller than the width of the normal site. It&#8217;s an early effort, but I&#8217;m pleased with it for now and like the rest of these points, it&#8217;s experience that I can carry forward to future projects.</p>
<h5>And <strike>More</strike> Less</h5>
<p>From a content standpoint, I really wanted to simplify my own presentation of myself. I decided to eliminate the &#8220;about&#8221; page for the first time in basically ever, opting instead to let my various (side) projects and social networks do the talking.</p>
<p>From a cont<strong>act</strong> standpoint, you may notice that the comment form is no more. Existing comments have been preserved, but the ability to comment has been disabled (for now, at least). Same goes for the contact form, for similar reasons: anybody who wants to discuss an article or get in touch is someone I likely already talk to on a regular basis (or someone I would talk to). I get the whole public discourse thing, <a href="http://citizenwausau.com/">believe me</a>, but that happens so rarely here that I felt it was no longer worth the inclusion.</p>
<p>So that&#8217;s it! Let me know what you think <strong>OH WAIT YOU CAN&#8217;T</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2010/07/14/sixteen-candles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>F-Stop</title>
		<link>http://andylaub.com/2010/03/25/f-stop/</link>
		<comments>http://andylaub.com/2010/03/25/f-stop/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 23:29:00 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[Canon]]></category>
		<category><![CDATA[EOS 30D]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[SD400]]></category>
		<category><![CDATA[SLR]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=2301</guid>
		<description><![CDATA[Do I say ca-ma-ra weird? Ca-ma-ra.]]></description>
			<content:encoded><![CDATA[<p>Hey, remember when this used to be a <a href="http://andylaub.com/photos/" title="Pitchers">photoblog</a>? Back then I shot everyday with my then-newly-acquired <a href="http://www.flickr.com/cameras/canon/powershot_sd400/">Canon SD400</a>.</p>
<p>After updating daily for six or seven months, I started to realize that I wanted this site to be something other than a daily photoblog. I&#8217;ve long been aware that I go though phases of creative output; sometimes it&#8217;s writing, sometimes it&#8217;s photography, and sometimes it&#8217;s just redesigning stuff. But as time wore on, my familiarity with the little Canon increased, as did my frustrations with its limits. I&#8217;d long since acknowledged that snapping off a few noise-free photos in less than ideal lighting was something of a pipe-dream; an acceptable sacrifice in lieu of the camera&#8217;s petite stature, but the image quality in general seems to be degrading as the camera approaches its fifth birthday.</p>
<h4>Now What?</h4>
<p>This left me in a sort of quandary; time for a new camera? Probably; but what to get? I&#8217;d long since had my eye on a digital SLR (also of the Canon variety) and even came close to pulling the trigger a couple of times, but could never go through with it. I had also been considering the <a href="http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&#038;fcategoryid=144&#038;modelid=20014">Canon SX200/SX210</a>, another point-n&#8217;-shoot.  It was hard to argue with 14x optical zoom and HD video, but I just couldn&#8217;t bring myself to spend the money on that either. Another ELPH? None of them really got me excited like the SD400 did when I first saw it.</p>
<p>So I waited, and watched. And then I saw a <a href="http://www.flickr.com/cameras/canon/eos_30d/">Canon EOS 30D</a> on Craigslist. And then I forgot about it for awhile.</p>
<p>Then I was driving and thinking that I really don&#8217;t have any good photos of my car, and that 30D popped back into my head. I scoured Craigslist and it was nowhere to be found. Defeated, I decided it wasn&#8217;t meant to be, and started looking at new Canons on Amazon. There were some alright deals, but I kept falling back to the same thought that has always kept me from buying an SLR: what if I don&#8217;t use it?</p>
<p>That&#8217;s why this 30D was so attractive to me: it was a minimal investment to dip my toes in the waters of more advanced digital photography. So imagine my excitement when it was relisted that same day. After some <a href="http://twitter.com/andylaub/statuses/10540048183">Twitter hemming and hawing</a>, I decided that the extra cost of the XSi simply wasn&#8217;t worth it to me, and <a href="http://farm5.static.flickr.com/4072/4446671312_c5a4005e6d.jpg" class="zoom">sealed the deal</a>.</p>
<h4>The Setup</h4>
<p>Photo-nerds are probably wondering what I&#8217;m shooting with so far, so here&#8217;s the list:</p>
<ul>
<li>Canon EOS 30D</li>
<li><a href="http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&#038;fcategoryid=152&#038;modelid=7306">Canon EF 50mm f/1.8</a></li>
<li><a href="http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&#038;fcategoryid=149&#038;modelid=15704">Canon EF 18-55mm f/3.5 IS</a> <em>(soon)</em></li>
</ul>
<p>It&#8217;s a short list, but a solid start. The first time I looked through the viewfinder on the 50mm, I was amazed at how narrow the viewing angle is, and it made me immensely glad to have won the 18-55mm on eBay that morning. Even so, I&#8217;m very pleased with the purchase, especially taking into account that what I&#8217;ve spent so far on everything is only slightly more than a new XSi body.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2010/03/25/f-stop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defining Moments of 2009</title>
		<link>http://andylaub.com/2010/01/07/defining-moments-of-2009/</link>
		<comments>http://andylaub.com/2010/01/07/defining-moments-of-2009/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 04:27:44 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Cycling]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Theatre]]></category>
		<category><![CDATA[acting]]></category>
		<category><![CDATA[EOY]]></category>
		<category><![CDATA[exercise]]></category>
		<category><![CDATA[LEGO]]></category>
		<category><![CDATA[LeMond]]></category>
		<category><![CDATA[lists]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[year in review]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=2140</guid>
		<description><![CDATA[I'd be remiss if I didn't do something to commemorate this arbitrary changing of years.]]></description>
			<content:encoded><![CDATA[<p>Last year I introduced the new year by participating in what had to have been one of the <a href="http://andylaub.com/2009/01/10/lame-meme/" title="I apologize.">lamest questionnaires</a> ever.  This year I feel the need to again look back on the year that has just passed, but I want to do something that&#8217;s a little more original. Instead of a bunch of arbitrary questions, I&#8217;m choosing one event or experience from each month that has held the most significance in my mind.</p>
<p>The year started strong. <strong>January</strong> didn&#8217;t bring the same drama this year that it brought in 2008 (thankfully). Instead, I get to point out that that was the birth of the <a href="http://www.flickr.com/photos/andylaub/3210047304/in/set-72157612522896111/">current iteration</a> of this website.</p>
<p><strong>February</strong> was relatively uneventful as well, aside from preparing for shows. But I did put together some <a href="http://www.brickset.com/detail/?Set=8145-1" title="Happy Valentime's!">awesome LEGO</a>.</p>
<p>I spent a lot of time complaining about the weather this year, as I was already raring to get back on two wheels when <strong>March</strong> rolled around. That was only exacerbated by <a href="http://www.flickr.com/photos/andylaub/sets/72157615609028591/">the new toy</a>.  The day trip to Minneapolis to pick it up was awfully fun too.</p>
<p>In <strong>April</strong> I put new wheels on my car. No, I mean <em>I</em> put them on. By myself.</p>
<p><strong>May</strong> brought the first of a number of shows last year: <em>The Last 5 Years</em>, in which I was approximately 50% of the cast. It was a great experience and the theatrical accomplishment that I continue to be most proud of.</p>
<p>Then <em><a href="http://andylaub.com/2009/06/22/wrapped-again/">Godspell</a></em> happened in <strong>June</strong>, and that was awesome too! Great cast, great technical staff, great venue, and a great show. Probably one of <abbr title="Wausau Community Theatre">WCT</abbr>&#8216;s best, ever.</p>
<p>Things wound down a bit in <strong>July</strong>, but we had the official <em>Godspell</em> reunion / cast party up in Tomahawk. AKA <em>Real World: Godspell</em>. TEXT MESSAGES!</p>
<p><strong>August</strong> was a quiet month, so I spent a lot of time on the bike, and did my first (and second!) 40-mile ride(s).</p>
<p>After years of planning and months of labor, <a href="http://www.citizenwausau.com/">Citizen Wausau</a> 2.0 was finally launched in <strong>September</strong>, much to the excitement of those involved.</p>
<p>In <strong>October</strong>, <a href="http://andylaub.com/2009/10/23/a-new-addiction/" title="(...so far awaaaaay!)">I ran</a>.</p>
<p>The only potentially negative item on the list happened in <strong>November</strong>, when I <a href="http://andylaub.com/2009/11/09/collapse/">passed out</a> on stage.  Even then, it&#8217;s just something that happened, but I don&#8217;t think of it as being decidedly &#8220;bad&#8221;.</p>
<p>I had such a great vacation in <strong>December</strong>, you guys. Seriously, it was wonderful. Plus it was my birthday!</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2010/01/07/defining-moments-of-2009/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tumbld</title>
		<link>http://andylaub.com/2009/10/02/tumbld/</link>
		<comments>http://andylaub.com/2009/10/02/tumbld/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 00:37:08 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Tumblr]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1960</guid>
		<description><![CDATA[I wrote this whole post on my phone. Except for the links.]]></description>
			<content:encoded><![CDATA[<p>In the last week or so, I&#8217;ve found myself facing a bit of a dilemma with regards to the various bits of content that I&#8217;ve created/found/shared online. The problem with the social Internet is the it inevitably results in massive stacks of content distributed widely throughout the various services; in my case what began with a <a href="http://old.andylaub.com/">handcoded blog</a> gradually turned into WordPress, and soon was joined by links (fed initially by <a href="http://delicious.com/matches">del.icio.us</a>) and then <a href="http://www.flickr.com/photos/andylaub">Flickr</a>. Then <a href="http://twitter.com/andylaub">Twitter</a> joined the party.</p>
<p>Through this point everything remained fairly manageable. Thanks to the terriffic Twitter Tools plugin I was able to easily turn those tweets into &#8220;real&#8221; posts. But recently I&#8217;ve become smitten with a new (to me) service that leaves me wondering where to go from here: <a href="http://tumblr.com/">Tumblr</a>.</p>
<p>I&#8217;ve been <a href="http://tumblr.andylaub.com/">playing with Tumblr</a> for a week or so, and I&#8217;ve found it to be a neat bridge between WP&#8217;s long-form posting and Twitter&#8217;s extreme short form, text-only entries. I like Tumblr&#8217;s versatility when it comes to handling a large variety of content types, and it seems to have just the right amonunt of meta for such things.</p>
<p>The problem is, I still like WordPress. I&#8217;ve built a nice little home with it over the years, and for longer pieces (like this one), it&#8217;s pretty darn great. Plus it has comments, although I&#8217;m just not sure how important that is to me anymore.</p>
<p>So given my current situation, it seems I have some figurin&#8217; to do with regards to what andylaub.com actually is. The ideal for me would be to treat posts from Tumblr similar to how posts from Twitter are handled in that they&#8217;re imported into the actual WP database and join the archive. From there it&#8217;s safe to assume I could use the associated meta to manipulate the various sorts of posts as needed.  Honestly I would love to see the same behavior with Flickr.</p>
<p>Currently, though, it doesn&#8217;t seem that such a plugin exists. I&#8217;m about 99% positive that I&#8217;d prefer to avoid the opposite approach (RSSing WP into Tumblr). The other option is to break everything apart completely and then reaggregate it into one central location, but that too seems like a huge compromise.</p>
<p>You&#8217;ll probably see me messing with this issue over the coming weeks; alternatively I may lose hope completely or go completely crazy and try to replicate some of Tumblr&#8217;s functionality <a href="http://wordpress.org/extend/plugins/quick-post/">within WP</a>. Time will tell, but &#8217;till then I&#8217;m certainly open to suggestions. </p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2009/10/02/tumbld/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fourteen: A Postmortem</title>
		<link>http://andylaub.com/2009/01/23/fourteen-a-postmortem/</link>
		<comments>http://andylaub.com/2009/01/23/fourteen-a-postmortem/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 17:04:19 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[andylaub.com]]></category>
		<category><![CDATA[comparisons]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1346</guid>
		<description><![CDATA[The king is dead. Long live the king.]]></description>
			<content:encoded><![CDATA[<p>I launched version 14 of this site, officially, on <a href="http://andylaub.com/2007/05/01/more-different-more-the-same/">May 1, 2007</a>.  That seems like a really long time ago, especially by <a href="http://andylaub.com/2006/08/22/docadd-defeated-sorta/">my standards</a>.  I&#8217;m not sure how long I expected it to last back then, but I knew that I was pretty happy with it, especially considering how quickly it all went together.</p>
<p>Comparing <a href="http://farm4.static.flickr.com/3450/3214506754_bece606c87.jpg" class="zoom">the launch version</a> to <a href="http://farm4.static.flickr.com/3461/3213658943_1e821c1476.jpg" class="zoom">version 13</a> before it, it&#8217;s not hard to see what I felt was working and what wasn&#8217;t.  A good portion of the content styles and graphic elements made it to the new site unscathed, while dropping the heavy-handed and overly divided feel of the previous design.</p>
<h5>The Grid</h5>
<p>Version 14&#8242;s major defining element was the grid based entirely on the Flickr photos at the top. Initial versions had nine 75px columns separated by 5px alleys, and in November 2008 I <a href="http://farm4.static.flickr.com/3225/3034369069_2607bc17aa.jpg" class="zoom">added a tenth</a>.  While it&#8217;s not a new thing for me to have grids defined by the size of my images (as evident in all of my site designs back when this was purely a photoblog), this was the first time I gave myself more than four columns to play with, and I really enjoyed that flexibility.  I think the layout worked even better on pages where the Flickr photos weren&#8217;t visible; there was still a strong sense of grid and organization, but without the obvious indication of where it was all coming from.</p>
<h5>Content Separation</h5>
<p>The other major stylistic decision was the way status/blip/link posts were presented when compared to the regular journal entries. After experimenting with different options I ended up with the meta for the posts in the center column, while short posts would live on the right and full posts on the left.  It worked best when it was populated evenly, but there were many times where compulsive Twittering would leave the home page entirely empty on the left column.</p>
<h5>Then &amp; Now</h5>
<p>So how does this newest version compare to the outgoing iteration? You can see that while I haven&#8217;t done much with it yet, the <a href="http://farm4.static.flickr.com/3434/3210119362_975352905f.jpg?v=0" class="zoom">grid concept</a> remains intact. </p>
<p>In terms of visual carryover, though, that&#8217;s about it.  The overall look of the new site was influenced heavily by <a href="http://farm4.static.flickr.com/3361/3175953648_fa7507a95d_b.jpg" class="zoom">those wallpapers I just did</a> and <a href="http://hire.andylaub.com/" title="Doctor Professional">my portfolio</a>.  I continue to use Helvetica for the headers, but I&#8217;ve moved back to Lucida for the body copy, which harkens all the way back to <a href="http://old.andylaub.com/">Version 8.x</a>, as ever since then I&#8217;d pretty much used Helvetica for everything.</p>
<p>The dotted lines, which I have dearly loved for a very long time, are hanging on by a thread.  Because I&#8217;m not using a white on white on white layout this time around, everything is divided by blocks of color and shading, which means borders as a whole just aren&#8217;t necessary.</p>
<p>Finally, the Status/Twitter posts have become the foremost bit of information on the new site, with Flickr taking the slot below that and the Journal even further down.  This just seemed like the only way it could work, organizationally. I didn&#8217;t feel that the Flickr content was deserving of the most prominent spot on the page, and the Journal couldn&#8217;t be at the top simply because of length. As-is, most visitors should see all three sections when they visit and be inclined to scroll down.  Or everybody reads this in RSS, in which case it doesn&#8217;t matter anyway.</p>
<p>All that said, I&#8217;m quite happy with <a href="http://farm4.static.flickr.com/3412/3210047304_7c27df62a2.jpg?v=0" class="zoom">this latest version</a>, and I&#8217;m most interested to see what it evolves into as time progresses.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2009/01/23/fourteen-a-postmortem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bird is the Word</title>
		<link>http://andylaub.com/2007/11/02/bird-is-the-word/</link>
		<comments>http://andylaub.com/2007/11/02/bird-is-the-word/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 21:49:32 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2007/11/02/bird-is-the-word/</guid>
		<description><![CDATA[In which I succumb to the Twitter.]]></description>
			<content:encoded><![CDATA[<p>So at some point this week I apparently lost my mind, because I signed up for Twitter.  If you don&#8217;t know what that is, then you&#8217;re probably not reading this because you haven&#8217;t yet gotten on the internet or maybe even a computer.  But that&#8217;s beside the point.  The point is, I&#8217;m on <a href="http://twitter.com/andylaub" title="Twitter">yet</a> <a href="http://www.facebook.com/profile.php?id=592220744" title="Facebook">another</a> <a href="http://flickr.com/photos/andylaub/" title="Flickr">social</a> <a href="http://www.linkedin.com/profile?viewProfile=&#038;key=15536831" title="LinkedIn">internet</a> <a href="http://del.icio.us/matches/" title="del.icio.us">thing</a>. </p>
<p>But why Twitter?  The other day I went to post a <a href="http://andylaub.com/2007/10/30/513/">blip</a>.  But it was not a link, as they traditionally have been; more of just a state of mind sort of thing.  And I thought &#8220;this would be apropos for Twitter.&#8221;</p>
<p><img src="http://farm3.static.flickr.com/2266/1828504719_5f364cf53d_o.gif" class="right"/>Of course, nothing ever comes easy.  It wasn&#8217;t hard finding <a href="http://wordpress.org/extend/plugins/twitter-tools/" title="Twitter Tools">a plugin</a> that suited my needs, but my laziness in keeping my WP install up to date came back to bite me in the ass.  I&#8217;ve been running 2.0 <a href="http://andylaub.com/2006/01/08/upgrades-and-updates/">since, well, too long</a>; because it worked for me, I never bothered to follow the updates. Which meant that to make the little birdie happy, I had to set aside a larger chunk of time to get WP up to snuff.  And by up to snuff, I mean, WP 2.1 (they&#8217;re now at 2.3).  So I did that and fixed the custom field junk that had changed between 2.0 and 2.1 (fortunately I had dealt with it on another site months ago).</p>
<p>Having done that, it was time to actually <em>install</em> the plugin.  Doing so turned out to be hassle-free, once I had the right version, but the output wasn&#8217;t quite to my liking.  The default is to truncate the Twitter post and make that the title; I wasn&#8217;t thrilled with the post slugs that resulted in, since my general blip posts don&#8217;t have titles at all and therefore are just assigned numbers.  I can&#8217;t fault the logic in this design, though; it&#8217;s easier to figure out how to get rid of it than it is to implement it.  Case in point: line 196 of <code>twitter-tools.php</code></p>
<p><code>, 'post_title' => ''</code></p>
<p>Now that Twitter was producing title-free posts, I turned my attention to the other hurdle; creating a link back to the original Tweet.  I did some searching and came up empty-handed; fortunately I had the good sense to see that Twitter Tools adds the post ID as post meta, and from there it can easily be called from the WP templates themselves. Fortunately, that solved my other problem as well: how to get the Twitter link to only show up on Tweet posts.</p>
<p>I&#8217;m pleased with the entire result, as it&#8217;s exactly what I was looking for, now the question becomes whether or not I will continue to use Twitter in the first place.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2007/11/02/bird-is-the-word/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>&#8220;Blog More.&#8221;</title>
		<link>http://andylaub.com/2007/10/26/blog-more/</link>
		<comments>http://andylaub.com/2007/10/26/blog-more/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 14:28:46 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2007/10/26/blog-more/</guid>
		<description><![CDATA[I'm back.  Kinda sorta.]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s what I was told during a recent discussion with a colleague as he was &#8220;blogging on <a href="http://outgunned1970.wordpress.com/" title="Dino">his blog</a>&#8220;.  It&#8217;s common sense, yeah.  I have a blog, why not use it?</p>
<p>The thing here is, as soon as I start to break out of my average posting time (say, every three days), the harder it is to come back.  And when I <em>do</em> come back, the tendency is to start out with a &#8220;boy, it&#8217;s been awhile&#8221; sort of post instead of diving into real content, assuming there was any in the first place.</p>
<p>My problem lately is that my creative &#8220;pie chart&#8221; is currently overtaken by three things:</p>
<ol>
<li>Design</li>
<li>Coding</li>
<li>Acting</li>
</ol>
<p>The first two are pretty standard considering the recent freelance decision, but the third is unexpected. As much as I enjoyed <em>West Side Story</em>, it took a lot out of me and with freelance calling my name, I was looking forward to a lack of rehearsals.  Suffice it to say, the lull didn&#8217;t last as long as I would&#8217;ve liked. </p>
<p>Obviously, both writing and photography are excluded from the list, which means this blog suffers. But here&#8217;s me, blogging more.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2007/10/26/blog-more/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Some new (old) pages</title>
		<link>http://andylaub.com/2007/05/09/some-new-old-pages/</link>
		<comments>http://andylaub.com/2007/05/09/some-new-old-pages/#comments</comments>
		<pubDate>Thu, 10 May 2007 02:30:11 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2007/05/09/some-new-old-pages/</guid>
		<description><![CDATA[No more JS on the homepage.  I think.]]></description>
			<content:encoded><![CDATA[<p><a href="http://andylaub.com/info/">Info</a> and <a href="http://andylaub.com/contact">Contact</a> have returned.</p>
<p>Still no archive, since that seems to be what <a href="http://www.exoticduckfarm.com/">the</a> <a href="http://waytoocrowded.com/">cool</a> <a href="http://www.dabootski.com/">kids</a> are doing.</p>
<p>Also, I&#8217;m lazy.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2007/05/09/some-new-old-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More different, more the same.</title>
		<link>http://andylaub.com/2007/05/01/more-different-more-the-same/</link>
		<comments>http://andylaub.com/2007/05/01/more-different-more-the-same/#comments</comments>
		<pubDate>Tue, 01 May 2007 15:53:09 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[redesign]]></category>

		<guid isPermaLink="false">http://andylaub.com/2007/05/01/more-different-more-the-same/</guid>
		<description><![CDATA[Version 14 has landed.]]></description>
			<content:encoded><![CDATA[<p>So here&#8217;s a new look, and it just happens to be May 1st.  I&#8217;m getting better at this &#8220;every six months&#8221; thing.</p>
<p>Questions? Comments?</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2007/05/01/more-different-more-the-same/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ketchup</title>
		<link>http://andylaub.com/2007/04/21/ketchup/</link>
		<comments>http://andylaub.com/2007/04/21/ketchup/#comments</comments>
		<pubDate>Sat, 21 Apr 2007 14:58:27 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Cycling]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2007/04/21/ketchup/</guid>
		<description><![CDATA[I haven't posted since March, and I apologize.]]></description>
			<content:encoded><![CDATA[<p>So it comes to my attention that my site is looking notoriously run-down, as though the occupant has moved on and left nothing but memories.  I can assure you this is not the case.  Spring is here, finally, and that means more and more distractions, but hey, what&#8217;s a journal for if you can&#8217;t make excuses for slacking off?</p>
<p>First of all, my Xbox: still dead.  Well, maybe not.  It&#8217;s somewhere in Louisville, Kentucky according to UPS, but get this: it&#8217;s on the <strong>return</strong> trip.  I sent it to them last Friday, they got it Wednesday and it was reshipped on Thursday.  So I should be seeing it Tuesday and we&#8217;ll find out if it&#8217;s <em>really</em> fixed.</p>
<p>In the meantime, <em>Paper Mario: The Thousand Year Door</em> (not the new one) continues to entertain.  In fact, you&#8217;re lucky I&#8217;m here writing this at all, since I&#8217;d much rather be playing that.</p>
<p>We are all moved in, pretty much, mostly.  There are some still-packed boxes, but who cares?  The garage is clean.</p>
<p>Last year I mentioned a <a href="http://andylaub.com/2006/07/11/bike-nerdery/">niggling desire to own a single speed bike</a>, and so instead of spending billions of money to buy some kind of deathtrap car or motorcycle, I decided instead to make good on that.  Oddly enough, the bike I chose is the one mentioned in that post: a <a href="http://www.bianchiusa.com/06_muss.html" title="I like the color a lot more these days.">2006 Bianchi M.U.S.S.</a> that was stupid cheap.  It too is going to be here soon, as I ordered it online instead of going through the local shop, a decision I&#8217;ll elaborate on later.</p>
<p>Speaking of biking, the ride to work is obviously farther than it used to be, but I can still make it in about 10 minutes.  So suck it, Grand Ave.</p>
<p>Finally, this site looks like crap, I know.  I&#8217;m working on a new one, which may be what you&#8217;re seeing right now or it may not.  It looks bad regardless because one site is decaying and the other isn&#8217;t done.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2007/04/21/ketchup/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Saturday morning fixes</title>
		<link>http://andylaub.com/2007/01/13/saturday-morning-fixes/</link>
		<comments>http://andylaub.com/2007/01/13/saturday-morning-fixes/#comments</comments>
		<pubDate>Sat, 13 Jan 2007 14:07:22 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2007/01/13/saturday-morning-fixes/</guid>
		<description><![CDATA[What better way to spend a Saturday morning than working on PHP?]]></description>
			<content:encoded><![CDATA[<p>There is no time during the week that I&#8217;m more likely to be working on this site (from a coding standpoint) than Saturday morning; the earlier the better.  I don&#8217;t know why that is, but it&#8217;s just proven itself yet again.</p>
<p>There was an issue with the archive page; turns out that the way I had written it told it to display monthly archives differently depending on whether a real post or a mini-post was last posted in that month.  So I fixed it.</p>
<p>Not really an exciting story, I&#8217;m afraid, but still, the motivation just wasn&#8217;t there until I woke up at 7:30 this morning.  If I were to venture a guess, I&#8217;d say that it&#8217;s probably because I know that if I start a project on Saturday morning, especially if it&#8217;s before everybody is awake or active, then I know I&#8217;ll be able to finish it.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2007/01/13/saturday-morning-fixes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Some updates</title>
		<link>http://andylaub.com/2006/11/14/some-updates/</link>
		<comments>http://andylaub.com/2006/11/14/some-updates/#comments</comments>
		<pubDate>Wed, 15 Nov 2006 03:00:51 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/11/14/some-updates/</guid>
		<description><![CDATA[Updates! Get yer updates!]]></description>
			<content:encoded><![CDATA[<ul>
<li><em>Elsewhere</em> posts now get their own permalink pages, including comments.  This is joined by new fancy little icons for comments, permalinks, and the &#8220;via&#8221; link.</li>
<li>Following that trend, I made some slight updates to the <a href="http://andylaub.com/category/elsewhere/">archive page</a> for the <em>Elsewhere</em> posts.</li>
<li>There was also the issue of the too-small comment box.  If you haven&#8217;t already noticed, clicking the + next to &#8220;Speak&#8221; will enlarge it so there&#8217;s more space (for bitching).</li>
<li>And of course, what series of updates would be complete without design changes made when I should be in bed already?</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/11/14/some-updates/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The Luckiest</title>
		<link>http://andylaub.com/2006/10/31/the-luckiest/</link>
		<comments>http://andylaub.com/2006/10/31/the-luckiest/#comments</comments>
		<pubDate>Wed, 01 Nov 2006 00:18:40 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[redesign]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/10/31/the-luckiest/</guid>
		<description><![CDATA[Just in time for the November 2006 CSS Reboot, Andy Laub 13 is <strong>done</strong>!]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been over a month in the making, but version 13 of this site is finally done and fully functional.  This is the most comprehensive update since the first WordPress-driven version from June of 2005.</p>
<h6>New</h6>
<p>My biggest goal with this new site was to really start taking advantage of the power WordPress has, and that meant a switch to themes.  Once I figured out the basics I was very impressed with the options that are available and how easily they can be configured.  Versions 9 through 12 of the site ran off of a clump of PHP files that pretty much sat outside of the WordPress umbrella.  It really worked in spite of itself, which I think sums up my feelings about it.</p>
<p>In contrast, I was surprised by all the options the theme system has to offer.  The search function worked right out of the box (except for one day when it mysteriously didn&#8217;t), and now I have a <a href="http://andylaub.com/404/" title="Pretend it's really broken!">404 page</a> and <em>real</em> category pages.  </p>
<p>The other big reason for the switch is the fact that almost all the good WordPress plugins rely on the theme to do what they do.  The <a href="http://andylaub.com/contact/">contact form</a> is a good example of this; it&#8217;s generated using a quicktag and therefore had to be set up as a WordPress page.  And thanks to pages, my menus no longer have to be hard-coded.</p>
<h6>Improved</h6>
<p>Usability was next on my list of priorities.  I&#8217;ve already mentioned the 404 and Search pages, but I also added PHP redirects on the old _____.php pages that push the user to the current page rather than a 404.  Also, thanks again to the themes, all category listings are now clickable.</p>
<p>You&#8217;ll also notice the wider comment display area on the single pages, and, just for <a href="http://dabootski.com/">jb</a>, <a href="http://andylaub.com/2006/10/06/brain-game/#comments">clicking the header</a> now takes you home.</p>
<h6>Just Plain Different</h6>
<p>Aside from this pretty new design (I swear, I <strong>DID NOT</strong> steal the banner idea from <a href="http://www.snook.ca/jonathan/">Jonathan Snook</a>!), there are two more notable changes.  The first is that I&#8217;m done with <a href="http://del.icio.us/matches/">del.icio.us</a>.  It worked fine for links, yes, but since installing WordPress 2.0 back in February, I haven&#8217;t been able to make it play nice with Magpie RSS.  Rather, I mentioned using a Javascript approach but that didn&#8217;t please me either, partially because it wasn&#8217;t searchable and partially because something in the way it was set up never displayed properly in Internet Exploere (not even 7!).</p>
<p>This time out I&#8217;m <a href="http://www.kottke.org/">going</a> <a href="http://www.daringfireball.com/">mainstream</a> and integrating the links right into the main body.  They&#8217;re pretty easy to pick out, since they don&#8217;t have titles and have a cute little border thing applied to them.  More importantly, they now have times and dates applied to them, and it&#8217;s one less service to rely on.</p>
<p>The other big step is a brand new logo, as you may have already noticed in a number of places.  For now, suffice it to say that I like it much better than the old one and I&#8217;ll write more later.</p>
<p>That about wraps it up.  What do <em>you</em> think?</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/10/31/the-luckiest/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>DOCADD, defeated.  Sorta.</title>
		<link>http://andylaub.com/2006/08/22/docadd-defeated-sorta/</link>
		<comments>http://andylaub.com/2006/08/22/docadd-defeated-sorta/#comments</comments>
		<pubDate>Tue, 22 Aug 2006 22:38:07 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/08/22/docadd-defeated-sorta/</guid>
		<description><![CDATA[One resolution is a success, and so another is made.]]></description>
			<content:encoded><![CDATA[<p>Way back in February, shortly after launching this version of the site, I <a href="http://andylaub.com/2006/02/22/compulsive-updates-or-docadd/">made a commitment</a>.  Essentially I resolved that this iteration of the site would remain live and largely unchanged for 6 months.</p>
<p>Today marks the date, and though DOCADD still has me in its clutches, but its grip is loosening.  Minor bits and pieces have been altered along the way, along with a slight refresh last month, but nothing extensive has been altered and so I consider the effort largely successful.</p>
<p>Furthermore, I&#8217;m happy enough with the site in its current form, that barring another minor update or two, it will continue in this state for a couple more months.  Instead of arbitrarily redesigning again, I want to hold out for the next <a href="http://www.cssreboot.com/">CSS Reboot</a> on November 1.  </p>
<p>This decision holds a couple of advantages:</p>
<ul>
<li>It keeps me from rushing into things. No matter what happens, I <strong>cannot</strong> show a finished product before November 1.  Plenty of time to refine a design (this should be the long part) and CSS-ify it.</li>
<li>It generates more interest as part of a larger event.  I&#8217;m still getting hits from the one I did back in Spring of <strong>2005</strong>.  And I&#8217;m a sucker for publicity.</li>
</ul>
<p>Now it&#8217;s just a matter of working the design magic.  I&#8217;ve got a general wireframe in mind but nothing solid yet.  I want it to be nice.  Really nice.  I just have to figure out how to make it really nice without resorting to the Web 2.0 trendiness.</p>
<p>There are also a couple of features I&#8217;m wanting to try out, though I can&#8217;t say with certainty what will work and what won&#8217;t.  Following in <a href="http://www.dabootski.com/">jb</a>&#8216;s and more recently <a href="http://www.majafa.com/">majafa</a>&#8216;s footsteps, there&#8217;s a good chance you&#8217;ll see a &#8220;recent comments&#8221; section on the homepage. </p>
<p>That&#8217;s really all I know.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/08/22/docadd-defeated-sorta/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Airbag effect</title>
		<link>http://andylaub.com/2006/08/17/the-airbag-effect/</link>
		<comments>http://andylaub.com/2006/08/17/the-airbag-effect/#comments</comments>
		<pubDate>Fri, 18 Aug 2006 03:08:19 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/08/17/the-airbag-effect/</guid>
		<description><![CDATA[I got <em>Longboarded</em>, and it made my day.]]></description>
			<content:encoded><![CDATA[<p><a href="http://andylaub.com/2006/08/07/camping-is-fun-mostly/" title="camping, ranting">I</a> got <a href="http://airbagindustries.com/" title="he quoted the 'retard' line">Airbagged</a>, or rather <em>Longboarded</em> last week.  </p>
<p>The result?  Airbagindustries.com is now my top referrer of all time, narrowly eclipsing a Google Images search for <a href="http://images.google.com/imgres?imgurl=http://www.andylaub.com/images/chicken.jpg&#038;imgrefurl=http://andylaub.com/2005/06/30/chicken/&#038;h=300&#038;w=600&#038;sz=39&#038;tbnid=rxYTNf66_C4J:&#038;tbnh=66&#038;tbnw=133&#038;hl=en&#038;start=277&#038;prev=/images%3Fq%3DCHICKEN%2BFIGHT%26start%3D260%26s">&#8220;CHICKEN FIGHT&#8221;</a>.</p>
<p>Now, how do I make those people come back?</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/08/17/the-airbag-effect/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Anniversary Statstravaganza</title>
		<link>http://andylaub.com/2006/06/26/anniversary-statstravaganza/</link>
		<comments>http://andylaub.com/2006/06/26/anniversary-statstravaganza/#comments</comments>
		<pubDate>Mon, 26 Jun 2006 05:01:13 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/06/26/anniversary-statstravaganza/</guid>
		<description><![CDATA[Wordpress made it a year without breaking anything too badly.  Let's review.]]></description>
			<content:encoded><![CDATA[<p>One year ago today, PDF and I were sitting and staring at my monitor, making WordPress go.  The result was <a href="http://andylaub.com/2005/06/26/scratch/">this post</a>, the first of 6 months worth of daily images.  Many of those images were terrible.  <a href="http://andylaub.com/2005/07/06/twelvis">Some</a> <a href="http://andylaub.com/2005/08/02/buttoned/">were</a> <a href="http://andylaub.com/2005/08/23/overpass/">OK</a>.</p>
<p>Regardless, it&#8217;s been a good time so far, and even though the images have migrated, I have every intention of continuing to chronicle my various thoughts.  But for now, let&#8217;s look at some facts and figures, yes? </p>
<h6>Shortstat info since October 25, 2005</h6>
<p><strong>Total hits:</strong> 48,806<br />
<strong>Unique hits:</strong> 4,250</p>
<p><strong>Top browser:</strong> IE 6.0</p>
<p><strong>Top 5 repeat referrers:</strong></p>
<ol>
<li>images.google.com: 368</li>
<li>forums.vwvortex.com: 330</li>
<li>bloglines.com: 191</li>
<li>spring2005.cssreboot.com: 97</li>
<li>google.com: 74</li>
</ol>
<p><strong>Top 5 search terms:</strong></p>
<ol>
<li>andy laub: 38</li>
<li>swedish models: 17</li>
<li>macbook: 5</li>
<li>Andy Laub: 4</li>
<li>You may want to consider using a third-party utility to convert the<br /> muxed file to a format that does allow you to edit or export: 4</li>
</ol>
<h6>Overall info since inception</h6>
<p><strong>Posts:</strong> 244<br />
<strong>Average posts per day:</strong> .67<br />
<strong>Average time between posts:</strong> 1.50 days</p>
<p><strong>Comments:</strong> 273<br />
<strong>Average comments per post:</strong> 1.12<br />
<strong>Average comments per day:</strong> .75</p>
<p><strong>Internal images:</strong> 257<br />
<strong>Average images per post:</strong> 1.05<br />
<strong>Average images per day:</strong> .70</p>
<p><strong>Videos:</strong> 2</p>
<p><strong>Flickr images:</strong> 203<br />
<strong>Average Flickr images per day:</strong> .56</p>
<p><strong>del.icio.us bookmarks:</strong> 235<br />
<strong>Average bookmarks per day:</strong> .64</p>
<p><strong>Change in regular readership:</strong> 400%, up to four now!  Way to go, guys!</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/06/26/anniversary-statstravaganza/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Minor updates</title>
		<link>http://andylaub.com/2006/06/23/minor-updates/</link>
		<comments>http://andylaub.com/2006/06/23/minor-updates/#comments</comments>
		<pubDate>Sat, 24 Jun 2006 01:17:49 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/06/23/minor-updates/</guid>
		<description><![CDATA[<p>I&#8217;ve made a couple changes to the site this past week for usability&#8217;s sake and to keep myself satisfied with it.  You&#8217;ll notice on the singular post pages that the format has shifted from two columns to three which mimics&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve made a couple changes to the site this past week for usability&#8217;s sake and to keep myself satisfied with it.  You&#8217;ll notice on the singular post pages that the format has shifted from two columns to three which mimics both the home page and the archive while making better use of the space alloted.</p>
<p>This is easier said than done because I still have a bunch of <a href="http://andylaub.com/2005/07/15/washinton/" title="ten">posts</a> <a href="http://andylaub.com/2005/10/13/recycle/" title="ten and a half">with</a> <a href="http://andylaub.com/2005/12/21/this-is-it/">images</a> to account for and they all need a two-column layout to be happy and healthy.  Fortunately, a few strategically distributed if/else statements were enough to take care of this and now I have a layout that makes me much happier.</p>
<p>The second change really doesn&#8217;t benefit anyone in particular but I decided to rewrite my <a href="http://andylaub.com/info.php">info</a> page because I was sick of just having lists of stuff and because this new one fits with the three-column philosophy.</p>
<p>The final change I made after I wrote this because I realized how many times I tend to make changes to posts.  Take note of the small grey number next to the title; from now on that&#8217;s your reference to the version of this particular post.  Minor things like adding links to existing content will result in a .1 addition, while major things like adding this paragraph you&#8217;re reading are good for a whole new version. </p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/06/23/minor-updates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Everybody Googles</title>
		<link>http://andylaub.com/2006/04/12/everybody-googles/</link>
		<comments>http://andylaub.com/2006/04/12/everybody-googles/#comments</comments>
		<pubDate>Thu, 13 Apr 2006 01:52:15 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/04/12/everybody-googles/</guid>
		<description><![CDATA[<p>Last month I wrote briefly about the <a href="http://andylaub.com/2006/03/22/i-didnt-go-to-sxsw-and-all-i-got-was-this-stupid-torrent/">music of SxSW</a>, where I mentioned <a href="http://www.myspace.com/HappyFlowersBand">Happy Flowers</a> and a song of theirs that I didn&#8217;t much care for.  What I forgot when writing that was that everyone succumbs to that&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Last month I wrote briefly about the <a href="http://andylaub.com/2006/03/22/i-didnt-go-to-sxsw-and-all-i-got-was-this-stupid-torrent/">music of SxSW</a>, where I mentioned <a href="http://www.myspace.com/HappyFlowersBand">Happy Flowers</a> and a song of theirs that I didn&#8217;t much care for.  What I forgot when writing that was that everyone succumbs to that inevitable temptation to <a href="http://www.google.com/search?hl=en&#038;q=andy+laub&#038;btnG=Google+Search" title="Number 1!">Google themselves</a>, which I&#8217;m assuming is how I ended up with a comment from one of the band members on my post.</p>
<p>So suffice it to say, I feel bad. The difference between <a href="http://andylaub.com/2005/10/11/amalgam">insulting a company</a> and insulting a band is that bands aren&#8217;t necessarily in it for the money.  It&#8217;s a creative expression and any comments made can be taken very personally.  With that said, I apologize to the band since the my commentary could be considered rather harsh and possibly over the top.  While the style of music is not one that I particularly care for the band&#8217;s talent for improvisation is one to be respected.</p>
<p>Hopefully this will serve as a reminder to me to rethink what I write in the future. </p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/04/12/everybody-googles/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Rolling it</title>
		<link>http://andylaub.com/2006/04/10/rolling-it/</link>
		<comments>http://andylaub.com/2006/04/10/rolling-it/#comments</comments>
		<pubDate>Tue, 11 Apr 2006 03:56:55 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/04/10/rolling-it/</guid>
		<description><![CDATA[<p>The developer side of me gets a little giddy when I get to add new gizmos to the site, and so it&#8217;s that side of me that&#8217;s happy to announce the addition of a <a href="http://www.rollyo.com/">Rollyo</a> search box on the&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>The developer side of me gets a little giddy when I get to add new gizmos to the site, and so it&#8217;s that side of me that&#8217;s happy to announce the addition of a <a href="http://www.rollyo.com/">Rollyo</a> search box on the <a href="http://andylaub.com/archive.php">archive page</a>.  I&#8217;ve been toying with the idea of adding some kind of search function to the site for some time and just never did, partially because the plugins I was trying didn&#8217;t work.  I think has to do mainly with this site not playing with the WordPress templates.</p>
<p>Regardless, Rollyo offered a simple to implement and unobtrusive solution to my dilemma.  Once you&#8217;ve signed up they have an area where you can fill in a simple form and have the appropriate code generated.  While the pre-made ones look nice enough (example <a href="http://www.mattbrett.com/archives">here</a>, kind of), the dropdown menu (for site selection) bothered me as it really doesn&#8217;t serve a purpose.  Rather than try to figure this out on my own, I looked to a site that uses a version similar to what I wanted: <a href="http://www.airbagindustries.com">Airbag</a>.</p>
<p>It took me a minute to figure out what data the form was using to tell it what site to search, and it turns out it&#8217;s this:</p>
<p><code>&lt;select name='sid' style='display: none;'&gt;&lt;option value='<span class="high">65987</span>'&gt;andylaub.com...</code></p>
<p>The highlighted number is basically the ID assigned to the site that you&#8217;ve added (for some perspective, Airbag&#8217;s number is 7080).  In the standard dropdown menu it can handle multiple user-defined sites, each with its own number but in this usage only the one for andylaub.com is necessary.  Also of note is the style attribute in the <code>select</code> tag which keeps the list from being shown at all; with only one option there&#8217;s no point in having it visible.</p>
<p>That&#8217;s it in a nutshell.  I&#8217;m pleased with the result for now, at least as a stopgap, as it makes older stuff easier to find until I can create a more comprehensive and organized archive.  The only issue I&#8217;ve noticed is the time it takes to index new pages, so putting in &#8220;Madonna,&#8221; for example, wouldn&#8217;t turn up the post I wrote Saturday (yet).</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/04/10/rolling-it/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Back Off</title>
		<link>http://andylaub.com/2006/03/29/back-off/</link>
		<comments>http://andylaub.com/2006/03/29/back-off/#comments</comments>
		<pubDate>Thu, 30 Mar 2006 01:53:48 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/03/29/back-off/</guid>
		<description><![CDATA[<p><a href="http://www.waytoocrowded.com/2006/03/29/ripper-spam-and-default-passwords/#comment-320">Quote:</a></p>
<blockquote><p>I find myself overthinking my more recent, WordPressed stuff when compared to my ancient handcoded site as well. One of the things Iâ€™ve noticed is that if I go off on a subject thatâ€™s too specific and in-depth nobody</p></blockquote><p>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.waytoocrowded.com/2006/03/29/ripper-spam-and-default-passwords/#comment-320">Quote:</a></p>
<blockquote><p>I find myself overthinking my more recent, WordPressed stuff when compared to my ancient handcoded site as well. One of the things Iâ€™ve noticed is that if I go off on a subject thatâ€™s too specific and in-depth nobody comments, and itâ€™s just kind of too much. I need to remember that my site is not a resource &#8211; itâ€™s just there for interest. Not reviews, or how-toâ€™s, just rambling incoherence.</p></blockquote>
<p>I should definitely, definitely not forget this (again).  <a href="http://andylaub.com/2005/11/28/settle/">Remember that time I hurt Jason&#8217;s head?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/03/29/back-off/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Compulsive Updates (or, DOCADD)</title>
		<link>http://andylaub.com/2006/02/22/compulsive-updates-or-docadd/</link>
		<comments>http://andylaub.com/2006/02/22/compulsive-updates-or-docadd/#comments</comments>
		<pubDate>Thu, 23 Feb 2006 02:55:24 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/02/22/compulsive-updates-or-docadd/</guid>
		<description><![CDATA[<p>It&#8217;s probably not gone unnoticed that this site was overhauled just two months after its previous incarnation, and I feel an explanation is in order.</p>
<h6>The Problem</h6>
<p>I&#8217;m going to coin another phrase, and I call it <strong>D</strong>esigner&#8217;s <strong>O</strong>bsessive-<strong>C</strong>ompulsive <strong>A</strong>ttention&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s probably not gone unnoticed that this site was overhauled just two months after its previous incarnation, and I feel an explanation is in order.</p>
<h6>The Problem</h6>
<p>I&#8217;m going to coin another phrase, and I call it <strong>D</strong>esigner&#8217;s <strong>O</strong>bsessive-<strong>C</strong>ompulsive <strong>A</strong>ttention <strong>D</strong>eficit <strong>D</strong>isorder; DOCADD for short.  But I&#8217;m not just the discoverer of DOCADD, I&#8217;m also a victim.</p>
<p>Since its launch in December of 2000, this site has gone through 16 significant structural and/or aesthetic revisions, which averages out to about 3 per year.  Which, in the designer world, isn&#8217;t totally unheard of until you consider that nearly half of them occurred in 2005 alone.  I could make excuses by claiming that <a href="http://old.andylaub.com/">8.0</a> (01/05) was when the CSS conversion happened, and then 8.5 (05/05) was for the <a href="http://www.cssreboot.com">Reboot</a>, and then 9.0 (06/05) was the short-lived WordPress test site.  Then we&#8217;ve got the three different versions of 10 (the white one, the brown one, and the black one) and the recently deceased (good riddance) version 11.   That&#8217;s a total of seven.</p>
<p><strong>I relaunched my site seven times last year.</strong></p>
<p>That is obsession verging on the edge of insanity.  Then let&#8217;s consider all the tiny updates that happened in between the major relaunches, like the color and sizing adjustments and just general code modifications and you&#8217;re up to probably close to a hundred different versions of the site over a year which works out, amazingly, to a new release almost every three days.</p>
<p>So the question is, why?  Why do I put so much time into this website?  I don&#8217;t know.  I know when I&#8217;m updating why I&#8217;m doing it but I think part of it goes back to DOCADD.  I can almost guarantee that I have ADD when it comes to things like this, and I start thinking about ways to make it better because after seeing it day after day it starts to bore me, something that indicates bad design.  And that spurs me to start thinking about the next version.  The OCD kicks in when I notice little niggling details, like incorrect spacing or inconsistent date formats, or when I think of things that could just be displayed better.</p>
<h6>The Resolution</h6>
<p>Because I think I have (finally, though I say that all every time) arrived at a design that I think has some staying power, I&#8217;m making the resolution to keep this site in its current iteration for six months.  180 days.  That means that yellow header will be my best friend until August 22, at least.  It probably won&#8217;t happen, but we&#8217;ll see.  I <span class="strike">can&#8217;t</span> shouldn&#8217;t keep this up.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/02/22/compulsive-updates-or-docadd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>V.12</title>
		<link>http://andylaub.com/2006/02/20/v12/</link>
		<comments>http://andylaub.com/2006/02/20/v12/#comments</comments>
		<pubDate>Tue, 21 Feb 2006 02:34:01 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/02/20/v12/</guid>
		<description><![CDATA[The site finally comes together in its current iteration.]]></description>
			<content:encoded><![CDATA[<p>After a slew of mockups and sketches varying from <a href="http://www.cameronmoll.com/archives/000024.html">wicked worn</a> to ultra-clean and from 3 columns to 5 columns, the new site has launched and remains true to its four-column, no-real-look-or-concept roots.  But I like it.  I like it alot &mdash; way more than the last site and arguably the most of pretty much all of my sites ever.  I just wanted a back-to-basics, minimal, information-first type of deal and I think that&#8217;s what I got.  In honor of this launch I wanted to provide a rundown of sorts.</p>
<h6>Posts</h6>
<p>As you may have noticed, beginning with <em>Chicago, pt 2</em> posts will no longer have an image associated with them by default.  I made this decision for a number of reasons.  First of all, having an image to go with the post was keeping me from posting as frequently as I&#8217;d like; there are certain days, as evidenced in the archives, that the image and the words have nothing to do with one another anyway so why associate the two?  Secondly, flickr has way more power and capacity than I could ever hope to match, and so they are my new choice for hosting images.  They will make organization and sharing easier, and they have a number of nifty features that I wanted to try out.</p>
<h6>Images</h6>
<p>Like I said, I&#8217;m now using <a href="http://flickr.com/">flickr</a> for these.  I use the <a href="http://eightface.com/wordpress/flickrrss/">flickrRSS</a> plugin to wrap the images in the appropriate elements and display them onsite; it&#8217;s minimalist in its options but it does what I need and does it well.  Over the weekend I also experimented with a variety of image uploading techniques.  Flickr&#8217;s web uploader is quite nice and I prefer it over <a href="http://www.apple.com/downloads/dashboard/blogs_forums/flidget.html">Flidget</a>, a Dashboard widget that, while convenient, only lets you tag and upload one image at a time.  The cream of the crop is flickr&#8217;s own <a href="http://flickr.com/tools/">Flickr Uploadr</a> which gives you about 95% of the capabilities of the web admin panel without ever having to open your browser.</p>
<h6>Links</h6>
<p>I continue to use <a href="http://del.icio.us/">del.icio.us</a> for links because it&#8217;s just so damn easy, but upon discovering that they provide a <a href="http://del.icio.us/help/linkrolls">JavaScript alternative</a> to Magpie (my old PHP method of fetching the links) I decided to try that out.  Implementation is fairly basic, though I was challenged by the code because I wanted the link to include not just the headline but the description as well (and all function as a link).  This is what I came up with:</p>
<p><code>function showImage(img){ return (function(){ img.style.display='inline' }) }<br />
var span =document.createElement('span')<br />
for (var i=0, post; post = Delicious.posts[i]; i++) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;var a = document.createElement('a')<br />
&nbsp;&nbsp;&nbsp;&nbsp;a.setAttribute('href', post.u)<br />
&nbsp;&nbsp;&nbsp;&nbsp;a.setAttribute('class', "entry")<br />
&nbsp;&nbsp;&nbsp;&nbsp;var h3 = document.createElement('h3')<br />
&nbsp;&nbsp;&nbsp;&nbsp;var p = document.createElement('p')<br />
&nbsp;&nbsp;&nbsp;&nbsp;h3.appendChild(document.createTextNode(post.d))<br />
&nbsp;&nbsp;&nbsp;&nbsp;p.appendChild(document.createTextNode(post.n))<br />
&nbsp;&nbsp;&nbsp;&nbsp;a.appendChild(h3)<br />
&nbsp;&nbsp;&nbsp;&nbsp;a.appendChild(p)<br />
&nbsp;&nbsp;&nbsp;&nbsp;span.appendChild(a)<br />
}<br />
document.getElementById('delish').appendChild(span)</code></p>
<p>The result is exactly what I was aiming for.  The del.icio.us method seems more capable than the Magpie route with its ability to show favicons and tags in addition to just the title and description.</p>
<h6>Feeds</h6>
<p>If you wander down to the footer, which you should be able to see by the time you&#8217;re reading this, you&#8217;ll notice that I&#8217;ve finally added a feed link to more easily obtain the RSS for this site.  If you&#8217;re interested, here&#8217;s the master list of feeds in case you want to follow my photos or links as well as the words:</p>
<ul>
<li><a href="feed://andylaub.com/wordpress/wp-rss2.php">Journal</a></li>
<li><a href="feed://flickr.com/services/feeds/photos_public.gne?id=54558271@N00&#038;format=rss_200">Images</a>
</li>
<li><a href="feed://del.icio.us/rss/matches">Elsewhere</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/02/20/v12/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Chicago, part 2</title>
		<link>http://andylaub.com/2006/02/18/chicago-part-2/</link>
		<comments>http://andylaub.com/2006/02/18/chicago-part-2/#comments</comments>
		<pubDate>Sat, 18 Feb 2006 23:51:56 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/02/18/chicago-part-2/</guid>
		<description><![CDATA[<p>So you may have noticed some delays in between the first and second parts of the series, and hopefully now you see why (if you&#8217;re RSSing, give it a break and visit the actual site).  One of my main goals&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>So you may have noticed some delays in between the first and second parts of the series, and hopefully now you see why (if you&#8217;re RSSing, give it a break and visit the actual site).  One of my main goals was to begin posting images and text independently, so if you&#8217;re wondering where all the images are, you&#8217;re going to need to look at <a href="http://flickr.com/photos/andylaub/sets/72157594191240949/">Flickr</a>.  If you&#8217;re interested in more text-oriented exploits, then look no further.</p>
<h6>America</h6>
<p>I have to admit, the US put on a good show this year.  Dodge probably had the most awe-inducing displays; not only were they showing the Challenger and the entire SRT gang; they also had test tracks (an off-road setup for Jeep and a series of on-road obstacles for the SRT vehicles) which really showed off the potential of some of their rides.  The singular most impressive and beautiful American vehicle, however, belongs to Chevrolet in the form of the new Camaro.  I thought the Challenger was quite nice when I saw it but the Camaro&#8217;s design makes it look like an old Volvo 240 &mdash; not ugly, but not exciting either.  The Challenger, like the Musting, also seems to be a rather chunky version of the original while the Camaro looks leaner and more defined, something that I think will help it in the long run assuming it sees production.</p>
<p>The Saturn Sky and Pontiac Solstice were there as well, of course, and I had the opportunity to try a Solstice on for size.  It&#8217;s not uncomfortable physically, but with the top up you&#8217;re left with what seems like a gun-slit of a windshield.  What they lacked in practicality and ergonomics they more than made up for in attractiveness.  I can&#8217;t help thinking that there should be a happy medium between the overly smooth and simple Solstice and the overly angular and decorated Sky, though.  Knowing GM&#8217;s history with platform sharing, there probably will be, too.</p>
<h6>Europe</h6>
<p>I was disappointed in the overall European showing for a couple of reasons, the main being a couple of brands that apparently didn&#8217;t feel that the largest auto show in America in terms of floor space was a necessary event to show up to.  Lamborghini and Lotus, I&#8217;m looking at you.  Rolls Royce wasn&#8217;t around either, which would have really irritated me had I not had the good fortune to see a Phantom the previous night (they are wonderful!).  Ferrari had a respectable showing (no Enzo, but it&#8217;s not in production any more so that&#8217;s not a shock) with a matching F430 Spyder and 612 Scaglietti.  Porsche, understandably, didn&#8217;t have a Carrera GT on display which was disappointing but not surprising.  Mercedes saved the day by bringing both the new Maybach 57S and an SLR McLaren, both of which were quite impressive.</p>
<p>One of the things Europe seems to be fond of is their retractable hard top convertibles, evidenced by M-B&#8217;s SL and SLK, Volvo&#8217;s new C70 and VW&#8217;s new Eos.  I played around with the burst mode on my camera and after some iMovie massaging ended up with a <a href="javascript:autoVid('http://exchange.andylaub.com/video/volvo.mov', 600, 400)">neat little video</a> of the Volvo&#8217;s top in action.</p>
<p>Also of note was the new Saab 9-3 SportCombi, not because of spectacular design or performance, but because the spare tire cover has a <a href="http://www.flickr.com/photos/andylaub/101310199/in/set-72057594066423748/">handle shaped like an airplane</a>!  I liked this so much I made a desktop out of it: <a href="http://exchange.andylaub.com/et_c/wallpaper/saab_1600.jpg">1600</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/saab_1280.jpg">1280</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/saab_1024.jpg">1024</a>.</p>
<h6>Asia</h6>
<p>Asia&#8217;s brands didn&#8217;t have anywhere near the metal that some of the Europeans had on display but they made an effort nonetheless.  Infiniti&#8217;s entire model line continues to cause salivation at its beauty, and Lexus certainly seems to be getting there as well.  Acura is off in their own little world where V6&#8242;s are competitive with V8&#8242;s and everybody wants a performance car with front wheel drive, but I&#8217;m sure they&#8217;ll get it soon enough.</p>
<p>Mazda had the wonderful new <span class="strike">Miata</span> MX-5 which I found to be much nicer than the Solstice and easily where my $20,000 roadster fund would be put to use.  Subaru didn&#8217;t really have anything new or special aside from the reskinned WRX and STI, both of which I like very much.  If you like them as much as I do, perhaps another desktop?  Here: <a href="http://exchange.andylaub.com/et_c/wallpaper/sti_1600.jpg">1600</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/sti_1280.jpg">1280</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/sti_1024.jpg">1024</a>.</p>
<p>Then we get to Honda, who did not disappoint.  The Civic Si sedan has me looking for my wallet.  I was equally impressed with the new <a href="http://automobiles.honda.com/fit/">Fit</a>, which I can see blowing everything else in its price range out of the water with its quality and versatility.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/02/18/chicago-part-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
<enclosure url="http://exchange.andylaub.com/video/volvo.mov" length="110330" type="video/quicktime" />
		</item>
		<item>
		<title>The Bad Side of CSS</title>
		<link>http://andylaub.com/2006/01/22/the-bad-side-of-css/</link>
		<comments>http://andylaub.com/2006/01/22/the-bad-side-of-css/#comments</comments>
		<pubDate>Sun, 22 Jan 2006 16:02:03 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/01/22/the-bad-side-of-css/</guid>
		<description><![CDATA[<p>It&#8217;s just two days past the anniversary of <a href="http://old.andylaub.com/">andylaub dot com v.8</a>.  It was the first full site design I did in CSS, and I still really like it.  It took me probably a week or two of work&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s just two days past the anniversary of <a href="http://old.andylaub.com/">andylaub dot com v.8</a>.  It was the first full site design I did in CSS, and I still really like it.  It took me probably a week or two of work from inception to launch, and it makes me wonder what has happened to my design skills when I return to this newest version.</p>
<p>It seems that the more I learn about CSS the more inclined I am to use that instead of any kind of actual layout program, and while it seems to be working OK, suddenly the site launches and I hate it.  Part of that is a result of general frustration with every site implementation since 8.5, the version I did for the Reboot.  I didn&#8217;t really like that one all that much and I haven&#8217;t been a huge fan of any of the WordPress-enabled versions. </p>
<p>With 8.5 it was just too bizarre a concept, and a result of being chained to the HTML that was already there.  With the others the mistake I made was jumping straight from concept sketches to a final version without mocking anything up beforehand.  That left CSS responsible for most of the elements and that resulted in sites that didn&#8217;t sit well with me for long (hence the jump through 4 versions in half a year).  You&#8217;d think I&#8217;d have learned my lesson by now, but current evidence shows that I certainly haven&#8217;t.</p>
<p>That might sound fickle, but what&#8217;s strange is that I can go back and look at all the microsites I did at work and be quite happy with most of them.  The reason?  Every single one originated in ImageReady (Photoshop&#8217;s web-oriented sister) and was then translated to HTML.  Almost none use CSS.  It&#8217;s totally opposite from what I have here, and maybe that&#8217;s why I have what I have here.</p>
<p>What I need to do then, is literally go back to the drawing board, and not rely on CSS for (all) my design elements.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/01/22/the-bad-side-of-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Media-ocrity</title>
		<link>http://andylaub.com/2006/01/10/media-ocrity/</link>
		<comments>http://andylaub.com/2006/01/10/media-ocrity/#comments</comments>
		<pubDate>Wed, 11 Jan 2006 03:48:47 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/01/10/media-ocrity/</guid>
		<description><![CDATA[<p>For months, on and off, I have been looking for some kind of simple WordPress plugin (or something along those lines) that would do for my collection of media what <a href="http://del.icio.us/">del.icio.us</a> does for bookmarks.  I like to use it&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>For months, on and off, I have been looking for some kind of simple WordPress plugin (or something along those lines) that would do for my collection of media what <a href="http://del.icio.us/">del.icio.us</a> does for bookmarks.  I like to use it as a sort of catalog of internet things that I think are worthy enough to pass on.  My first attempt (labeled as Intake) sputtered and died after only a few weeks of usage, simply because I did not want to hand-code each entry.</p>
<p>At that same time I was already looking for some way to take the data from <a href="http://www.delicious-monster">Delicious Library</a> and have it spit out an RSS feed that could then be parsed for this site much like what <a href="http://magpierss.sourceforge.net/">Magpie</a> does with the other (free) del.icio.us.  I still have not found that.  There was some hope when I read somewhere that DL can output XML but I gave up on that after not finding such an option.  It also seemed incredibly cluttered and complicated considering I was hoping for something more web-based.</p>
<p>I briefly considered just creating another del.icio.us account and linking to Amazon with every post, something that would probably be the most straightforward but somehow also feels like cheating.</p>
<p>In the meantime, however, I came across a plugin called <a href="http://milkcarton.protonage.net/plugins/addictions">Addictions</a> which, while it doesn&#8217;t do <em>exactly</em> what I&#8217;m looking for, is rather close and as a bonus, it&#8217;s simple enough to dissect and rearrange things to my liking.  As a result, after maybe 30-45 minutes of fiddling with the code I now have a nice window into the media that currently keeps me from posting more often and generally being more productive.  As a nice bonus, there are some things to look forward to with <a href="http://milkcarton.protonage.net/2005/09/26/the-addictive-future/">Addictions 2.0</a> when (if) that happens, and it sounds as though it will be evolving more into what I want, especially with the auto Amazon linking and the archive.</p>
<hr />
<p>Something that the <a href="http://andylaub.com/2006/01/08/upgrades-and-updates/">WordPress 2.0 update</a> and this most recent plugin adventure made me realize is how much better I&#8217;m getting at messing around under the hood of this site.  I still couldn&#8217;t write any kind of PHP from scratch to save my life, but I do enjoy going in and trying to figure out how to make stuff do what I want it to.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/01/10/media-ocrity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrades &amp; Updates</title>
		<link>http://andylaub.com/2006/01/08/upgrades-and-updates/</link>
		<comments>http://andylaub.com/2006/01/08/upgrades-and-updates/#comments</comments>
		<pubDate>Sun, 08 Jan 2006 21:38:24 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/01/08/upgrades-and-updates/</guid>
		<description><![CDATA[<p>Yesterday turned out to be a day of upgrades and updates, both planned and not.</p>
<h6>Part I</h6>
<p>I spent a couple of hours over at a friend and coworker&#8217;s house updating one of the <a href="http://www.apple-history.com/?page=gallery&#038;model=g4cube">coolest Macs ever</a> from OS&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Yesterday turned out to be a day of upgrades and updates, both planned and not.</p>
<h6>Part I</h6>
<p>I spent a couple of hours over at a friend and coworker&#8217;s house updating one of the <a href="http://www.apple-history.com/?page=gallery&#038;model=g4cube">coolest Macs ever</a> from OS 9.1 to Panther.  I was a little nervous doing such a major jump on a computer that wasn&#8217;t mine, but I have gone through the process a couple times on <a href="http://andylaub.com/2005/11/16/duplicate/">my old G3</a> so it wasn&#8217;t unfamiliar.  Before starting, I had to take the chassis out to add some RAM which reminded me again of how thoughtful Apple is in <a href="http://www.apple.com/powermac/design.html">most</a> <a href="http://www.apple.com/imac/">cases</a> when it comes to component access.  We got Mail set up in no time and experimented with how OS X plays with here printer, camera, and external CD burner.  The answer? Perfectly; no drivers required.  </p>
<p>After playing with the eject button and watching CDs pop out like toast out of a toaster, the process was complete and we had some pizza and cookies.</p>
<h6>Part II</h6>
<p>In what has to be one of the most bizarre effects of peer pressure, I felt <a href="http://www.waytoocrowded.com/2006/01/07/2-point-oh-so-cool/">obligated</a> last night to update to <a href="http://wordpress.org/development/2005/12/wp2/">WordPress 2.eh</a>.    The update process is well-documented on their site and I bugged PDF about it as I went along, but when all was said and done, I was on 2.0 with no pain whatsoever.</p>
<p>Because of the extensive UI changes, one of the first steps was re-downloading the <a href="http://orderedlist.com/wordpress-plugins/wp-tiger-administration/">WP Tiger Administration plugin, version 2.0</a>.  After getting that going, I added a couple lines to the CSS at PDF&#8217;s suggestion:</p>
<p><code>.dbx-content #categorychecklist {height: auto;}</code></p>
<p>This one extends the categories list instead of making it scroll.</p>
<p><code>#uploading {display:none;}</code></p>
<p>This one hides the image upload option on the post page.  Considering that I frequently use that feature, you might wonder why I&#8217;d choose not to show it, and the answer is simple.  The only reason I used the built-in image uploader in the first place is because it could automagically create 180&#215;90 thumbnails for my archive page.  The thumbnail feature on WP 2.0 is conspicuously absent, which renders the entire option worthless.</p>
<p>I decided to do some playing around with this, and copied the WP 1.5 <strong>upload.php</strong> file into the new wp-admin directory, and it still works!  One problem solved.  The next issue was figuring out a way to link it from the other pages.  In 1.5 it would&#8217;ve been in the main navigation.  Alternatively, I decided it would work nicely in the subnav, as shown:</p>
<p class="image"><img src="http://andylaub.com/content-2006/060108-2.jpg" alt="WP 2.0 subnav with Upload Image option" /></p>
<p>To do this, I added the highlighted line of code (thanks Paul) to line 22 of the <strong>menu.php</strong> file under wp-admin:</p>
<p><code>$submenu['post.php'][5] = array(__('Write Post'), 'edit_posts', 'post.php');<br />
$submenu['post.php'][10] = array(__('Write Page'), 'edit_pages', 'page-new.php');<br />
<span class="high">$submenu['post.php'][15] = array(__('Upload Image'), 0, 'upload.php');</span></code></p>
<p>So far, so good, but there were still a few issues.  The ability to specifiy the upload directory has mysteriously vanished from the Options > Miscellaneous page as well.  This is handled by the <strong>options-misc.php</strong> file in the wp-admin directory.  Like I did with upload.php, I simply copied the 1.5 version back over, so I can now specify the directory I want my images to upload to.</p>
<p>The final issue was how WP 2.0 handles thumbnails, which is bizarre since I don&#8217;t know how you&#8217;re even supposed to make it create thumbnails with the current UI.  Regardless, rather than using the traditional <strong>thumb-IMAGENAME.jpg</strong> it now uses <strong>IMAGENAME.thumbnail.jpg</strong> by default and with nowhere to change this option in the admin menus.  Because I have nearly 200 posts and all of them have thumbnails named with the old convention, it was easier to just try to hack it back to 1.5 standards.  As it turns out, this is handled by the <strong>admin-functions.php</strong> file, also in wp-admin.  I basically reverted that section to the old version by commenting out the stuff that didn&#8217;t match up and pasting in the old rename function (~line 750).  The result:</p>
<p><code>// If no filters change the filename, we'll do a default transformation.<br />
			// if ( basename($file) == $thumb = apply_filters('thumbnail_filename', basename($file)) )<br />
			//	$thumb = preg_replace('!(\.[^.]+)?$!', __('.thumbnail').'$1', basename($file), 1);<br />
			// $thumbpath = str_replace(basename($file), $thumb, $file);<br />
          <span class="high">$path = explode('/', $file);<br />
            $thumbpath = substr($file, 0, strrpos($file, '/')) . '/thumb-' . $path[count($path)-1];</span></code></p>
<p>After all is said and done, WP 2.0 now handles image uploads identically to WP 1.5.  I&#8217;m happy to say that, aside from this, everything else about 2.0 seems fairly good.  I really like the live preview option that lets you view the post in its intended environment before going live, especially for instances like this where I&#8217;m using certain classes for the first time.  I can&#8217;t honestly say that I took advantage of a lot of the other features in WordPress so I don&#8217;t notice a huge difference between the two versions, especially with the Tiger plugin obscuring the new UI design.</p>
<p>Overall though, I&#8217;m glad it&#8217;s over and done with, and the average WordPress user won&#8217;t have nearly this much trouble with the upgrade.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/01/08/upgrades-and-updates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>This is it.</title>
		<link>http://andylaub.com/2005/12/21/this-is-it/</link>
		<comments>http://andylaub.com/2005/12/21/this-is-it/#comments</comments>
		<pubDate>Thu, 22 Dec 2005 04:03:55 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=194</guid>
		<description><![CDATA[<p>First things first.  Here&#8217;s version 11, and it&#8217;s in beta.  Which means that if you see anything you think is awry, <a href="mailto:dotcom@andylaub.com">let me know</a>.  If possible, a screenshot and the url of the afflicted page(s) will help immensely.</p>
<h6>Anyways&#8230;</h6><p>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>First things first.  Here&#8217;s version 11, and it&#8217;s in beta.  Which means that if you see anything you think is awry, <a href="mailto:dotcom@andylaub.com">let me know</a>.  If possible, a screenshot and the url of the afflicted page(s) will help immensely.</p>
<h6>Anyways&#8230;</h6>
<p><a href="http://alistapart.com/articles/outsidethegrid">Alista</a> has a thought-provoking article on using CSS to apparently *ahem* think outside the grid, something I obviously did with this site.  Whatever.  From what I read of the article, it seems to be a little misguided and confused.  But <a href="http://alistapart.com/comments/outsidethegrid/">the comments</a> are gold.  At least I can take consolation in the fact that other designers agree that Alista is not 100% infallible.</p>
<p>The grid discussion comes on the heels of not only the redesign of my own site but <a href="http://www.waytoocrowded.com/2005/12/18/structure-and-clicks-and-rigidity/">PDF&#8217;s recent article</a> about structure.  He observed about his own site:</p>
<blockquote><p>I tend to carry the structure of the HTML that makes up a web page into its presentation. What I mean by that is most of the block elements tend to stack on top of or next to each other rather than flowing in, around or through each other. Even if the layout isnâ€™t built on a fixed grid, there is often that clear separation of elements defined by right angles and gutters.</p></blockquote>
<p>This is one of the biggest design commonalities Paul and I share.  I don&#8217;t think this is a bad thing &#8211; it&#8217;s always good to start with a grid, which is why Alista&#8217;s article seemed so ludicrous to me.  I could continue to elaborate, but I&#8217;m not saying anything the aforementioned comments already said.</p>
<p>Viva la Grid!</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/12/21/this-is-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forward</title>
		<link>http://andylaub.com/2005/12/15/forward/</link>
		<comments>http://andylaub.com/2005/12/15/forward/#comments</comments>
		<pubDate>Fri, 16 Dec 2005 04:19:18 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=189</guid>
		<description><![CDATA[<p>What&#8217;s going on?  Where are all the words, and the pictures?</p>
<p>Yeah, sorry about that.  I&#8217;m just not feeling it lately, and so I finally decided to skip a day or 3.  It&#8217;s not that I don&#8217;t care about the&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s going on?  Where are all the words, and the pictures?</p>
<p>Yeah, sorry about that.  I&#8217;m just not feeling it lately, and so I finally decided to skip a day or 3.  It&#8217;s not that I don&#8217;t care about the site anymore; it&#8217;s actually scheduled for a relaunch in a couple weeks.  Rather, I want to break away from the daily posting because I&#8217;m running out of both words and images.  I&#8217;d like to move toward a couple posts a week, each with something worth reading and looking at.  I want to do more series&#8217; of photos but I&#8217;m not big into winter photography, somehow.</p>
<p>In the meantime, here&#8217;s a Ferrari Enzo with some hidden meta that will make itself available on version ALeven.  LOOK OUT!</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/12/15/forward/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Slick</title>
		<link>http://andylaub.com/2005/12/07/slick/</link>
		<comments>http://andylaub.com/2005/12/07/slick/#comments</comments>
		<pubDate>Thu, 08 Dec 2005 01:27:01 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/12/07/slick/</guid>
		<description><![CDATA[<p>Man, I miss <a href="http://andylaub.com/2005/11/09/secret/">that Lotus</a>.  Anyway, I figured it was about time to replace my wallpaper at home, so here&#8217;s a copy for all the single-monitor peasants out there: <a href="http://exchange.andylaub.com/et_c/wallpaper/lotus_1600.jpg" target="_blank" title="1600 x 1200">sixteen</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/lotus_1280.jpg" target="_blank" title="1280 x 1024">twelve</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/lotus_1024.jpg" target="_blank" title="1024 x 768">ten</a>).</p>
]]></description>
			<content:encoded><![CDATA[<p>Man, I miss <a href="http://andylaub.com/2005/11/09/secret/">that Lotus</a>.  Anyway, I figured it was about time to replace my wallpaper at home, so here&#8217;s a copy for all the single-monitor peasants out there: <a href="http://exchange.andylaub.com/et_c/wallpaper/lotus_1600.jpg" target="_blank" title="1600 x 1200">sixteen</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/lotus_1280.jpg" target="_blank" title="1280 x 1024">twelve</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/lotus_1024.jpg" target="_blank" title="1024 x 768">ten</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/12/07/slick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Settle</title>
		<link>http://andylaub.com/2005/11/28/settle/</link>
		<comments>http://andylaub.com/2005/11/28/settle/#comments</comments>
		<pubDate>Mon, 28 Nov 2005 17:12:26 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=174</guid>
		<description><![CDATA[<p>I&#8217;ve mentioned before that <a href="http://andylaub.com/2005/08/08/swatch/">I tend to have issues with color</a>.  On the other hand, there are some times when I&#8217;m working that a color scheme or I like happens to fall into place while I&#8217;m just screwing around.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve mentioned before that <a href="http://andylaub.com/2005/08/08/swatch/">I tend to have issues with color</a>.  On the other hand, there are some times when I&#8217;m working that a color scheme or I like happens to fall into place while I&#8217;m just screwing around.  Such is the case with those shown above, because now I&#8217;m thinking about keeping them.  The question is, do I continue to try to work them, or do I use them as is since I like them now?  I find this to be kind of the eternal paradox of graphic design.  Yes, I could go forth with the rough concept that happened to fall into place, but would I be slacking off by doing that or just working efficiently, or just lucky?  If I do proceed with that and finalize it, it almost feels like I&#8217;m taking the easy way out because I&#8217;m not painfully exerting myself and stretching my abilities to their limits.</p>
<p>This is when you have to start thinking about scale.  How important is this project, and what kind of lifespan is it going to have?  I could understand the weeks or months of struggle if you&#8217;re developing a new identity for, say, <a href="http://www.att.com/">AT&#038;T</a>.  On the other hand, if you&#8217;re working on a catalog with a lifespan of a month, chances are you&#8217;re not going to spend nearly as much time developing the look since it will be gone and forgotten before long.</p>
<p>Which brings me back to my dilemma.  In this case the colors and design in question are for a personal project which in a way adds another complication.  When I&#8217;m working on stuff for my actual real job it&#8217;s easier because of the aforementioned short lifespans, but also because there are others involved on the project so I don&#8217;t have to completely rely on myself for feedback.  There are certain times where I get to a point in a project and just can&#8217;t do anything else with it.  At this point it helps to see the marketeer in charge because I can start to refine it or add things I missed or remove things that are unnecessary, which means that whether I like it or not I have to continue to work until we are both (hopefully) satisfied.</p>
<p>Not so at home.  I could call it a day if I wanted to on this project and proceed to the next steps and stare at it and feel guilty about not having put more thought into it, or I could continue to waste time on trying to make it look better when I really like it right now.  Damned if I do, damned if I don&#8217;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/11/28/settle/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Protect</title>
		<link>http://andylaub.com/2005/11/02/protect/</link>
		<comments>http://andylaub.com/2005/11/02/protect/#comments</comments>
		<pubDate>Thu, 03 Nov 2005 04:55:07 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/11/02/protect/</guid>
		<description><![CDATA[<p>A surprisingly clear picture from the <a href="http://product.samsung.com/cgi-bin/nabc/product/b2c_product_detail.jsp?eUser=&#038;prod_id=VM-A680&#038;redirect=yes&#038;prod_path=Phones+and+Fax+Machines%2fWireless+Phones">phone</a> that goes along with a recent lunchtime discussion about Wal-Mart lobsters.</p>
<p>But speaking of protection, the thought has been nagging at me for some time now that I <em>really</em> should back up&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>A surprisingly clear picture from the <a href="http://product.samsung.com/cgi-bin/nabc/product/b2c_product_detail.jsp?eUser=&#038;prod_id=VM-A680&#038;redirect=yes&#038;prod_path=Phones+and+Fax+Machines%2fWireless+Phones">phone</a> that goes along with a recent lunchtime discussion about Wal-Mart lobsters.</p>
<p>But speaking of protection, the thought has been nagging at me for some time now that I <em>really</em> should back up my database somehow so if anything ever goes awry I can at least have a recent restore point.  I found <a href="http://www.skippy.net/blog/category/wordpress/plugins/wp-db-backup/">this one</a> at Skippy.net, which gives you a plethora of options for saving &#8211; you can have your backups saved to your server, emailed to you, or just downloaded straight to your hard drive.  </p>
<p>It gets even better.  If you are too lazy (like me) to make yourself back stuff up with some regularity, install <a href="http://www.skippy.net/blog/2005/10/09/wp-cron-14/">WP-Cron</a> and it will email you a nightly backup.  Plus, in addition to the standard WordPress tables, it&#8217;s also nice enough to let you remember anything else that might be in that database if you tell it to when setting it up.  You know, like ShortStat junk.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/11/02/protect/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Recycle</title>
		<link>http://andylaub.com/2005/10/13/recycle/</link>
		<comments>http://andylaub.com/2005/10/13/recycle/#comments</comments>
		<pubDate>Fri, 14 Oct 2005 01:19:08 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/10/13/recycle/</guid>
		<description><![CDATA[<p>Anyone with eyes will note that I&#8217;ve managed to pull yet another new refresh out of this site (<a href="http://andylaub.com/2005/09/22/black/">looks familiar, eh</a>).  I swear to God, CSS is both a gift and a curse to someone as perpetually dissatisfied with&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Anyone with eyes will note that I&#8217;ve managed to pull yet another new refresh out of this site (<a href="http://andylaub.com/2005/09/22/black/">looks familiar, eh</a>).  I swear to God, CSS is both a gift and a curse to someone as perpetually dissatisfied with their work as I am.</p>
<p>Literally the day after <a href="http://andylaub.com/2005/09/13/fresh/">the last update</a> I was already trying to figure out how it could be better.  I&#8217;ve worked around the issue that resulted in the background shifting as the browser window narrowed by assigning a background to the wrapper instead of the body.  This resulted in the problem of the background not extending the full length of the screen, but this new taller footer fixes it for all but the one-sentence slacker entries.</p>
<p>I mentioned before that I was considering moving to a different column structure.  As much as I want to, I cannot do five columns.  1050 pixels is simply to wide for anyone who&#8217;s not me.  The other natural option was 3 columns, but I don&#8217;t see that being a satisfactory solution at this point either.  So for now I stick with four columns and hope that I don&#8217;t need to redesign again for another, say, 3 months.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/10/13/recycle/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Kilo</title>
		<link>http://andylaub.com/2005/10/09/kilo/</link>
		<comments>http://andylaub.com/2005/10/09/kilo/#comments</comments>
		<pubDate>Mon, 10 Oct 2005 02:11:08 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/10/09/kilo/</guid>
		<description><![CDATA[<p>I have this nagging desire to widen the site to 1050 pixels.  That&#8217;s a lot.  I can&#8217;t do that.  I could take a column away and be at 630 pixels instead, but I don&#8217;t know that that&#8217;s the solution either.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I have this nagging desire to widen the site to 1050 pixels.  That&#8217;s a lot.  I can&#8217;t do that.  I could take a column away and be at 630 pixels instead, but I don&#8217;t know that that&#8217;s the solution either.  But what is?  <a href="http://www.subtraction.com/">Eight?</a>  No.  I guess I sit here trying to figure it out.</p>
<p>&hearts;</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/10/09/kilo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>es rever se</title>
		<link>http://andylaub.com/2005/10/04/reverse/</link>
		<comments>http://andylaub.com/2005/10/04/reverse/#comments</comments>
		<pubDate>Wed, 05 Oct 2005 04:07:26 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/10/04/reverse/</guid>
		<description><![CDATA[<p>More wallpaper (<a href="http://exchange.andylaub.com/et_c/wallpaper/reverse_1600.gif" target="_blank">sixteen</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/reverse_1280.gif" target="_blank">twelve</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/reverse_1024.gif" target="_blank">ten</a>).</p>
<p><a href="http://www.towerrecords.com/product.aspx?pfid=3298036">Paul McCartney</a> and <a href="http://www.danbrown.com/secrets/ambigram.html">Dan Brown&#8217;s <em>Angels &#038; Demons</em></a>, eat your heart out &#8211; I&#8217;m all up ins with the ambigrams.</p>
<p>Maybe not so much.  <a href="http://www.johnlangdon.net/">Check this dude.</a></p>
]]></description>
			<content:encoded><![CDATA[<p>More wallpaper (<a href="http://exchange.andylaub.com/et_c/wallpaper/reverse_1600.gif" target="_blank">sixteen</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/reverse_1280.gif" target="_blank">twelve</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/reverse_1024.gif" target="_blank">ten</a>).</p>
<p><a href="http://www.towerrecords.com/product.aspx?pfid=3298036">Paul McCartney</a> and <a href="http://www.danbrown.com/secrets/ambigram.html">Dan Brown&#8217;s <em>Angels &#038; Demons</em></a>, eat your heart out &#8211; I&#8217;m all up ins with the ambigrams.</p>
<p>Maybe not so much.  <a href="http://www.johnlangdon.net/">Check this dude.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/10/04/reverse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Century</title>
		<link>http://andylaub.com/2005/09/29/century/</link>
		<comments>http://andylaub.com/2005/09/29/century/#comments</comments>
		<pubDate>Fri, 30 Sep 2005 02:09:48 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/09/29/century/</guid>
		<description><![CDATA[<p>100 posts.  But which one is your favorite?</p>
]]></description>
			<content:encoded><![CDATA[<p>100 posts.  But which one is your favorite?</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/09/29/century/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Split</title>
		<link>http://andylaub.com/2005/09/25/split/</link>
		<comments>http://andylaub.com/2005/09/25/split/#comments</comments>
		<pubDate>Sun, 25 Sep 2005 23:21:45 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Media]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/09/25/split/</guid>
		<description><![CDATA[<p>An outing to an estate sale yesterday resulted in the purchase of four books, among them Michael Crichton&#8217;s <em>Prey</em>.  It was so good that I read through the entire thing yesterday and would not hesitate to recommend it to anyone.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>An outing to an estate sale yesterday resulted in the purchase of four books, among them Michael Crichton&#8217;s <em>Prey</em>.  It was so good that I read through the entire thing yesterday and would not hesitate to recommend it to anyone.</p>
<p>As I was starting it, though, I couldn&#8217;t help but wonder which Michael Crichton wrote this book.  It sounds like an odd question, but it&#8217;s funny because it seems as though he will write in one of two distinct styles.  The first, seen in books like <em>Disclosure</em>, <em>Airframe</em>, or <em>A Case of Need</em>, is one in which the scenarios are totally possible and grounded in real life.  They are things that could happen in our current society and probably do happen.  They are suspenseful but could easily sit in the non-fiction section with minimal changes.</p>
<p>The other Michael Crichton is something of a sci-fi writer, evidenced by books such as <em>Jurassic Park</em>, <em>Timeline</em>, or<em>Sphere</em>, all of which were made into movies.  These are much more fictional scenarios, at least at this point in time.  We haven&#8217;t yet cloned dinosaurs, traveled to a parallel universe, or discovered a spaceship from the future under the sea, but they are admittedly things that *could* be scientifically possible.  That&#8217;s where <em>Prey</em> fits in as well &#8211; I guess you&#8217;d classify that and all of these as near-future sci-fi movies, because unlike <em>I, Robot</em> or <em>Minority Report</em> the world is exactly as it is now and the only thing that prevents these events from unfolding is that we don&#8217;t have the specific technology.</p>
<p>What&#8217;s really impressive though, is that for me both of the Crichtons&#8217; styles are equally enjoyable.  As a matter of fact, it&#8217;s almost more interesting to see how the real-world scenarios unfold because they have to remain grounded in reality.</p>
<p>You&#8217;ll also notice at the right I&#8217;ve debuted the &#8220;Intake&#8221; section, listing recent media consumption.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/09/25/split/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fresh</title>
		<link>http://andylaub.com/2005/09/13/fresh/</link>
		<comments>http://andylaub.com/2005/09/13/fresh/#comments</comments>
		<pubDate>Wed, 14 Sep 2005 01:00:22 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/09/13/fresh/</guid>
		<description><![CDATA[<p>I guess I got a little bored and/or inspired at the same time, since the site is no longer the black &#038; white wonder.</p>
<p>What really blows me away with this whole thing is that the entire process took maybe&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I guess I got a little bored and/or inspired at the same time, since the site is no longer the black &#038; white wonder.</p>
<p>What really blows me away with this whole thing is that the entire process took maybe an hour.  It&#8217;s this kind of situation where CSS really shines, as the entire update required changes only to the CSS, some of the PHP (more for consistency than anything), and just two (<strong>two!</strong>) new images.</p>
<p>I am happy with this.  While I was (and still am) pleased with the structure at the initial launch, the look left something to be desired, as the black and white and horizontal lines came closer to <a href="http://www.subtraction.com/">Subtraction</a> than I was comfortable with.  The other thing that bothered me was the fact that the four main nav buttons were very similar in appearance to the section headings and therefore didn&#8217;t stand out as much as they should have.  </p>
<p>I was also unhappy with the lack of color, and wrote that off to wanting to keep the site &#8220;neutral.&#8221;  While the reasoning was good, it just didn&#8217;t feel like a site I could be totally happy with.  I am much more satisfied with this iteration, as it a) fits with the season and b) will hold me over at least until the <a href="http://www.cssreboot.com/">CSS Reboot</a> in November.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/09/13/fresh/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tenth</title>
		<link>http://andylaub.com/2005/09/03/tenth/</link>
		<comments>http://andylaub.com/2005/09/03/tenth/#comments</comments>
		<pubDate>Sat, 03 Sep 2005 23:20:33 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=82</guid>
		<description><![CDATA[<p>Just a brief note about some minor site updates.</p>
<p>I mentioned before that the archive page now has categories on it, but thanks to PDF&#8217;s new <a href="http://www.waytoocrowded.com/2005/09/01/first-plugin/">Wicked Categories</a> and <a href="http://www.waytoocrowded.com/2005/09/03/wordpress-plugin-2-total-posts/">Total Posts</a> plugins, the categories and the page itself&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Just a brief note about some minor site updates.</p>
<p>I mentioned before that the archive page now has categories on it, but thanks to PDF&#8217;s new <a href="http://www.waytoocrowded.com/2005/09/01/first-plugin/">Wicked Categories</a> and <a href="http://www.waytoocrowded.com/2005/09/03/wordpress-plugin-2-total-posts/">Total Posts</a> plugins, the categories and the page itself both have post counters.</p>
<p>If you&#8217;ve looked at any of my comments lately, you&#8217;ll also see that, thanks to <a href="http://dev.wp-plugins.org/wiki/AuthorHighlight">Author Highlight</a>, they now have their own style to separate them from the riff-raff.</p>
<p>Of course, thanks again goes to <a href="http://www.waytoocrowded.com/">PDF</a> for helping me make this junk work.  Maybe his new name should be &#8220;the Genius.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/09/03/tenth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Faster</title>
		<link>http://andylaub.com/2005/08/27/faster/</link>
		<comments>http://andylaub.com/2005/08/27/faster/#comments</comments>
		<pubDate>Sat, 27 Aug 2005 18:39:56 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/08/27/faster/</guid>
		<description><![CDATA[<p><a href="http://www.waytoocrowded.com/2005/08/27/mouse-shortcuts/">PDF&#8217;s post</a> got me thinking about some of the great little aesthetic and/or functional and/or usability details you find in software (both in applications and in operating systems) these days:</p>
<ul>
<li><strong>Screenshots:</strong> OS X has a couple of screenshot options.</li></ul><p>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.waytoocrowded.com/2005/08/27/mouse-shortcuts/">PDF&#8217;s post</a> got me thinking about some of the great little aesthetic and/or functional and/or usability details you find in software (both in applications and in operating systems) these days:</p>
<ul>
<li><strong>Screenshots:</strong> OS X has a couple of screenshot options.  Cmd+Opt+3 takes your full screen and Cmd+Opt+4 lets you choose a specific part of your screen.  These alone are perfectly well-known and very adequate, but if you press the space bar when after the latter command, it turns to a camera and you can screen shot a specific window.  Furthermore, because screenshots in OS X save as PDFs on your desktop by default, it will convert a full screenshot of a multi-display setup to separate pages for each display.</li>
<li><strong>Scroll Bars:</strong> I don&#8217;t generally look too closely at OS X&#8217;s scroll bars, but if you do look at them when scrolling, you&#8217;ll notice the background <em>does not move</em>; rather, the outline of the scrollbar functions as a sort of mask over the background.  A neat little touch as well as one that gives the effect of motion while scrolling</li>
<li><strong>Dragging:</strong> One of the things I&#8217;ve gotten incredibly used to with Mac OS is the concept of dragging your file onto things to make things happen.  Drag your file into the email to create an attachment.  Drag it along the bottom of the dock to see what apps will open it; let go to launch the file (and the application, if it&#8217;s not already open).  Works for one file, works for 10.  When I need to work on a Windows machine, this is the feature I miss the most.</li>
<li><strong>More Dragging:</strong> Guess what!  This works on the internerd too!  Drag a link to your desktop to make a bookmark.  Drag an image to your desktop to save it.  Drag a non-linked image to the address bar to view the image by itself.  Internet wonderland!</li>
<li><strong>Upside-down Scrolling:</strong> By far the best little detail I&#8217;ve ever seen is Illustrator 10&#8242;s upside-down scrolling.  Using a scroll mouse?  Try scrolling up &#8211; it goes down!  Scroll down &#8211; it goes up!  Why does it do this?  I don&#8217;t know!  This functionality is second only to the Tools palette disappearing every time I close Illustrator.  Hott!</li>
</ul>
<p>Speaking of functionality, you&#8217;ll find that the <a href="archive.php">archive</a> now has a category list.  Yee-haw!</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/08/27/faster/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Poles</title>
		<link>http://andylaub.com/2005/08/24/poles/</link>
		<comments>http://andylaub.com/2005/08/24/poles/#comments</comments>
		<pubDate>Wed, 24 Aug 2005 22:09:12 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=70</guid>
		<description><![CDATA[<p>Saturday morning we went to the big farmer&#8217;s market that happens every weekend during the summer.  It sits right next to the highway, so when you&#8217;re wandering down there you can look up and see things like this.</p>
<p>Part 3&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Saturday morning we went to the big farmer&#8217;s market that happens every weekend during the summer.  It sits right next to the highway, so when you&#8217;re wandering down there you can look up and see things like this.</p>
<p>Part 3 in a series of cars I&#8217;m looking at.  Today: the Volkswagens.</p>
<p>Reliability is a key factor in the cars I&#8217;m considering, so I don&#8217;t even know why these are on the list.  Is it because I&#8217;ve enjoyed every VW and Audi I&#8217;ve ever driven, even the slow as dirt New Beetle convertible?  Maybe.  Is it because they&#8217;re interiors follow the less is more philosophy (or used to, at least)?  Maybe.  All I know is that they seem to be darn good cars.  The Audis are unfortunately still financially unattainable for me, unless I settle for a first-year A4 with more miles than my car, and I don&#8217;t see that happening.  VWs, however, seem to be depreciating to a point where they may actually become affordable.  The Passat is the logical choice given that all of the engine and transmission combinations would be acceptable, and they&#8217;re available as wagons.  I mostly like the 1.8T with a manual, although I&#8217;ve only driven the Tiptronic versions which have been fine as well.  The wild card is the most uncommon of the 4th-gen Golfs.  That&#8217;s the four-door GLS with the same 1.8T motor as the Passat mated to the 5-speed manual.  I&#8217;m not even sure the car was made for more than a year, and that was 2001.  Yes, you can get that same drivetrain with more power in the GTI, but this has <em>four</em> doors!</p>
<p>So then the drawback, because there always is one, is the VW&#8217;s spotty reliability.  This is unfortunate because it is a major blemish on some otherwise very nice cars.  I&#8217;ve heard that this is because there&#8217;s a tendency to overcomplicate things internally, and it doesn&#8217;t really surprise me.  It&#8217;s just an unfortunate set of odds, given the safety and driving aids they like to fill their vehicles with.</p>
<p>Just briefly, props to <a href="http://www.waytoocrowded.com/">PDF</a> for figuring out that when you have any kind of dialogue box open in OSX (such as the &#8220;Don&#8217;t Save / Cancel / Save&#8221; menu when you close a file in Photoshop), you can use the keyboard to tell the box what option you want: pressing &#8216;D&#8217; for the above box would tell it not to save, &#8216;C&#8217; would cancel, etc.  I&#8217;ve only tried this on Photoshop but I wouldn&#8217;t expect it to work differently in any other app.  No more remorse at the non-functional tab key! </p>
<p>Is 1,050 pixels too wide for a site?</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/08/24/poles/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ghosting</title>
		<link>http://andylaub.com/2005/08/19/ghosting/</link>
		<comments>http://andylaub.com/2005/08/19/ghosting/#comments</comments>
		<pubDate>Fri, 19 Aug 2005 19:35:08 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/08/18/ghosting/</guid>
		<description><![CDATA[<p>By the time this has posted I&#8217;ll be well on my way to the Twin Cities.  My parents are taking a weekend there and we&#8217;re going to go meet up with them and then just hang out for the rest&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>By the time this has posted I&#8217;ll be well on my way to the Twin Cities.  My parents are taking a weekend there and we&#8217;re going to go meet up with them and then just hang out for the rest of the weekend.  Of course, I never leave for the Cities without a shopping list, and this trip is no exception:</p>
<ul>
<li><a href="http://www.guitarvision.com/mf/mf_frameset.htm">Drumsticks</a></li>
<li><a href="http://www.zappos.com/n/p/dp/2024123/c/14130.html">Some kind of pointy footwear</a></li>
<li>A car.  You know, like a Prelude.  Or a Del Sol.  Or an 850.  Or a Passat, 900, 9-3, Miata, etc etc etc.</li>
</ul>
<p>I&#8217;ll be back sometime on Sunday.  In the meantime I&#8217;ll have a couple ghost-posts set up so there is still some daily content.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/08/19/ghosting/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Soon</title>
		<link>http://andylaub.com/2005/08/16/soon/</link>
		<comments>http://andylaub.com/2005/08/16/soon/#comments</comments>
		<pubDate>Wed, 17 Aug 2005 02:44:44 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Et_C]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/08/16/soon/</guid>
		<description><![CDATA[<p>So it&#8217;s getting to be that time of year that students and teachers hate to think about while the rest of us working stiffs really could care less.  But September means another Festival of Arts (I have reservations about linking&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>So it&#8217;s getting to be that time of year that students and teachers hate to think about while the rest of us working stiffs really could care less.  But September means another Festival of Arts (I have reservations about linking to <a href="http://wausaufestivalofarts.org/">their site</a>; it&#8217;s just so awfully bad) which means more even more occupation for <a href="http://www.abegabor.com/">ABE</a>.</p>
<p>A new question that fall brings for this site is that of content &#8211; do I have to start showing fall-ish pictures?  Is there a grey zone where I can show both, or can I show an obviously summer picture in October?  Just wondering.</p>
<p><a href="http://www.waytoocrowded.com/">PDF</a> was confused by yesterday&#8217;s post because it didn&#8217;t involve any depth-of-field blur and wasn&#8217;t a macro shot, two things which are admittedly very prevalent on this site. I am not sure whether this example proves him right or wrong.</p>
<p>My <a href="http://andylaub.com/2005/08/11/freedom/">50th post</a> was 5 days ago.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/08/16/soon/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wallpaper</title>
		<link>http://andylaub.com/2005/08/06/wallpaper/</link>
		<comments>http://andylaub.com/2005/08/06/wallpaper/#comments</comments>
		<pubDate>Sun, 07 Aug 2005 03:41:47 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Et_C]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=51</guid>
		<description><![CDATA[<p>The kind for walls, not computers.</p>
<p>Well, maybe for computers: <a href="http://exchange.andylaub.com/et_c/wallpaper/birds_1600.jpg" target="_blank">1600</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/birds_1280.jpg" target="_blank">1280</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/birds_1024.jpg" target="_blank">1024</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p>The kind for walls, not computers.</p>
<p>Well, maybe for computers: <a href="http://exchange.andylaub.com/et_c/wallpaper/birds_1600.jpg" target="_blank">1600</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/birds_1280.jpg" target="_blank">1280</a>, <a href="http://exchange.andylaub.com/et_c/wallpaper/birds_1024.jpg" target="_blank">1024</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/08/06/wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crane</title>
		<link>http://andylaub.com/2005/07/19/crane/</link>
		<comments>http://andylaub.com/2005/07/19/crane/#comments</comments>
		<pubDate>Tue, 19 Jul 2005 05:59:19 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=28</guid>
		<description><![CDATA[<p>Last summer I needed a photo to use on my portfolio site, and went outside behind our building to the construction site for a hotel that was going up.  It was a brief photo session and I only ended up&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Last summer I needed a photo to use on my portfolio site, and went outside behind our building to the construction site for a hotel that was going up.  It was a brief photo session and I only ended up with one photo of this massive crane, but it was one I really liked, so here it is again.</p>
<p>Also, <a href="http://ted.tnttech.us/" target="_blank">look who else</a> is on <a href="http://www.wordpress.org/" target="_blank">WordPress</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/07/19/crane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Washinton</title>
		<link>http://andylaub.com/2005/07/15/washinton/</link>
		<comments>http://andylaub.com/2005/07/15/washinton/#comments</comments>
		<pubDate>Sat, 16 Jul 2005 04:05:25 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/07/16/washinton/</guid>
		<description><![CDATA[<p>I happened to have my camera with me on the walk to work this morning.</p>
<p>You&#8217;ll also notice the site has been overhauled.  Welcome to version 10.</p>
]]></description>
			<content:encoded><![CDATA[<p>I happened to have my camera with me on the walk to work this morning.</p>
<p>You&#8217;ll also notice the site has been overhauled.  Welcome to version 10.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/07/15/washinton/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Huh?</title>
		<link>http://andylaub.com/2005/07/14/huh/</link>
		<comments>http://andylaub.com/2005/07/14/huh/#comments</comments>
		<pubDate>Fri, 15 Jul 2005 03:37:20 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Et_C]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=23</guid>
		<description><![CDATA[<p>From a barrage of emails today:</p>
<p><strong>Me:</strong> did I ever show you <a href="http://web.archive.org/web/20031208194244/http://www.andylaub.com/" target="_blank">this</a>?  I think it was before your time.</p>
<p><strong><a href="http://www.waytoocrowded.com/" target="_blank">Paul</a>:</strong> that&#8217;s fun</p>
<p>A: yes, pencils and internet go hand in hand.</p>
<p>P: I&#8217;ve seen some really dope&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>From a barrage of emails today:</p>
<p><strong>Me:</strong> did I ever show you <a href="http://web.archive.org/web/20031208194244/http://www.andylaub.com/" target="_blank">this</a>?  I think it was before your time.</p>
<p><strong><a href="http://www.waytoocrowded.com/" target="_blank">Paul</a>:</strong> that&#8217;s fun</p>
<p>A: yes, pencils and internet go hand in hand.</p>
<p>P: I&#8217;ve seen some really dope stuff using pencils on the internet. Or maybe it just seemed dope because it wasn&#8217;t pixel perfect boxes.</p>
<p>A: is mine dope? how about pencils on the new site?</p>
<p>P: looks dope. exectution of course not so dope. but that was a long time ago&#8230;</p>
<p>A: That would&#8217;ve been difficult to execute with css.  I think.</p>
<p><em>And here&#8217;s where it turns on us&#8230;</em></p>
<p>P: Nothing is difficult with css. Like standing on your hands for instance.  Without CSS it is really hard. But when using CSS, no problem.</p>
<p>A: I&#8217;m not even sure that&#8217;s a valid argument &#8211; -</p>
<p>P: I&#8217;m not sure that&#8217;s a valid accusation.</p>
<p>A: I don&#8217;t think it was an accusation so much as a fact.</p>
<p>P: You don&#8217;t know.</p>
<p>A: No, I do.</p>
<p>P: Did your mom tell you to say that?</p>
<p>And unfortunately, that&#8217;s where it ends.  I think our brains were so dead after that that neither of us did any work for the next 6 hours.  That is a lie.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/07/14/huh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tiro</title>
		<link>http://andylaub.com/2005/07/14/tiro/</link>
		<comments>http://andylaub.com/2005/07/14/tiro/#comments</comments>
		<pubDate>Thu, 14 Jul 2005 05:05:18 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=22</guid>
		<description><![CDATA[<p>I.  Like.  <a href="http://www.puma.com/" target="_blank">Puma</a>.</p>
<p>Also, thanks to the concentrated mass of wisdom that is <a href="http://www.waytoocrowded.com/" target="_blank">Paul</a> the site is starting to look more finalized.</p>
]]></description>
			<content:encoded><![CDATA[<p>I.  Like.  <a href="http://www.puma.com/" target="_blank">Puma</a>.</p>
<p>Also, thanks to the concentrated mass of wisdom that is <a href="http://www.waytoocrowded.com/" target="_blank">Paul</a> the site is starting to look more finalized.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/07/14/tiro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Del.icio.us</title>
		<link>http://andylaub.com/2005/07/12/delicious/</link>
		<comments>http://andylaub.com/2005/07/12/delicious/#comments</comments>
		<pubDate>Tue, 12 Jul 2005 05:05:24 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=19</guid>
		<description><![CDATA[You'd think I was talking about food except for those crazy periods.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing a bit with <a href="http://del.icio.us/matches" target="_blank">del.icio.us</a>.  I&#8217;ve kind of got an RSS reader feeder going but nothing final.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/07/12/delicious/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chicken</title>
		<link>http://andylaub.com/2005/06/30/chicken/</link>
		<comments>http://andylaub.com/2005/06/30/chicken/#comments</comments>
		<pubDate>Thu, 30 Jun 2005 06:00:10 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Media]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=9</guid>
		<description><![CDATA[The first of many completely random and incoherent posts.]]></description>
			<content:encoded><![CDATA[<p>Both of the &#8220;chicken fight&#8221; episodes of Family Guy were on <a href="http://www.adultswim.com/" target="_blank">Adult Swim</a>.  Wicked-awesome!</p>
<p><a href="http://www.waytoocrowded.com/2005/06/28/way-too-fun/" target="_blank">Paul shouted out.</a>  I&#8217;m shouting back.</p>
<p><a href="http://www.homestarrunner.com/main19.html" target="_blank">What is up, my dawg?</a></p>
<p><strong>EDIT:</strong> <a href="http://old.andylaub.com/" target="_blank">andylaub.com 8.5 can be found here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/06/30/chicken/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scratch</title>
		<link>http://andylaub.com/2005/06/26/scratch/</link>
		<comments>http://andylaub.com/2005/06/26/scratch/#comments</comments>
		<pubDate>Sun, 26 Jun 2005 22:32:04 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=2</guid>
		<description><![CDATA[This is my first post!  To celebrate I took a picture of myself.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s to the beginning of a fresh andylaub.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/06/26/scratch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
