<?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; Internerd</title>
	<atom:link href="http://andylaub.com/category/internerd/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>Teenagers in Diapers</title>
		<link>http://andylaub.com/2010/06/01/teenagers-in-diapers/</link>
		<comments>http://andylaub.com/2010/06/01/teenagers-in-diapers/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 21:19:40 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=2396</guid>
		<description><![CDATA[Rewarding bad behavior begets more bad behavior.]]></description>
			<content:encoded><![CDATA[<p>One of my least favorite aspects of the process of <a href="http://hire.andylaub.com/">makin&#8217; websites</a> is cross-browser testing. It&#8217;s not that I feel it&#8217;s unimportant; nor does it really cause me too much stress. But the mere fact that it is a <em>thing</em> that has to happen can be cause for frustration. Fortunately, it&#8217;s 2010 and for the most part we can be content to worry about which browsers support which bleeding edge features. Unfortunately, it&#8217;s 2010 and we still have to test in Internet Explorer 6.</p>
<p>I&#8217;ll be honest and say that of all the headaches I&#8217;ve dealt with over the past few years, IE6 has decreasingly been the cause of them. I think more people are starting to come around to the theory I posted on <a href="http://twitter.com/andylaub/status/15183579109">Twitter</a> this morning:</p>
<blockquote><p>IE6 users either A) know their browser sucks and expect a degraded experience (corporate) or B) don&#8217;t know/don&#8217;t care (grandparents).
</p></blockquote>
<p><strong>Everybody</strong> knows this is true. Any self-respecting nerd wouldn&#8217;t be caught dead using IE6 &#8211; we&#8217;re talking about software that:</p>
<ol>
<li>is nearly 10 years old.</li>
<li>was never that great to begin with.</li>
<li>stopped being supported 2 versions of Windows ago.</li>
</ol>
<p>All of which begs the question: why are so many people still using it? The obvious answer is <strong>because they can</strong>. Massive corporations insist that their websites continue to be IE6-friendly, which means there&#8217;s no incentive for the user (or the user&#8217;s IT department) to upgrade. And since they don&#8217;t upgrade, then massive corporations insist that their websites continue to be IE6-friendly.</p>
<p>Which is totally insane; the burden then falls on the developers to build websites that somehow feature the latest technology <em>and</em> run in a browser that was built before most of that technology was invented?  I mean, we can do it, but we don&#8217;t like doing it because it encourages bad habits. </p>
<p>As developers we can only explain all of this to the client in the name of enlightenment, but If anyone can pull the plug on IE6 it&#8217;s the enterprises. Google, bless them, <a href="http://googleenterprise.blogspot.com/2010/01/modern-browsers-for-modern-applications.html">is leading by example</a> and we can only hope others take notice. We&#8217;ve got to get the IE6 users potty-trained onto better browsers instead of coddling them into adulthood while they&#8217;re still shitting their pants.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2010/06/01/teenagers-in-diapers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Floodgate</title>
		<link>http://andylaub.com/2010/05/28/floodgate/</link>
		<comments>http://andylaub.com/2010/05/28/floodgate/#comments</comments>
		<pubDate>Fri, 28 May 2010 15:42:04 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Cycling]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Theatre]]></category>
		<category><![CDATA[Borderlands]]></category>
		<category><![CDATA[drama]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[hire.andylaub.com]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=2379</guid>
		<description><![CDATA[When life gives you lemons, and all that.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m just going to put this out there: April of 2010 will go down in history as one of the more tumultuous months I&#8217;ve basically ever had. A lot of things happened very differently than I would&#8217;ve liked and there were a number of times where I was contemplating what would&#8217;ve amounted to a total reset on my life, even up until this week.</p>
<p>Thankfully, I think my coping mechanism has finally caught up and kicked in, and I&#8217;m feeling substantially better than I have been for the past few weeks, and I&#8217;m able to look at April as a month of &#8220;silver linings&#8221; versus simply being bad.</p>
<p>The biggest news is that I&#8217;m now officially self-employed. <a href="http://hire.andylaub.com/" title="JQuery!"><strong>{hire}</strong></a> became my full-time pursuit at the end of April, and has been going about as smoothly as you can expect a sudden transition to freelance work to go. I&#8217;m very excited about both existing and potential partnerships, and also for the freedom allowed by my new schedule. Suffice it to say, it&#8217;s both the most and least stressful job I&#8217;ve ever had.</p>
<p>As a result, my daily routine has changed dramatically, as have my priorities. The awesome weather has made running every morning a joy, as has the fact that I now have the time to run every morning (instead of afternoon or evening). I haven&#8217;t been on the bike nearly as much, mostly because my commute now consists of walking up the stairs, but I&#8217;m trying to fit a longer ride in here and there as a break (ha!) from running.</p>
<p>Maybe it&#8217;s because it&#8217;s summer, but I&#8217;m also not gaming much right now. <em>The Saboteur</em> and <em>God of War II</em> are both sitting, unfinished. The only console game I&#8217;ve really enjoyed lately is <em>Borderlands</em>, and that&#8217;s because it&#8217;s a social activity. Instead, I&#8217;ve been reading a lot more; something I hope continues even as I slowly run out of books around the house.</p>
<p>Finally, I&#8217;ve decided that it&#8217;s time to take a break from theatre. I&#8217;ve had a lot of great opportunities over the last few years, but more recently it&#8217;s been taking its toll on my mind, my self esteem, and my schedule. Now is a good time for a hiatus, especially considering the aforementioned career change.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2010/05/28/floodgate/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>Liveblogging this Russian cartoon on Youtube</title>
		<link>http://andylaub.com/2009/03/24/liveblogging-this-russian-cartoon-on-youtube/</link>
		<comments>http://andylaub.com/2009/03/24/liveblogging-this-russian-cartoon-on-youtube/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 01:41:41 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[cartoon]]></category>
		<category><![CDATA[liveblogging]]></category>
		<category><![CDATA[Russia]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1681</guid>
		<description><![CDATA[I didn't know what was going on here before, and I still don't.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=gpH0Rrf8sKE">This</a> Russian cartoon. On <a href="http://www.youtube.com/">Youtube</a>:</p>
<p><strong>0:00</strong> &#8211; Fire.<br />
<strong>0:05</strong> &#8211; Cat! Off to a good start.<br />
<strong>0:14</strong> &#8211; That kid has awesome painting skills.<br />
<strong>0:17</strong> &#8211; While the dog seems to be incredibly competent at kneading, I&#8217;m still not sure this is the best staffing situation.<br />
<strong>0:22</strong> &#8211; Okay, I don&#8217;t know any humans who can make dough look like a bone OR a string of sausages. I retract my previous statement.<br />
<strong>0:25</strong> &#8211; And some dude fanning himself with his hat.<br />
<strong>0:26</strong> &#8211; And a dude with a pipe.<br />
<strong>0:28</strong> &#8211; &#8230;and a screwdriver.<br />
<strong>0:31</strong> &#8211; Wow, seriously. That dog is impressive.<br />
<strong>0:35</strong> &#8211; Fire.<br />
<strong>0:53</strong> &#8211; The problem with this television is clearly spiderwebs. But it&#8217;s not enough of a problem to actually <em>fix</em>, I guess.<br />
<strong>0:56</strong> &#8211; The cat looks kind of flirty now.<br />
<strong>1:11</strong> &#8211; Flirting = success! Maybe?<br />
<strong>1:12</strong> &#8211; Okay, definitely.<br />
<strong>1:14</strong> &#8211; Those curtains are magical!<br />
<strong>1:22</strong> &#8211; A screwdriver is still not the best tool for not fixing spiderwebs.<br />
<strong>1:32</strong> &#8211; You made a bone? What happened to the dough?<br />
<strong>1:49</strong> &#8211; It&#8217;s just Snow-freaking-White up in here. But at least the spiderweb problem has been resolved?<br />
<strong>1:54</strong> &#8211; Something awesome obviously just happened.<br />
<strong>2:05</strong> &#8211; I&#8217;m not convinced the kid is speaking a real language. It&#8217;s just consonants. Also, does he have pupils?<br />
<strong>2:07</strong> &#8211; Ooooh, it&#8217;s Christmas.<br />
<strong>2:16</strong> &#8211; And we&#8217;re outdoors.<br />
<strong>2:19</strong> &#8211; I&#8217;m thinking the money spent on the zoom lens could&#8217;ve been better used on a coat or something for that dog.<br />
<strong>2:22</strong> &#8211; Wait &#8211; the camera has a rifle grip? What?<br />
<strong>2:26</strong> &#8211; &#8220;If he shoots us, I want you to know that you&#8217;re my favorite. Also I&#8217;m drunk right now.&#8221;<br />
<strong>2:32</strong> &#8211; &#8220;I&#8217;ve had better.&#8221;<br />
<strong>2:35</strong> &#8211; &#8220;Oh.&#8221;<br />
<strong>2:40</strong> &#8211; That&#8217;s just not a camera I would be comfortable standing in front of. Or near.<br />
<strong>2:41</strong> &#8211; Like that guy. I&#8217;m with him.<br />
<strong>2:47</strong> &#8211; &#8220;Great! Dinner!&#8221;<br />
<strong>2:49</strong> &#8211; Oh.<br />
<strong>2:51</strong> &#8211; Beardy is talking about moose. Or ghosts. Ghost moose?<br />
<strong>3:01</strong> &#8211; Wouldn&#8217;t it be better for them to just go inside and watch <em>Mustachioed Pianist Variety Hour</em>?<br />
<strong>3:02</strong> &#8211; &#8220;Whose mustache is better? Be honest.&#8221;<br />
<strong>3:06</strong> &#8211; &#8220;Eh, you&#8217;re both equally queer.&#8221;<br />
<strong>3:07</strong> &#8211; Cat and boy are both astounded by the forwardness of such a statement.<br />
<strong>3:12</strong> &#8211; &#8220;Ohhh snap!&#8221;<br />
<strong>3:14</strong> &#8211; That lady is certainly&#8230; geometric.<br />
<strong>3:20</strong> &#8211; I don&#8217;t think that&#8217;s music.<br />
<strong>3:28</strong> &#8211; Here comes a lady with skis. Is this an Old Navy ad?<br />
<strong>3:35</strong> &#8211; Mr. Mustache clearly doesn&#8217;t understand how this technology works.<br />
<strong>3:39</strong> &#8211; On second thought &#8211; <a href="http://goddess-i-am.com/wp-content/uploads/2009/02/michelin-man.jpg" class="zoom">Michelin</a>?<br />
<strong>3:46</strong> &#8211; She sounds like pretty much every Russian lady I&#8217;ve ever heard.<br />
<strong>3:56</strong> &#8211; Uh oh &#8211; something magical just happened, as it&#8217;s now time for the traditional Christmas Snowflake Treatment&trade;.<br />
<strong>4:00</strong> &#8211; Aaaand that&#8217;s a wrap. I think we all learned a valuable lesson here.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2009/03/24/liveblogging-this-russian-cartoon-on-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drive-by Comments</title>
		<link>http://andylaub.com/2009/03/02/drive-by-comments/</link>
		<comments>http://andylaub.com/2009/03/02/drive-by-comments/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 02:39:01 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[bias]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[fanboyism]]></category>
		<category><![CDATA[PS3]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1621</guid>
		<description><![CDATA[Apparently owning a video game console is like being in a gang. Represent?]]></description>
			<content:encoded><![CDATA[<p>I like the concept of comments on blogs.  While I don&#8217;t see too many comments here, I like that the few people that follow my bouts of incoherence have the option for feedback. Of course the occasional spam seeps through, but Akismet is pretty effective in catching that sort of thing.</p>
<p>But I woke up this morning to <a href="http://andylaub.com/2008/11/23/a-rambling-look-at-nxe-vs-xmb/#comment-11467" title="A rambling look at NXE vs XMB">a comment</a> on a post I wrote months ago about video games, in which the commentor basically just called me biased and said I was a fanboy.  While the bias accusation just leaves me stupefied (in terms of bias, that particular article ranked pretty low &#8211; you may be more interested in <a href="http://andylaub.com/2006/11/11/done-with-sony/" title="Done With Sony">this one</a> or <a href="http://andylaub.com/2007/12/11/trigger-happy/" title="Trigger Happy">this one</a> or <a href="http://andylaub.com/2008/12/23/underwhelming/" title="Underwhelming">this one</a>) but as a whole I&#8217;m not sure how I&#8217;m even supposed to react to a comment like this.  I could write a real rebuttal or offer a slightly less mature response (<em>the PS3 sucks and so does your face</em>), but both of those would be based on the assumption the commentor is going to show up again, which seems unlikely &#8211; they took their shots, why would they come back?</p>
<p>So the only option left is to ignore it, which just irritates me. I just can&#8217;t figure out what compels someone to Google &#8220;<a href="http://www.google.com/search?q=ms+nxe+vs+ps3+xmb">MS NXE vs PS3 XMB</a>&#8221; and leave a half-baked comment on the first site they find about how M$ sucks and Sony r000lz. It&#8217;s sad, because I love discussing this sort of thing and would be totally willing to have this conversation with a total stranger regardless of bias, yet these are the sort of people who share this hobby.</p>
<p>Oh look &#8211; option four is <em>whine about it</em>. I can do that!</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2009/03/02/drive-by-comments/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hu-lose</title>
		<link>http://andylaub.com/2009/02/19/1591/</link>
		<comments>http://andylaub.com/2009/02/19/1591/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 17:17:53 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[boxee]]></category>
		<category><![CDATA[Hulu]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1591</guid>
		<description><![CDATA[God, content providers are dumb.]]></description>
			<content:encoded><![CDATA[<p>It seems that content providers have decided that <a href="http://origin-blog.hulu.com/2009/2/18/doing-hard-things">Hulu will no longer run on boxee</a>. What I&#8217;ve read suggests that they would prefer the revenue from actual TV ads versus the revenue generated by watching Hulu on a television.</p>
<p>Except the content providers always seem to ignore that it&#8217;s not black and white. My viewing choices aren&#8217;t limited to &#8220;watch it on Hulu&#8221; or &#8220;watch it on live TV&#8221;.  They also include &#8220;don&#8217;t watch it at all&#8221;, &#8220;torrent it&#8221;, or &#8220;watch it on TiVo and skip the ads&#8221;.  So are those zero-revenue choices (admittedly I&#8217;m not sure about the TiVo one) really preferable to the revenue from Hulu&#8217;s ads?</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2009/02/19/1591/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>My favorite iPhone apps (for now)</title>
		<link>http://andylaub.com/2008/11/28/my-favorite-iphone-apps-for-now/</link>
		<comments>http://andylaub.com/2008/11/28/my-favorite-iphone-apps-for-now/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 16:29:25 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[AIM]]></category>
		<category><![CDATA[App Store]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Calendar]]></category>
		<category><![CDATA[cell phone]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[lists]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=918</guid>
		<description><![CDATA[Here is some stuff I'm thankful for.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve the iPhone from the first time I used one last year.  The idea of having the &#8220;real&#8221; internet and email that didn&#8217;t feel like you were reading it on a phone really appealed to me.  It truly felt more like a pocket-sized Mac than a typical phone.  Since then there&#8217;s only been improvement &#8211; 3G, GPS, and of course, the App Store.  In the past two weeks I&#8217;ve downloaded at least a dozen different applications, some good, and some not so good.  Instead of reviewing them all, which would be remarkably boring, I want to just share the applications (included and downloaded) that I most appreciate.  Disclaimer: this may be just as boring.  Also I have not counted the &#8220;Phone&#8221; and &#8220;Text&#8221; functions as apps, since they are core functions of any modern mobile phone.</p>
<h6><abbr title="AOL Instant Messenger">AIM</abbr> (Free)</h6>
<p>Having <em>any</em> instant messaging app at all is nice, as it doesn&#8217;t use up my allotted text messages.  And at least a majority of my contacts are on AIM to begin with.  But here&#8217;s hoping for Adium mobile.<br />
<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=281704574&#038;mt=8"><strong>Download &rarr;</strong></a></p>
<h6>Calendar (Included)</h6>
<p>I was a little hung up on how I was going to handle calendars on the iPhone.  The built-in calendar works well, but I&#8217;ve been using Google Calendar now for about a year and really appreciate its across-the-board accessibility.  The problem is that Google Calendar on the iPhone <strong>SUCKS</strong> and is extremely limited in its functionality.  Then I stumbled on <a href="http://www.ianfernando.com/2008/sync-google-calendar-with-iphone-3g/">this article</a> pointing to a site called NuevaSync, which basically keeps your gCal in step with your iCal.  Phenomenal &#8211; it&#8217;s the best of both worlds.</p>
<h6>Mail (Included)</h6>
<p>It&#8217;s email.  Having email on a phone is nice. </p>
<h6>NetNewsWire (Free)</h6>
<p>I&#8217;ll be honest &#8211; I&#8217;ve never been much of an RSS user.  But on a mobile platform it makes so much more sense than accessing sites one by one.  NNW has been great in this regard.  The only problem is that I haven&#8217;t seen a way to add feeds through the app itself &#8211; you have to manage them through NewsGator&#8217;s web interface. Not a big deal if you&#8217;re adding feeds at home, but if you&#8217;re out and about and only have Edge, then have fun hoping the page will load.  Once it&#8217;s done though, it&#8217;s fantastic.<br />
<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284881860&#038;mt=8"><strong>Download &rarr;</strong></a></p>
<h6>Safari (Included)</h6>
<p>It&#8217;s the internet.  Seriously, I&#8217;m not sure what else to say about it, but I love the internet and therefore I love Safari.  Duh.</p>
<h6><abbr ="The Weather Channel">TWC</abbr> (Free)</h6>
<p>It&#8217;s The Weather Channel, on the iPhone.  Much nicer interface than their website, and loads faster too. Great for checking out the forecast as I&#8217;m getting out of bed.<br />
<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=295646461&#038;mt=8"><strong>Download &rarr;</strong></a></p>
<h6>Twitterriffic (Free)</h6>
<p>A nice free Twitter app for the iPhone.  Ad-supported (by <a href="http://decknetwork.net/">The Deck</a>), but it works extremely well for the cost of zero dollars.<br />
<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284540316&#038;mt=8"><strong>Download &rarr;</strong></a></p>
<h6>WhitePages Mobile (Free)</h6>
<p>Why in the world would you <em>not</em> want a built-in phonebook on your phone?<br />
<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=287734809&#038;mt=8"><strong>Download &rarr;</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2008/11/28/my-favorite-iphone-apps-for-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Renaissance</title>
		<link>http://andylaub.com/2008/07/25/renaissance/</link>
		<comments>http://andylaub.com/2008/07/25/renaissance/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 20:40:52 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Plurk]]></category>
		<category><![CDATA[Pownce]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[Tumblr]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Virb]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web 3.0]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://andylaub.com/2008/07/25/renaissance/</guid>
		<description><![CDATA[I just don't need to know  a lot of things.]]></description>
			<content:encoded><![CDATA[<p>Lately I&#8217;ve been thinking long and hard about the internet.  It&#8217;s amazing to be living in an era when knowledge is essentially instantly accessible.</p>
<p>But at the same time, I&#8217;ve been thinking about lines that have to be drawn when it comes to the types of knowledge and content that are available.  It&#8217;s the golden age of Web 2.0, where a typical person is probably subscribe to at least 2 or more social websites.  I know that <a href="http://andylaub.com/2007/11/02/bird-is-the-word/" title="Six.">holds true for me</a>.</p>
<p>And there are so many of them. And a lot of them are good and interesting and have neat technology behind them.  But I&#8217;m reaching a point where it&#8217;s all just overload.  Dino and I were talking yesterday and he said that he&#8217;s been observing an exodus of sorts from Twitter to Plurk.  Great.  </p>
<p>I&#8217;ve been trying hard to only subscribe to a service when I feel it can genuinely be a benefit to me.  Flickr is a no-brainer; it&#8217;s the best in the biz when it comes to photo sharing.  Facebook is excellent for shooting a quick note or comment to somebody, since a huge percentage of my social circle resides there.  LinkedIn seemed like a good idea at the time, but I really haven&#8217;t reaped any benefits from it.  Twitter, for what it is, is decent.  <a href="http://andylaub.com/2008/07/23/782/">When it works.</a></p>
<p>The services that I&#8217;ve given my attention to have typically been of the more mature, widely-used variety.  Call it peer pressure, but why use a social service that <a href="http://www.virb.com/" title="So pretty, so useless.">none of your friends are using</a>?</p>
<p>But when I started using WordPress three years ago, blogging was the standard fare.  The question wasn&#8217;t &#8220;do I want a blog?&#8221;; it was &#8220;which blogging software do I want?&#8221;.  Now with services like Plurk, Pownce, and Tumblr it&#8217;s not the de facto choice any more.  So then what should I do?  If nobody reads my writing on andylaub.com, how much do I care? Should I go somewhere else? Do I <em>want</em> to go somewhere else?</p>
<p>And that&#8217;s where Web 3.0 comes in.  I predict that very shortly, people are going to get tired of all this sharing.  Tired of signing up to the service of the month, finding people they know, and then abandoning it when something new (notice I didn&#8217;t say &#8220;better&#8221;) comes along.  Tired of reporting on every little experience they have and calling it &#8220;content&#8221;.  I&#8217;ll wager that we&#8217;ve all had the feeling &#8211; that little, niggling impulse that says &#8220;Record this! Photograph this! Twitter this!&#8221;  And that twinge of guilt when you opt not to do so.</p>
<p>I guess it&#8217;s because we want to acquire a sort of tangible catalog of experiences and not rely strictly on memories.  I respect that.  But if you&#8217;re too busy documenting something for posterity&#8217;s sake to actually <em>experience</em> it, that&#8217;s just crazy.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2008/07/25/renaissance/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>[RE] UPS Tracking Number 4998815759</title>
		<link>http://andylaub.com/2008/07/23/re-ups-tracking-number-4998815759/</link>
		<comments>http://andylaub.com/2008/07/23/re-ups-tracking-number-4998815759/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 03:08:32 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[scams]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[UPS]]></category>

		<guid isPermaLink="false">http://andylaub.com/2008/07/23/re-ups-tracking-number-4998815759/</guid>
		<description><![CDATA[Try harder.]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>Unfortunately we were not able to deliver postal package you sent on July the 1st in time because the recipient&#8217;s address is not correct.<br />
Please print out the invoice copy attached and collect the package at our office</p>
<p>Your UPS</p>
<p>[Attachment: UPS_INVOICE_187271.zip]</p>
</blockquote>
<p>Talk about shooting for the lowest common denominator.  If you can&#8217;t figure out this is spam even before seeing that it&#8217;s from <strong>teo@qec.net.au</strong>, then you don&#8217;t belong on the internerd.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2008/07/23/re-ups-tracking-number-4998815759/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The cheese is a lie</title>
		<link>http://andylaub.com/2008/04/01/the-cheese-is-a-lie/</link>
		<comments>http://andylaub.com/2008/04/01/the-cheese-is-a-lie/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 23:33:11 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Et_C]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://andylaub.com/2008/04/01/its-a-metaphor-i-think/</guid>
		<description><![CDATA[It's a metaphor. I think.]]></description>
			<content:encoded><![CDATA[<p>The internet is a broken mousetrap.</p>
<p>We are the mice. Content is the cheese. Or maybe the desire to give our feedback on content is the cheese.</p>
<p>And just like mice, we often pursue that cheese without all the information and with a disregard for the repercussions.</p>
<p>Just one thing: mice learn.  What if somebody fixes the mousetrap?</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2008/04/01/the-cheese-is-a-lie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Serious Business</title>
		<link>http://andylaub.com/2008/03/07/serious-business/</link>
		<comments>http://andylaub.com/2008/03/07/serious-business/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 21:25:22 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://andylaub.com/2008/03/07/serious-business/</guid>
		<description><![CDATA[It's so hard to be serious on the internerd.  Why bother?]]></description>
			<content:encoded><![CDATA[<p>The experts say that the internet is serious business.  I&#8217;m inclined to probably agree with them.  Well, at least the business part.  I mean, anything that makes money is probably a business by definition, so no argument there.  Serious, though&#8230; that depends.  When I&#8217;m working, of course.  Work is serious. Mostly.</p>
<p>But when I sit down and start to write a post here, I just don&#8217;t feel like being serious anymore.  I tried.  For a long time.  And that worries me, because this blog reflects who I am as a person, and somebody wondering if I&#8217;m &#8220;hire-able&#8221; is likely to be turned off by ridiculous content.  Or will they?  Honestly, <strike>blogs</strike> websites that take themselves to seriously are generally boring.  That&#8217;s fine if you&#8217;re a bank or the gooberment but not if you want your site to be enjoyable.</p>
<p>I don&#8217;t really know or remember where this was meant to go.  I saved a line as a draft yesterday as a reminder, but apparently that was not enough to inspire anything vaguely coherent. </p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2008/03/07/serious-business/feed/</wfw:commentRss>
		<slash:comments>1</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>Socialite</title>
		<link>http://andylaub.com/2007/08/25/socialite/</link>
		<comments>http://andylaub.com/2007/08/25/socialite/#comments</comments>
		<pubDate>Sun, 26 Aug 2007 01:22:29 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://andylaub.com/2007/08/25/socialite/</guid>
		<description><![CDATA[<p>I briefly mentioned before my <a href="http://andylaub.com/2007/02/01/yourspace/">general displeasure with MySpace</a> in spite of its underlying usefulness. I was hesitant to just delete my page because it was still somewhat useful if I was looking for somebody or vice versa.  But&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I briefly mentioned before my <a href="http://andylaub.com/2007/02/01/yourspace/">general displeasure with MySpace</a> in spite of its underlying usefulness. I was hesitant to just delete my page because it was still somewhat useful if I was looking for somebody or vice versa.  But recently I succumbed to another temptation that allowed me to put the final nail in the MySpace coffin: <a href="http://www.facebook.com/">Facebook</a>.</p>
<p>Right now Facebook doesn&#8217;t seem to be quite as widespread within the general populace as Myspace, or at least their circles don&#8217;t overlap completely.  That said, Facebook wins out for me for a few reasons:</p>
<ul>
<li>Most people use real names, and real photos</li>
<li>Widget-oriented customization means you can have all sorts of junk on your page but it still doesn&#8217;t end up being completely ugly</li>
<li>A lot of functions are handled with AJAX, so like Flickr, you&#8217;re jumping around a lot less, which in turn feels faster.</li>
<li>Seriously, not ugly.</li>
<li>I have yet to see spam.</li>
</ul>
<p>On a related note, those in the Wausau area may have noticed the recent shuttering of <a href="http://www.wausaublog.com/">WausauBlog</a>, something that struck me as rather depressing.  It&#8217;s fortunate then, that I&#8217;ve gotten together with <a href="http://www.superstarch.com/">somebody</a> interested in &#8220;continuing the legacy&#8221; and so we&#8217;ve started to work on a spiritual successor to WausauBlog.  We&#8217;re calling it <a href="http://www.citizenwausau.com/">Citizen Wausau</a>, and while there will be similar content (it will have some of the same contributors), we&#8217;re hoping to work in some new features as well.</p>
<p>I think something snapped in me when I started to collaborate on Citizen Wausau.  Part of it was a desire to collaborate on more projects with more people, and part of it was being able to work on a project that I was excited about.  With that said, <a href="http://hire.andylaub.com/"><strong>I am now officially for hire</strong></a>.  Please keep me in mind of you know of anyone who needs a website, or if you want to work together.  For now I&#8217;m still working at <a href="http://www.digi-dial.com/">Digital Dialogue</a>, and I&#8217;m sure I&#8217;ll continue to work <em>with</em> them, just not necessarily <em>for</em> them.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2007/08/25/socialite/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Totally Useless</title>
		<link>http://andylaub.com/2007/05/19/totally-useless/</link>
		<comments>http://andylaub.com/2007/05/19/totally-useless/#comments</comments>
		<pubDate>Sun, 20 May 2007 02:38:37 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>

		<guid isPermaLink="false">http://andylaub.com/2007/05/19/totally-useless/</guid>
		<description><![CDATA[Beyond comment spam.  Way beyond.]]></description>
			<content:encoded><![CDATA[<p>Comment spam has been around for awhile and is a pretty common experience for any blog admin.  Thankfully I have <a href="http://akismet.com/" title="No, I don't remember the days before spam; it has always been.  But thanks for filtering it for me.">Akismet</a> to help me out, which is why I was surprised to see this email:</p>
<blockquote><p>
To: [my comment address]<br />
From: lngdifh@mail.com<br />
Subject: <span class="high">[andylaub.com] Comment:</span></p>
<p>llqdivj wrote:<br />
&lt;a href=&#8221;http://pharmaduk.xshorturl.com/levitra.html&#8221;>buy levitra&lt;/a>&lt;a href=&#8221;<br />
http://pharmaduk.xshorturl.com/levitra.html &#8220;>buy<br />
levitra&lt;/a>[url=http://pharmaduk.xshorturl.com/levitra.html]buy levitra[/url]</p>
<p>Website: http://pharmaduk.xshorturl.com/levitra.html<br />
IP: 202.225.151.14
</p></blockquote>
<p>Seems pretty standard.  So I wonder how this got past Akismet and wander into my admin to delete said comment, only to find that it&#8217;s not there.  </p>
<p>And then I realize: it&#8217;s not a real comment notification.  A normal subject line will be formatted with the blog name in brackets, not the URL.  Furthermore, it will give links to both view the post and delete the comment.</p>
<p>So I&#8217;ve got to say, this is clever(?), but I don&#8217;t get the point.  But asking what the point of spam is beyond being part of the internet experience has about the same point as spam itself.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2007/05/19/totally-useless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yourspace</title>
		<link>http://andylaub.com/2007/02/01/yourspace/</link>
		<comments>http://andylaub.com/2007/02/01/yourspace/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 00:03:23 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://andylaub.com/2007/02/01/yourspace/</guid>
		<description><![CDATA[Myspace is a void.  A void!]]></description>
			<content:encoded><![CDATA[<p>I have a Myspace page.  I don&#8217;t update it.  I check it rarely.  It serves two purposes:</p>
<ol>
<li>Anyone who&#8217;s looking can find me</li>
<li>It&#8217;s another way to get people here</li>
</ol>
<p>Once they&#8217;re here, great.  They can do whatever; read posts, go to <a href="http://www.flickr.com/photos/andylaub/" title="Yahoo! sucks">Flickr</a>, etc.  But I don&#8217;t link back to Myspace; to me it&#8217;s just a means to an end.</p>
<p>Which is why, on the rare occasions I go on there to check messages, I find myself tempted to push the &#8220;delete&#8221; button and just kill it.  I strongly dislike Myspace.  The problem is, I like the people that I know there, and for some of them I think sites like that are their only social link to the internerd.</p>
<p>And so then I end up doing nothing, and I forget about it until the next time I log into Myspace.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2007/02/01/yourspace/feed/</wfw:commentRss>
		<slash:comments>0</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>Mislead</title>
		<link>http://andylaub.com/2006/09/22/mislead/</link>
		<comments>http://andylaub.com/2006/09/22/mislead/#comments</comments>
		<pubDate>Sat, 23 Sep 2006 03:26:03 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/09/22/mislead/</guid>
		<description><![CDATA[In my book, the <em>real</em> hot Swedish models are Volvos and Saabs.]]></description>
			<content:encoded><![CDATA[<p>Should I feel bad that people keep coming to my site in search of <a href="http://andylaub.com/2006/05/10/hot-swedish-models/">HOT SWEDISH MODELS</a>?  </p>
<p>Because I don&#8217;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/09/22/mislead/feed/</wfw:commentRss>
		<slash:comments>2</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>Flickr Lite</title>
		<link>http://andylaub.com/2006/07/21/flickr-lite/</link>
		<comments>http://andylaub.com/2006/07/21/flickr-lite/#comments</comments>
		<pubDate>Sat, 22 Jul 2006 03:19:10 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Et_C]]></category>
		<category><![CDATA[Internerd]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/07/21/flickr-lite/</guid>
		<description><![CDATA[Because $25 seems like a lot even if it isn't.]]></description>
			<content:encoded><![CDATA[<p>As I loaded up Flickr the other day, I was thinking about how much money I&#8217;m spending on near-useless internet stuff.  The pro account in Flickr is only marginally worth it, though now that I&#8217;m well past 200 photos I needed to spend the money so my initial uploadings didn&#8217;t disappear.  It&#8217;s kind of like the mob, if you think about it that way&#8230;</p>
<p>On that note, I started to wonder if there was some way to have the benefits of Flickr pro (unlimited photos) without having to pay the full $25.  I figure that the brunt of the cost is for a) hosting and b) bandwidth, and I wonder if Flickr could remain profitable by offering a third choice between the free and pro accounts.  It could allow people with decent hosting (like me) to upload their photos to Flickr&#8217;s service still, but instead of living on Flickr&#8217;s servers they would live on the user&#8217;s, leaving us with only one hosting/bandwidth bill instead of two.</p>
<p>There are only two potential issues that I&#8217;m aware of.   I could see Yahoo! being concerned at the loss of too many Flickr pro customers, and I don&#8217;t know how valid that is.  It depends on what kind of hosting they have set up on the side, if any.  The other concern is how much bandwidth my photos actually use on a monthly basis.  I can&#8217;t imagine it&#8217;s a ton, judging by the number of views that are recorded, but who knows.  That&#8217;s one argument to remain a full-on pro user for some of the more popular people.</p>
<p>I have second thoughts about this idea already, and I know that part of me is just wanting to stop spending so much damn money.  Is this a valid idea?</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/07/21/flickr-lite/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flickd</title>
		<link>http://andylaub.com/2006/07/06/flickd/</link>
		<comments>http://andylaub.com/2006/07/06/flickd/#comments</comments>
		<pubDate>Thu, 06 Jul 2006 22:56:35 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/07/06/flicked/</guid>
		<description><![CDATA[<p>If you were to wander over to my Flickr account looking for pictures of the <a href="http://andylaub.com/2006/02/18/chicago-part-2/">Chicago Auto Show</a>, you&#8217;d be out of luck.  It seems I&#8217;ve hit the cap on the 200-photo limit provided to holders of free accounts,&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>If you were to wander over to my Flickr account looking for pictures of the <a href="http://andylaub.com/2006/02/18/chicago-part-2/">Chicago Auto Show</a>, you&#8217;d be out of luck.  It seems I&#8217;ve hit the cap on the 200-photo limit provided to holders of free accounts, and so my earlier photos are slowly disappearing into a black hole.</p>
<p>Flickr says this doesn&#8217;t delete your photos (as evidenced by the fact that you can still access <a href="http://www.flickr.com/photos/andylaub/101310198/">individual photos</a>), it just removes them from your photo stream, meaning they&#8217;re no longer available to people browsing.  Any tags associated with those photos disappear if they&#8217;re not found elsewhere in your library as well.</p>
<p>One consolation is that if your photos have been added to pools or groups, <a href="http://www.flickr.com/photos/andylaub/101310197/in/pool-porsche/">they remain there</a>.  I find this kind of surprising, but at the same time it makes sense for the sake of other users.</p>
<p>I wasn&#8217;t really planning on buying a Pro account in the near future since I&#8217;ve had no problem staying under the monthly alloted bandwidth (for uploads) so far, and I don&#8217;t have a huge need for more than three sets.  But this restriction kind of clinches it and I&#8217;ll probably be upgrading shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/07/06/flickd/feed/</wfw:commentRss>
		<slash:comments>0</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>Filtered</title>
		<link>http://andylaub.com/2006/05/08/filtered/</link>
		<comments>http://andylaub.com/2006/05/08/filtered/#comments</comments>
		<pubDate>Tue, 09 May 2006 02:10:58 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Media]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/05/08/filtered/</guid>
		<description><![CDATA[<p>Remember <a href="http://2006.sxsw.com/toolbox/schedules/ipod/">those SXSW torrents</a>?  Over the last couple of months I&#8217;ve managed to listen to a decent portion of the 900-something songs that were contained within, and I&#8217;ve been slowly building a playlist of those that I have enjoyed.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Remember <a href="http://2006.sxsw.com/toolbox/schedules/ipod/">those SXSW torrents</a>?  Over the last couple of months I&#8217;ve managed to listen to a decent portion of the 900-something songs that were contained within, and I&#8217;ve been slowly building a playlist of those that I have enjoyed.  This is not to say these are my 20 most favorite considering I haven&#8217;t managed to listen to every song downloaded, but I certainly like them.</p>
<p>If you haven&#8217;t downloaded the torrents and you have the bandwidth (and the disk space), you may as well; it&#8217;s free music!  If you have, then maybe give these a listen:</p>
<ol class="column" style="margin-right: 0;">
<li><em>Avantcore</em><br />Busdriver</li>
<li><em>Be Gentle With Me</em><br />The Boy Least LIkely To</li>
<li><em>Blue Sky</em><br />Gliss</li>
<li><em>Cowbell</em><br />Tapes &#8216;N Tapes</li>
<li><em>Devils &amp; Angels</em><br />Toby Lightman</li>
<li><em>Don&#8217;t Let Me Down</em><br />A.J. Croce</li>
<li><em>Everyone&#8217;s a Winner</em><br />The Meligrove Band</li>
<li><em>Fork in the Road</em><br />The Stringdusters</li>
<li><em>Freewheel</em><br />Duke Special</li>
<li><em>Get Your Way</em><br />Jamie Cullum</li>
</ol>
<ol start="11" class="column" style="margin-left: 0;">
<li><em>Ghetto Ways</em><br />Scissors for Lefty</li>
<li><em>Girl Anachronism</em><br />The Dresden Dolls</li>
<li><em>Give a Little Mo&#8217;</em><br />The Mutaytor</li>
<li><em>God of Hell</em><br />The Rodeo Carburettor</li>
<li><em>Junkyard</em><br />Page France</li>
<li><em>Love Don&#8217;t Care</em><br />Lab Partners</li>
<li><em>New Comes and Goes</em><br />Oranger</li>
<li><em>Right About Now</em><br />Talib Kweli</li>
<li><em>The Vice &amp; Virtue Ministry</em><br />The Happy Bullets</li>
<li><em>Walkin&#8217; on Nails</em><br />Mac Lethal</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/05/08/filtered/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>Good News</title>
		<link>http://andylaub.com/2006/03/26/good-news/</link>
		<comments>http://andylaub.com/2006/03/26/good-news/#comments</comments>
		<pubDate>Sun, 26 Mar 2006 06:18:01 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Media]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/03/26/good-news/</guid>
		<description><![CDATA[<p>Results of <em>Car &#38; Driver</em>&#8216;s May 2006 comparison &#8220;$15,000 Cheap Skates:&#8221;</p>
<ul class="pretendol">
<li>7. <a href="http://www.suzukiauto.com/sr_06/reno/">Suzuki Reno</a></li>
<li>6. <a href="http://www.dodge.com/en/caliber/index.html">Dodge Caliber SE</a></li>
<li>5. <a href="http://www.hyundaiusa.com/vehicle/accent/index.asp">Hyundai Accent GLS Sedan</a></li>
<li>4. <a href="http://www.toyota.com/yaris/index.html">Toyota Yaris S Sedan</a></li>
<li>3. <a href="http://www.kia.com/06rio5/index.php">Kia Rio5 SX</a></li>
<li>2.</li></ul><p>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Results of <em>Car &amp; Driver</em>&#8216;s May 2006 comparison &#8220;$15,000 Cheap Skates:&#8221;</p>
<ul class="pretendol">
<li>7. <a href="http://www.suzukiauto.com/sr_06/reno/">Suzuki Reno</a></li>
<li>6. <a href="http://www.dodge.com/en/caliber/index.html">Dodge Caliber SE</a></li>
<li>5. <a href="http://www.hyundaiusa.com/vehicle/accent/index.asp">Hyundai Accent GLS Sedan</a></li>
<li>4. <a href="http://www.toyota.com/yaris/index.html">Toyota Yaris S Sedan</a></li>
<li>3. <a href="http://www.kia.com/06rio5/index.php">Kia Rio5 SX</a></li>
<li>2. <a href="http://www.nissanusa.com/content/0,,action-NVersa_topicId-1_pageId-123147,00.html">Nissan Versa 1.8SL Hatch</a></li>
<li><strong>1. <a href="http://automobiles.honda.com/fit/">Honda Fit Sport</a></strong></li>
</ul>
<p>Some high points:</p>
<ul>
<li>Quickest to 60 mph and in the quarter mile (8.7 and 16.7 seconds).</li>
<li>Most supportive seats and overall nicest interior.  &#8220;Acura-grade gauge cluster.&#8221;</li>
<li>Set apart by handling &mdash; lane change faster than the competition and even the Corvette Z06.</li>
<li>Shortest and narrowest, while maintaining 42 cubic feet of cargo space and a flat load floor when the seats are folded.</li>
<li><em>C&amp;D</em> elects it &#8220;the president of economobiles.&#8221;</li>
</ul>
<p>I don&#8217;t know why I&#8217;m so psyched about this, but I am.  Score another for <a href="http://www.honda.com">my favorite team</a>.  On another note, all of the above manufacturers with the exception of Nissan have clean URLs for these particular cars.  To be honest, this seems to be the exception for Honda since the Fit page is treated like a microsite at this point.  Still cleaner than Nissan&#8217;s, though &mdash; those are a mess.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/03/26/good-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I didn&#8217;t go to SxSW and all I got was this stupid torrent.</title>
		<link>http://andylaub.com/2006/03/22/i-didnt-go-to-sxsw-and-all-i-got-was-this-stupid-torrent/</link>
		<comments>http://andylaub.com/2006/03/22/i-didnt-go-to-sxsw-and-all-i-got-was-this-stupid-torrent/#comments</comments>
		<pubDate>Wed, 22 Mar 2006 22:58:36 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Media]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/03/22/i-didnt-go-to-sxsw-and-all-i-got-was-this-stupid-torrent/</guid>
		<description><![CDATA[<p>Nope, no <a href="http://www.sxsw.com/">South by Southwest</a> here.  At this point for me to attend something like that seems like it would be a poor financial decision, what with the time I&#8217;d have to take off and the money I&#8217;d have&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Nope, no <a href="http://www.sxsw.com/">South by Southwest</a> here.  At this point for me to attend something like that seems like it would be a poor financial decision, what with the time I&#8217;d have to take off and the money I&#8217;d have to spend to get there.  It&#8217;s not that I think it&#8217;s a bad idea; it&#8217;s just not something I&#8217;m ready for.  Maybe someday.</p>
<p>But on a more positive note, I decided to get the <a href="http://2006.sxsw.com/toolbox/schedules/ipod/">torrents</a> that <a href="http://www.waytoocrowded.com/2006/03/09/185-capital-thes/">PDF painstakingly analyzed</a> and came away indifferent.  Part of this is because to ask me to listen to 900 songs by anybody is a stretch.  I listened to some and continue to experience them as they pop up on the iPod.  It&#8217;s quite a variety, which is nice, and I haven&#8217;t run into any that are just awful.  Except one.</p>
<p>The song <em>They Cleaned My Cut Out With A Wire Brush</em> by Happy Flowers makes me hurt inside just because of how incredibly bad it is.  A brief synopsis:  some kind of screaming; repeat the title; more screaming; then the title; band maybe falls apart at some point; then it&#8217;s over.  You owe it to yourself to never, ever listen to this song.  Ever.  </p>
<p>On the other end, the song I was trying to think of today that I pretty much liked was <em>Everyone&#8217;s A Winner</em> by <a href="http://www.meligroveband.com/">The Meligrove Band</a>, which I&#8217;m not sure proves or disproves the &#8220;The + <em>n</em>&#8221; theory of good songs. </p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/03/22/i-didnt-go-to-sxsw-and-all-i-got-was-this-stupid-torrent/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Jerks (a Brief List)</title>
		<link>http://andylaub.com/2006/03/11/jerks-a-brief-list/</link>
		<comments>http://andylaub.com/2006/03/11/jerks-a-brief-list/#comments</comments>
		<pubDate>Sat, 11 Mar 2006 15:09:25 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Et_C]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/03/11/jerks-a-brief-list/</guid>
		<description><![CDATA[<h6>Sprint</h6>
<p> Yep, <em>that</em> <a href="http://www.sprint.com/">Sprint</a>.  No question, I really do like them a lot, but I&#8217;m a little sad at the same time.  About a month ago, they sent this to my published email address:</p>
<blockquote><p>Hi Andy,</p>
<p>The Sprint</p></blockquote><p>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<h6>Sprint</h6>
<p> Yep, <em>that</em> <a href="http://www.sprint.com/">Sprint</a>.  No question, I really do like them a lot, but I&#8217;m a little sad at the same time.  About a month ago, they sent this to my published email address:</p>
<blockquote><p>Hi Andy,</p>
<p>The Sprint Ambassador Team recently visited Andylaub.com and wants to invite you to participate in our Ambassador Program.</p>
<p>The Sprint Ambassador Program is all about exploring our latest products and services and allows you to give direct feedback to Sprint.  We recently launched the Sprint Power Vision (SM) Network and want to provide you with the full experience, at no charge. Sprint Power Vision Network enables customers to download data at faster speeds and experience new data products.</p>
<p>So whatâ€™s the deal?</p>
<p>As a qualified participant, we will send you one Sprint Power Vision phone and provide you with six months of all-access service (at no charge). Youâ€™ll have access to the Sprint Music Store(SM) live TV broadcasts, gaming and more.  Yes, you will also have unlimited free calling and data service. Itâ€™s a pretty good deal and all we ask for in return is your candid feedback (you decide how much and how often).</p>
<p>[ Registration information deleted ]</p>
<p>If you have questions regarding the registration process or the program, please email us at [ Email ]</p>
<p>We look forward to receiving your registration!</p>
<p>The Sprint Ambassador Team</p></blockquote>
<p>I was really excited about this because it was totally out of the blue.  Unfortunately, I didn&#8217;t qualify because I&#8217;m not in a metro area right now.  Admittedly, it makes sense that they want people who actually have access to the service to test the service, though as a footnote, I was at Best Buy yesterday and was told that Wausau does indeed have the Power Vision service.  Interesting, because according to the service map, they don&#8217;t.</p>
<p class="image"><img src="http://andylaub.com/content-2006/060311.gif" alt="Sprint Service Map for Central Wisconsin" /></p>
<p class="caption">I see no orange in Wausau.  Image from <a href="http://www.sprint.com">Sprint</a>.</p>
<p>I&#8217;ve been trying to figure out whether Power Vision phones are backwards compatible with regular PCS Vision, and I wonder if this is the case of the salespeople just being confused.  They said they used their demo <a href="http://samsung.com/Products/MobilePhones/Sprint/SPH_A900ZKSXAR.asp">A900</a> (dreamboat!) to browse the web all the time, but what if that just means it can get on the regular Vision network and isn&#8217;t necessarily on Power Vision?  Maybe I need to stop overanalyzing?</p>
<h6>H &#038; R Block</h6>
<p>Just get your shit together and let me e-file my state returns.  I&#8217;ve been waiting for 2 months now.</p>
<h6>TiVo</h6>
<p>Much to the chagrin of many, many TiVo enthusiasts, TiVo <a href="http://homeentertainment.engadget.com/2006/03/08/tivos-new-pricing-includes-box-drops-lifetime-plan/">is raising their monthly fees (to include free boxes) and dropping their beloved lifetime subscription</a>.  I am a firm believer that a lifetime subscription (meaning you receive unlimited TiVo service for the life of your TiVo unit) is the only way to go.  I know several people who&#8217;ve saved hundreds of dollars already by buying it outright.</p>
<p>If you are considering a TiVo, now is the time.  Lifetime subscriptions are still available for all boxes purchased through tomorrow (according to TiVo&#8217;s sales department) so I recommend biting the bullet and just getting one.  Otherwise there is eBay, which is a viable alternative because the subscription is attached to the box and not the user.  However, we all know how eBay gets when it comes down to supply and demand, and I have a feeling that demand is going to be up there in this case.</p>
<p>Abe and I have been back and forth on the TiVo thing for nearly a year, so I guess instead of calling TiVo a bunch of jerks (which they are), we should thank them for finally giving us the kick in the ass we needed to just go and buy one.  We picked up an <a href="http://www.tivo.com/2.1.1.0.asp">80-hour model</a> yesterday at Best Buy.  Total cost: $220 box + $300 service + $50 <a href="http://netgear.com/products/details/WG111.php">wireless adapter</a> = $570.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/03/11/jerks-a-brief-list/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>I Need Every Danny Elfman Song Ever Recorded.</title>
		<link>http://andylaub.com/2006/03/01/i-need-every-danny-elfman-song-ever-recorded/</link>
		<comments>http://andylaub.com/2006/03/01/i-need-every-danny-elfman-song-ever-recorded/#comments</comments>
		<pubDate>Thu, 02 Mar 2006 01:38:43 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/03/01/i-need-every-danny-elfman-song-ever-recorded/</guid>
		<description><![CDATA[<p>Something I (never) used to do all the time when I (never) used Napster and similar programs was just go on a total artist binge and double click every single search listing available for a particular query.  This was back&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Something I (never) used to do all the time when I (never) used Napster and similar programs was just go on a total artist binge and double click every single search listing available for a particular query.  This was back before it got all corrupted with half-songs and loops, or at least it was less corrupted with half-songs and loops (not that I would know, having never illicitly acquired music in my life).</p>
<p>Furthermore, I (never) did this on <em>dial-up</em> for quite awhile until we got DSL, meaning I could let my 800 assorted Shirley Bassey tracks all continue to download while I was off galavanting (not that I ever did, even though I could have (download songs I mean, not galavant; I did that all the time)).</p>
<p>iTunes sort of gives you that freedom, though it requires <em>money</em>, meaning you should probably be a little more sure if you want to buy a song and not just add every single Dolly Parton track to your cart on a whim.  I suppose you could use Limewire or the like (but you shouldn&#8217;t; I don&#8217;t and never have and never will), but like I mentioned before you&#8217;ve also got to worry about misnamed, incomplete or flat-out broken files.  Torrents are also (not) an option, but they don&#8217;t seem to work well on a track-by-track basis (based on third-person research that I&#8217;ve done).</p>
<p>I guess I&#8217;d better go spend some money.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/03/01/i-need-every-danny-elfman-song-ever-recorded/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Merit of MySpace</title>
		<link>http://andylaub.com/2006/02/25/the-merit-of-myspace/</link>
		<comments>http://andylaub.com/2006/02/25/the-merit-of-myspace/#comments</comments>
		<pubDate>Sun, 26 Feb 2006 00:24:27 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://andylaub.com/2006/02/25/the-merit-of-myspace/</guid>
		<description><![CDATA[<p>Last year sometime, in what I consider to be one of my frequent lapses in judgement, I signed up for a MySpace account.  Someone else that I know was on there and it looked interesting at the time so I&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Last year sometime, in what I consider to be one of my frequent lapses in judgement, I signed up for a MySpace account.  Someone else that I know was on there and it looked interesting at the time so I went ahead and registered.  The idea was (and still is) that it was a way for people who might have been looking for me to be redirected here where I actually update stuff.  On that note, after I became a member I didn&#8217;t look at the site again for a year.</p>
<p>Recently, though, curiosity has brought me back and I looked up a couple of people that I was friends with a long time ago and sent them my IM in hopes of sparking conversation and rekindling friendships.  Here&#8217;s hoping.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2006/02/25/the-merit-of-myspace/feed/</wfw:commentRss>
		<slash:comments>2</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>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>Building Blocks</title>
		<link>http://andylaub.com/2005/12/27/building-blocks/</link>
		<comments>http://andylaub.com/2005/12/27/building-blocks/#comments</comments>
		<pubDate>Wed, 28 Dec 2005 04:47:21 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=196</guid>
		<description><![CDATA[<p>I was working on a small freelance project today and came to the realization that when it comes to web junk, I tend to enjoy the coding more than the Photoshopping.  This site is a prime example; it uses perhaps&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I was working on a small freelance project today and came to the realization that when it comes to web junk, I tend to enjoy the coding more than the Photoshopping.  This site is a prime example; it uses perhaps six images, 4 of which originated from the same .psd (the dots), which leaves the site&#8217;s design to form more out of content organization than just making a pretty picture and putting content inside of it.</p>
<p>That I work and feel this way really doesn&#8217;t surprise me much.  I like to assemble things, but I don&#8217;t so much enjoy creating the components out of which those things are assembled.  Maybe it&#8217;s because coding is really kind of is a menial task, and I don&#8217;t mean that in a bad way.  I just mean that unlike with creating graphics, there&#8217;s a definite right and wrong way (for the most part) to code a site and <strong>you know when you are done</strong>.  The only creativity really comes when deciding what kind of language to script things in, or how to eliminate one or two more classes from the CSS, which is nice.  It&#8217;s easier making structural, necessary decisions than aesthetic and subjectively arbitrary ones.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/12/27/building-blocks/feed/</wfw:commentRss>
		<slash:comments>1</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>De-Click</title>
		<link>http://andylaub.com/2005/12/17/de-click/</link>
		<comments>http://andylaub.com/2005/12/17/de-click/#comments</comments>
		<pubDate>Sun, 18 Dec 2005 03:50:51 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=190</guid>
		<description><![CDATA[<p><a href="http://www.waytoocrowded.com/">PDF</a> drew my attention to <a href="http://www.dontclick.it">DONTCLICK.IT</a>, an interactive experiment in UI design.  Basically it&#8217;s what the name implies: don&#8217;t click.  One click will launch the site for you but after that, everything is accomplished with mouse movement and keystrokes.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.waytoocrowded.com/">PDF</a> drew my attention to <a href="http://www.dontclick.it">DONTCLICK.IT</a>, an interactive experiment in UI design.  Basically it&#8217;s what the name implies: don&#8217;t click.  One click will launch the site for you but after that, everything is accomplished with mouse movement and keystrokes.</p>
<p>My first reaction to this was that of frustration, which I expressed in the discussion Paul and I were having about it.  However, he reminded me that it&#8217;s only an experiment.  With that in mind, it&#8217;s an interesting idea, but kind of in the same way a sleep deprivation experiment is (click deprivation?).  Of course, people continue to sleep because it&#8217;s a fact of life, and for now so is clicking unless certain key fundamentals are addressed:</p>
<ul>
<li>The first is the environment in which the clicking is done.  Sure, DONTCLICK.IT has demonstrated that it&#8217;s perfectly possible to create a website that can function without clicks, but in the age of browsers and (consumer-level) operating systems that rely almost solely on click-click-clicking a site that discourages clicking is <em>more</em> impractical</li>
<li>The second is the very point of clicking.  It creates a more physical bond to the virtual environment that you&#8217;re interacting with.  If I click and hold on a window to move it, it give the impression of grasping it with my hand, and if I click on an app to launch it, it&#8217;s as though I&#8217;m pressing a little button to turn it on.  It&#8217;s a tactile thing, and it makes us feel as though the actions happening on screen are more directly connected to our own commands.</li>
<li>The final problem is the mouse.  Currently this is the weapon of choice for probably 99% of computer users.  Yes, you can do a ton of stuff with keystrokes alone (more on <a href="http://www.windows.com/">some OS&#8217;s</a> than <a href="http://www.apple.com/macosx/">others</a>), but not quite everything, especially if you&#8217;re planning on actually using applications.  If you eliminate clicks, you&#8217;re eliminating half of the functionality of the mouse, turning it into something you simply push the cursor around with.  If that&#8217;s all it&#8217;s doing, why have it at all?  And if you don&#8217;t have a mouse at all, well then damn, you&#8217;re just screwed when you go to visit your source for anti-clicking propaganda.</li>
</ul>
<p>But hey, at the very basic experimental level, it&#8217;s interesting.  Any more than that and it gets a little obnoxious.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/12/17/de-click/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Poetry</title>
		<link>http://andylaub.com/2005/11/30/poetry/</link>
		<comments>http://andylaub.com/2005/11/30/poetry/#comments</comments>
		<pubDate>Thu, 01 Dec 2005 02:35:37 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/11/30/poetry/</guid>
		<description><![CDATA[<p><a href="http://www.dreamhost.com/">Dreamhost&#8217;s</a> newsletter<br /> for November is all in<br /> Haiku.  They&#8217;re silly.</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dreamhost.com/">Dreamhost&#8217;s</a> newsletter<br /> for November is all in<br /> Haiku.  They&#8217;re silly.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/11/30/poetry/feed/</wfw:commentRss>
		<slash:comments>2</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>Lull</title>
		<link>http://andylaub.com/2005/10/20/lull/</link>
		<comments>http://andylaub.com/2005/10/20/lull/#comments</comments>
		<pubDate>Fri, 21 Oct 2005 02:05:26 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Series]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/10/20/lull/</guid>
		<description><![CDATA[<p>Fall is here, so is the internet dead?  Nobody&#8217;s blogging, nobody&#8217;s emailing.  I guess we&#8217;re in hibernation.</p>
<p class="image"><img src="http://andylaub.com/content-2005/lull2.jpg" alt="I Love Extra Images!" /></p>
<p>Nope, no lulls here!  Anyway, here&#8217;s a Land Cruiser from back when they were still good.  </p>
]]></description>
			<content:encoded><![CDATA[<p>Fall is here, so is the internet dead?  Nobody&#8217;s blogging, nobody&#8217;s emailing.  I guess we&#8217;re in hibernation.</p>
<p class="image"><img src="http://andylaub.com/content-2005/lull2.jpg" alt="I Love Extra Images!" /></p>
<p>Nope, no lulls here!  Anyway, here&#8217;s a Land Cruiser from back when they were still good.  </p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/10/20/lull/feed/</wfw:commentRss>
		<slash:comments>0</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>FIWA</title>
		<link>http://andylaub.com/2005/09/30/fiwa/</link>
		<comments>http://andylaub.com/2005/09/30/fiwa/#comments</comments>
		<pubDate>Fri, 30 Sep 2005 22:54:35 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/09/30/fiwa/</guid>
		<description><![CDATA[<p>As soon as the words left my mouth today I knew I had to write this.</p>
<p>We were discussing a particular site, and talking about how it was becoming cluttered and unusable (or rather, <em>has been</em> cluttered and unusable for&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>As soon as the words left my mouth today I knew I had to write this.</p>
<p>We were discussing a particular site, and talking about how it was becoming cluttered and unusable (or rather, <em>has been</em> cluttered and unusable for some time).  At that point I said that we were <strong>F</strong>ixing <strong>I</strong>t <strong>W</strong>ith <strong>A</strong>ddition, meaning that every time something went wrong the solution was to add something else instead of researching the cause of the problem.</p>
<p>It&#8217;s an issue that&#8217;s fairly abundant in all walks of life, not just the internerd.  Your car&#8217;s not selling?  Make it bigger, add more features, bigger engine, more power.  A prime example of this was the Passat W8 of a few years ago.  VW, and for this I think they are clever, developed a new W-shaped engine layout that meant you could fit eight cylinders into an engine compartment made for 6.  It was a novel concept, but the problem here was that for all the extra power the W8 made over the V6, all it did was compensate for all the extra weight added by the motor itself. </p>
<p>FIWA&#8217;s best friend and partner in crime, I&#8217;m convinced, is DIBYC (Doing It Because You Can) and as you can see he made his presence known in that whole Passat situation.</p>
<p>Just because you can put a huge graphic across the top of your site to drive up sales doesn&#8217;t mean you should and definitely doesn&#8217;t mean it will.  Maybe if your sales aren&#8217;t so hot you should consider a new marketing strategy and reexamine your target audience.  Maybe they&#8217;re not buying because your site is too complicated?  Maybe everything on the home page is equally vying for attention, and the decision of where they&#8217;re supposed to go just drove them away?</p>
<p>If that&#8217;s the case, maybe the &#8216;F&#8217; in FIWA should stand for something else.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/09/30/fiwa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stimuli</title>
		<link>http://andylaub.com/2005/09/28/stimuli/</link>
		<comments>http://andylaub.com/2005/09/28/stimuli/#comments</comments>
		<pubDate>Thu, 29 Sep 2005 03:17:21 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Felidae]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Media]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/09/28/stimuli/</guid>
		<description><![CDATA[<p>One of my guilty pleasures is a little show on <a href="http://www.g4tv.com/">G4</a> called <em><a href="http://www.g4tv.com/cinematech/index.html">Cinematech</a></em> which is, ridiculously, <em>videos of video games</em>.  Absurd, but for some reason I&#8217;m drawn to it.  I guess it&#8217;s cause I&#8217;ve always liked watching people play&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>One of my guilty pleasures is a little show on <a href="http://www.g4tv.com/">G4</a> called <em><a href="http://www.g4tv.com/cinematech/index.html">Cinematech</a></em> which is, ridiculously, <em>videos of video games</em>.  Absurd, but for some reason I&#8217;m drawn to it.  I guess it&#8217;s cause I&#8217;ve always liked watching people play games (well) just as much as I enjoy playing them myself.  And on the subject of playing games well, they were playing through <em>Half-Life</em>.  The entire game.  When I played through that earlier this year it took me a couple days, so maybe 10 hours or so to finish.  They were slightly faster at <a href="http://www.g4tv.com/cinematech/episodes/4517/HalfRun_Speed_Life.html">45 minutes</a>.  If you&#8217;ve never played <em>Half-Life</em> think of it as watching a two-hour movie, in its entirety, in 15 minutes. </p>
<p>And while we&#8217;re on the subject of games, I finished <em><a href="http://www.blackmonday.co.uk/">The Getaway : Black Monday</a></em> and was not disappointed.  Despite their rather mediocre ratings I&#8217;ve really liked both of the games in the series.  They&#8217;ve got a nice feel about them and you can really see how the developers tried to inject it with a cinematic vibe. </p>
<p>As an afterthought, I need to direct you to <a href="http://www.blackmonday.co.uk/">their site</a> again.  It is a pretty impressive endeavor, not so much because of its design but because of its content.  By clicking around you end up on a mini-tour of London and meet all the characters (played by their voice actors from the game).  It&#8217;s a great way to introduce you to the environment or just kill some time.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/09/28/stimuli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>es ca pe</title>
		<link>http://andylaub.com/2005/09/26/es-ca-pe/</link>
		<comments>http://andylaub.com/2005/09/26/es-ca-pe/#comments</comments>
		<pubDate>Tue, 27 Sep 2005 00:00:18 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/09/26/es-ca-pe/</guid>
		<description><![CDATA[<p><a href="http://www.waytoocrowded.com/">PDF&#8217;s</a> <a href="http://www.escapeeperil.com/">side project</a> relaunched this weekend and is a stylin&#8217; wonder of an eCommerce site.  Check the little things, like the sliding images for the different product views, the styled radio buttons for the size selection, or the color&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.waytoocrowded.com/">PDF&#8217;s</a> <a href="http://www.escapeeperil.com/">side project</a> relaunched this weekend and is a stylin&#8217; wonder of an eCommerce site.  Check the little things, like the sliding images for the different product views, the styled radio buttons for the size selection, or the color coded bars next to the blog/news posts.  It&#8217;s a site that emphasizes function over form, but the form ain&#8217;t so bad either.  I am pretty much glossing over the entire thing here, so <a href="http://www.waytoocrowded.com/2005/09/25/the-new-es-ca-pe-eperil/">go read his post about it</a> instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/09/26/es-ca-pe/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Black</title>
		<link>http://andylaub.com/2005/09/22/black/</link>
		<comments>http://andylaub.com/2005/09/22/black/#comments</comments>
		<pubDate>Thu, 22 Sep 2005 23:35:35 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=103</guid>
		<description><![CDATA[<p>The internerd is the hottest thing since sliced bread, so it&#8217;s only natural that there&#8217;d be a hott new craze sweeping the web approximately every other week.  Here are some hot-ass internet bandwagons for you to jump on ASAP.</p>
<ul></ul><p>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>The internerd is the hottest thing since sliced bread, so it&#8217;s only natural that there&#8217;d be a hott new craze sweeping the web approximately every other week.  Here are some hot-ass internet bandwagons for you to jump on ASAP.</p>
<ul>
<li><span class="block">Those Little Buttons With Pixelated Text</span>They could be for <a href="http://wordpress.org/about/buttons/">a CMS</a>, <a href=http://www.engadget.com/common/media/engadget_button.gif">your website</a>, <a href="http://img54.echo.cx/img54/4373/macuser1003ld.gif">your OS</a>, <a href="http://www.mozilla.org/products/firefox/buttons.html">a browser</a>, or your dog, but one thing&#8217;s for sure: they are freaking everywhere.
<p>Be careful and only use a couple, though. It&#8217;s not hard to <a href="http://kirkkitsch.blogspot.com/">go overboard</a>.</li>
<li><span class="block">Red Cross Buttons</span>Or worse, Red Cross splash pages.  Yes, the disasters are very disastrous, and it&#8217;s very novel that sites want to help, but do these things work?  Did they even exist before the tsunami last year?  Now, in the wake of another distaster, they&#8217;re <a href="http://www.quark.com/">all</a> <a href="http://www.gizmodo.com/">over</a> <a href="http://vwvortex.com/">the</a> <a href="http://store.nba.com/">place</a>.  That last one&#8217;s pretty sexy though.
<p>You may ask what the point is  &#8211; will the five people who visit your site change their minds about donating thanks to the Red Cross on your site about cars?  I guess businesses must do it so they don&#8217;t seem insensitive, so you should too because if you don&#8217;t you are heartless and will die an early death and go to Hell.  HELL!</li>
<li><span class="block">Drop Shadows</span>Are either in or out, along with horizontal hairlines and making things look like they&#8217;re all glossy.  If you have a site that is totally flat, sorry, you&#8217;re not cool so you&#8217;d better get some gradients in there hurry-up soon.</li>
<li><span class="block">CSS</span>&#8230;is a fad in the same way the iPod is.  It came out, some people liked it; it got better, more people liked it and then it just kind of stuck around accumulating more and more users.  Eventually everyone will use CSS and have iPods, like it or not, including you.  That&#8217;s just how it goes with these things.</li>
<li><span class="block"><a href="http://del.icio.us/">del.icio.us</a></span>According to <em>Time</em> who gets their information from Technorati, this is the most popular weblog, which surprised me because I didn&#8217;t even know it was a weblog.  Regardless, it&#8217;s cool and useful and relatively easy to import the content into your own site (hell, I figured out how to do it!) and that makes it a staple.
<p>You&#8217;ll need to watch this one though.  Make sure the links you add are cool enough for all you web-friends to see.  They won&#8217;t visit you anymore if you start linking to the latest <a href="http://www.kidzworld.com/site/p3994.htm">Barbie video game</a> or <a href="http://news.bbc.co.uk/cbbcnews/hi/newsid_4200000/newsid_4209000/4209004.stm">a bug that pretends it&#8217;s a tongue</a>.</li>
<li><span class="block">Useless Lists</span>If you haven&#8217;t already, you need to post one of these STAT.</li>
<li><span class="block">Blogs</span>Duh, get a blog already.  Otherwise how are you going to meet all these other criteria? Which gives way to&#8230;</li>
<li><span class="block">Accessible CMS</span>CMS = Content Management System = WordPress, Movable Type, TypePad, Blogger, etc.  We don&#8217;t &#8220;hand-code&#8221; our entries.  What is this, the stone age?  It&#8217;s gotta be dynamic!  It&#8217;s gotta have comments!  The content is optional, though, and if it overshadows your wicked look, you Red-Cross button, or your del.icio.us links, than it may be best to leave it out.
<p>Another one of those fads that stuck around (thankfully), your site is potentially marginally cool if you are on Blogger, cooler if it&#8217;s WordPress, and the effing rawk if it&#8217;s on Movable Type or some other pay thing.  If you wrote your CMS yourself, you may be hardcore but that doesn&#8217;t make you cool.</li>
</ul>
<p>Once you have all of these things, put them together and viola!  Your site is the new black!</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/09/22/black/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Skilled</title>
		<link>http://andylaub.com/2005/09/19/skilled/</link>
		<comments>http://andylaub.com/2005/09/19/skilled/#comments</comments>
		<pubDate>Tue, 20 Sep 2005 02:46:42 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Internerd]]></category>

		<guid isPermaLink="false">http://andylaub.com/2005/09/19/skilled/</guid>
		<description><![CDATA[<p><a href="http://www.waytoocrowded.com/2005/09/18/sliding-pictures/">PDF</a> is an expert at skateboarding and code; sometimes <em>both at the same time</em>.</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.waytoocrowded.com/2005/09/18/sliding-pictures/">PDF</a> is an expert at skateboarding and code; sometimes <em>both at the same time</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2005/09/19/skilled/feed/</wfw:commentRss>
		<slash:comments>3</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>
	</channel>
</rss>
