<?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; graphic design</title>
	<atom:link href="http://andylaub.com/tag/graphic-design/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></title>
		<link>http://andylaub.com/2009/01/31/1502/</link>
		<comments>http://andylaub.com/2009/01/31/1502/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 14:53:39 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Status]]></category>
		<category><![CDATA[Abe]]></category>
		<category><![CDATA[abegabor.com]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1502</guid>
		<description><![CDATA[<p>One of the &#8220;perks&#8221; of living with a designer is that your website occasionally redesigns itself. <a href="http://www.abegabor.com/" title="Abe 4.0">Case in point.</a>  Quite an <a href="http://farm4.static.flickr.com/3499/3240649653_be3712b103.jpg" title="Abe 3.0" class="zoom">improvement</a>, I&#8217;d say.</p>
]]></description>
			<content:encoded><![CDATA[<p>One of the &#8220;perks&#8221; of living with a designer is that your website occasionally redesigns itself. <a href="http://www.abegabor.com/" title="Abe 4.0">Case in point.</a>  Quite an <a href="http://farm4.static.flickr.com/3499/3240649653_be3712b103.jpg" title="Abe 3.0" class="zoom">improvement</a>, I&#8217;d say.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2009/01/31/1502/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://andylaub.com/2009/01/26/1361/</link>
		<comments>http://andylaub.com/2009/01/26/1361/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 19:07:31 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Status]]></category>
		<category><![CDATA[Ars Technica]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[redesign]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1361</guid>
		<description><![CDATA[<p><a href="http://arstechnica.com/">Ars Technica</a> has redesigned. It <em>looks</em> nice but I&#8217;m not quite sure on the functionality aspect yet.  I liked to read the headlines for the various journals, but it looks like those posts have been integrated into the main content.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://arstechnica.com/">Ars Technica</a> has redesigned. It <em>looks</em> nice but I&#8217;m not quite sure on the functionality aspect yet.  I liked to read the headlines for the various journals, but it looks like those posts have been integrated into the main content.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2009/01/26/1361/feed/</wfw:commentRss>
		<slash:comments>0</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></title>
		<link>http://andylaub.com/2009/01/21/1195/</link>
		<comments>http://andylaub.com/2009/01/21/1195/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 13:19:47 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Status]]></category>
		<category><![CDATA[archival]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1195</guid>
		<description><![CDATA[<p>Fellow internerds may be interested in the old andylaub.com screenshots <a href="http://flickr.com/photos/andylaub/sets/72157612522896111/">now on Flickr</a>; I did some shuffling of dates so they aren&#8217;t immediately apparent at first glance.</p>
<p>So far I&#8217;m up (down?) to version 13, the very first WP&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Fellow internerds may be interested in the old andylaub.com screenshots <a href="http://flickr.com/photos/andylaub/sets/72157612522896111/">now on Flickr</a>; I did some shuffling of dates so they aren&#8217;t immediately apparent at first glance.</p>
<p>So far I&#8217;m up (down?) to version 13, the very first WP theme I ever built (previous iterations of the site were a jumble of PHP, and handcoded before that); I plan to go back even further but I predict it will be awhile before I get there.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2009/01/21/1195/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://andylaub.com/2009/01/19/1181/</link>
		<comments>http://andylaub.com/2009/01/19/1181/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 14:38:45 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Status]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Kottke.org]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1181</guid>
		<description><![CDATA[<p>Wow, <a href="http://kottke.org/">new Kottke</a>. I kind of preferred the old one.</p>
]]></description>
			<content:encoded><![CDATA[<p>Wow, <a href="http://kottke.org/">new Kottke</a>. I kind of preferred the old one.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2009/01/19/1181/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://andylaub.com/2009/01/13/1163/</link>
		<comments>http://andylaub.com/2009/01/13/1163/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 17:34:22 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Status]]></category>
		<category><![CDATA[annual report]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[epic]]></category>
		<category><![CDATA[Feltron]]></category>
		<category><![CDATA[graphic design]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1163</guid>
		<description><![CDATA[<p><a href="http://mgfn.net/">Nicholas Felton</a> amazes and astounds yet again with his <a href="http://feltron.com/index.php?/content/2008_annual_report/">2008 Annual Report</a>.  The design and thought that goes into this every year amazes and astounds me; <strong>I wish I could think like that</strong>.</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://mgfn.net/">Nicholas Felton</a> amazes and astounds yet again with his <a href="http://feltron.com/index.php?/content/2008_annual_report/">2008 Annual Report</a>.  The design and thought that goes into this every year amazes and astounds me; <strong>I wish I could think like that</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2009/01/13/1163/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://andylaub.com/2009/01/08/1147/</link>
		<comments>http://andylaub.com/2009/01/08/1147/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 03:49:07 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Status]]></category>
		<category><![CDATA[consoles]]></category>
		<category><![CDATA[controllers]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[Dreamcast]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[NES]]></category>
		<category><![CDATA[Nintendo]]></category>
		<category><![CDATA[wallpapers]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1147</guid>
		<description><![CDATA[<p>A couple <a href="http://andylaub.com/2009/01/07/1140/">more</a>: </p>
<ul>
<li><a href="http://flickr.com/photos/andylaub/3180727425/" title="Cultish.">Dreamcast</a></li>
<li><a href="http://flickr.com/photos/andylaub/3180728139/" title="Gateway drug.">NES</a></li>
<li><a href="http://flickr.com/photos/andylaub/3180728897/" title="More cables!">Plugs</a></li>
</ul>
<p>I think that&#8217;s it for now, but hey, two of these even work on your iPhone!</p>
]]></description>
			<content:encoded><![CDATA[<p>A couple <a href="http://andylaub.com/2009/01/07/1140/">more</a>: </p>
<ul>
<li><a href="http://flickr.com/photos/andylaub/3180727425/" title="Cultish.">Dreamcast</a></li>
<li><a href="http://flickr.com/photos/andylaub/3180728139/" title="Gateway drug.">NES</a></li>
<li><a href="http://flickr.com/photos/andylaub/3180728897/" title="More cables!">Plugs</a></li>
</ul>
<p>I think that&#8217;s it for now, but hey, two of these even work on your iPhone!</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2009/01/08/1147/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://andylaub.com/2009/01/07/1140/</link>
		<comments>http://andylaub.com/2009/01/07/1140/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 14:54:32 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Status]]></category>
		<category><![CDATA[consoles]]></category>
		<category><![CDATA[controllers]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[PS3]]></category>
		<category><![CDATA[wallpapers]]></category>
		<category><![CDATA[Wii]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1140</guid>
		<description><![CDATA[<p>Controller-flavored wallpapers, for your enjoyment:</p>
<ul>
<li><a href="http://flickr.com/photos/andylaub/3175119379/" title="My least favorite, honestly.">PS3</a></li>
<li><a href="http://flickr.com/photos/andylaub/3175954332/" title="Pretty good.">Xbox 360</a></li>
<li><a href="http://flickr.com/photos/andylaub/3175953648/" title="Cables are fun!">Wii</a></li>
</ul>
<p>More to come, maybe.</p>
]]></description>
			<content:encoded><![CDATA[<p>Controller-flavored wallpapers, for your enjoyment:</p>
<ul>
<li><a href="http://flickr.com/photos/andylaub/3175119379/" title="My least favorite, honestly.">PS3</a></li>
<li><a href="http://flickr.com/photos/andylaub/3175954332/" title="Pretty good.">Xbox 360</a></li>
<li><a href="http://flickr.com/photos/andylaub/3175953648/" title="Cables are fun!">Wii</a></li>
</ul>
<p>More to come, maybe.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2009/01/07/1140/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All You Need</title>
		<link>http://andylaub.com/2008/03/11/all-you-need/</link>
		<comments>http://andylaub.com/2008/03/11/all-you-need/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 13:20:58 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Theatre]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Gypsy]]></category>

		<guid isPermaLink="false">http://andylaub.com/2008/03/11/all-you-need/</guid>
		<description><![CDATA[Drawing parallels between stripping, musical theatre and design since 2008.]]></description>
			<content:encoded><![CDATA[<p>Bear with me; I&#8217;m going to head back to theatre-nerd reference land for a minute.  I mentioned a few times that I was just in <em>Gypsy</em>, a show about a young girl who is pushed into burlesque and stripping by her overzealous, fame-seeking mother.  There&#8217;s an exchange in the show between one of the strippers at the theater and the daughter in which the daughter explains that she &#8220;can&#8217;t be a stripper because she has no talent.&#8221;  To which the stripper responds, &#8220;to be a stripper all you need to have is no talent.&#8221;</p>
<p><strong>To be a designer all you need to have is no talent.</strong>  Stop and think about that for a second.  How many terrible designers do you know?  People that have no artistic skill whatsoever but still manage to extract the dollars from desperate clients who don&#8217;t know that there&#8217;s a better act just down the street.</p>
<p>Near the end of the show, the daughter has accepted stripping and become quite famous for it.  She makes a statement during her act about being an &#8220;ecdysiast&#8221;, or one who <a href="http://en.wikipedia.org/wiki/Ecdysis">sheds its skin</a>, and exclaiming that &#8220;at these prices, I&#8217;m not a stripper; I&#8217;m an ecdysiast!&#8221;</p>
<p>With that in mind, there are plenty of truly talented designers out there, and as is often the case, they have higher rates.  But at the same time, you&#8217;ll find designers charging like they&#8217;re ecdysiasts when they&#8217;re not, and vice versa.  Such is life on the internerd: anybody can claim to be anything.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2008/03/11/all-you-need/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://andylaub.com/2004/10/04/1398/</link>
		<comments>http://andylaub.com/2004/10/04/1398/#comments</comments>
		<pubDate>Mon, 04 Oct 2004 14:35:56 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Archived]]></category>
		<category><![CDATA[Status]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[Bush]]></category>
		<category><![CDATA[debate]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Kerry]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1398</guid>
		<description><![CDATA[<p>I&#8217;m with stupid.</p>
<p>No, wait &#8211; I&#8217;m with Kerry.  <a href="http://www.audible.com/adbl/store/welcome.jsp">Audible.com</a> has the entire <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=25601664&#038;selecteditemid=25601664">debate</a> downloadable from iTunes &#8211; for FREE.</p>
<p>Also, my new favorite site for today is <a href="http://www.brandnewschool.com/">here</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m with stupid.</p>
<p>No, wait &#8211; I&#8217;m with Kerry.  <a href="http://www.audible.com/adbl/store/welcome.jsp">Audible.com</a> has the entire <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=25601664&#038;selecteditemid=25601664">debate</a> downloadable from iTunes &#8211; for FREE.</p>
<p>Also, my new favorite site for today is <a href="http://www.brandnewschool.com/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2004/10/04/1398/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Websites &amp; Some Music Thing</title>
		<link>http://andylaub.com/2004/07/15/some-websites-some-music-thing/</link>
		<comments>http://andylaub.com/2004/07/15/some-websites-some-music-thing/#comments</comments>
		<pubDate>Fri, 16 Jul 2004 03:18:29 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Archived]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Internerd]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[lists]]></category>
		<category><![CDATA[memes]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://andylaub.com/?p=1284</guid>
		<description><![CDATA[<p>I was putting a thing together at work today which, among other things, was featuring a new vendor of ours, <a href="http://www.ipath.com/">ipath</a>. Because of this, I ventured over to their site to check it out, and it is good. There&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I was putting a thing together at work today which, among other things, was featuring a new vendor of ours, <a href="http://www.ipath.com/">ipath</a>. Because of this, I ventured over to their site to check it out, and it is good. There is a section where people can send pics of their ipath shoes. One week, however, they were pretty light on images so they just took random photos of their office, which is probably the funniest thing ever &#8211; you don&#8217;t generally expect to see &#8220;isn&#8217;t this the coolest printer ever?&#8221; on an action sports site. Also notable, since I&#8217;m in this groove, is <a href="http://www.alpinestars.com/">Alpinestars</a>, as well as <a href="http://www.seven-2.com/">Seven2</a>, whose initial ads (which are awesome) had no url on them so for a long while I didn&#8217;t even know what they were for. And finally, go get <a href="http://www.papermag.com/">this magazine</a> because it&#8217;s cheap and interesting.</p>
<p>I saw this movie/music thing <a href="http://www.excurs.us/" target="_blank"  >somewhere</a> and figured I&#8217;d do it too*:</p>
<ul>
<li><strong>opening credits:</strong><em> Never Gonna Give You Up </em>Cake</li>
<li> <strong>dreaming / waking up scene: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=1113845&#038;selectedItemId=1113839"  ><em>How It Should Be (Sha Sha)</em></a></strong>  Ben Kweller</li>
<li><strong>happy friends scene: </strong><em>Bohemian Like You</em> the Dandy Warhols</li>
<li><strong>driving scene: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=6751056&#038;selectedItemId=6751156"  ><em>Hunter</em></a></strong> Bj&ouml;rk
        </li>
<li><strong>action/fight scene: <em><a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=2150810&#038;selectedItemId=2150790" >Horndog</a></em></strong> Overseer</li>
<li><strong>car chase: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=1265213&#038;selectedItemId=1265209"  ><em>Date  With The Night</em></a></strong> Yeah Yeah Yeahs</li>
<li><strong>happy love scene: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=2902904&#038;selectedItemId=2902862" ><em>Hotel  Yorba</em></a></strong> the White Stripes</li>
<li><strong>mellow scene: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=6395765&#038;selectedItemId=6396043"  ><em>Float  On</em></a></strong> Modest Mouse</li>
<li><strong>sex scene: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=465730&#038;selectedItemId=465770"  ><em>Stellar</em></a></strong> Incubus</li>
<li><strong>angry / bitter scene: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=888058&#038;selectedItemId=888106"  ><em>Gone</em></a></strong> Ben Folds</li>
<li><strong>breakup scene: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=466137&#038;selectedItemId=777303"  ><em>A Mistake</em></a></strong> Fiona Apple</li>
<li><strong>evil / revenge scene:  <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=1798612&#038;selectedItemId=1798585"  ><em>Shiver</em></a></strong> Maroon 5</li>
<li><strong>contemplation scene: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=1113845&#038;selectedItemId=1113843"  ><em>In Other Words</em></a></strong> Ben Kweller</li>
<li><strong>sad / breakdown scene: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=2859605&#038;selectedItemId=2859554"  ><em>Look What You&#8217;ve Done</em></a></strong> Jet</li>
<li><strong>death scene: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=5682255&#038;selectedItemId=5682248"  ><em>Flying High</em></a></strong> Jem</li>
<li><strong>funeral scene: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=7020562&#038;selectedItemId=7020566"  ><em>Winter</em></a></strong> Tori Amos</li>
<li><strong>nostalgic scene: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=684888&#038;selectedItemId=684853"  ><em>The Scientist</em></a></strong> Coldplay</li>
<li><strong>closing credits: <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=560957&#038;selectedItemId=560882"  ><em>Supreme</em></a></strong> Robbie Williams</li>
</ul>
<p>*If you don&#8217;t already have <a href="http://www.apple.com/itunes/download/" target="_blank"  >iTunes</a>,      you live a sad, sad life.</p>
]]></content:encoded>
			<wfw:commentRss>http://andylaub.com/2004/07/15/some-websites-some-music-thing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
