<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>The Haystack.</title>
	
	<link>http://www.the-haystack.com</link>
	<description>Web, design, and web design</description>
	<lastBuildDate>Wed, 17 Feb 2010 08:43:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TheHaystack" /><feedburner:info uri="thehaystack" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>It’s my party and I’ll write when I want to</title>
		<link>http://feedproxy.google.com/~r/TheHaystack/~3/DoerYgeo1nE/</link>
		<comments>http://www.the-haystack.com/2010/02/14/write-when-i-want-to/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 21:28:13 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Babble]]></category>

		<guid isPermaLink="false">http://www.the-haystack.com/?p=206</guid>
		<description><![CDATA[What she said.
]]></description>
			<content:encoded><![CDATA[<p>What <a href="http://webdesignernotebook.com/project-52/quitting-project-52/">she said</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheHaystack?a=DoerYgeo1nE:f1HfCD6qf-A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheHaystack?a=DoerYgeo1nE:f1HfCD6qf-A:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheHaystack/~4/DoerYgeo1nE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.the-haystack.com/2010/02/14/write-when-i-want-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.the-haystack.com/2010/02/14/write-when-i-want-to/</feedburner:origLink></item>
		<item>
		<title>A gentle introduction to CSS3 Flexible Box Module (Part 1)</title>
		<link>http://feedproxy.google.com/~r/TheHaystack/~3/OjoKV6Hw52E/</link>
		<comments>http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 09:11:25 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[flexbox]]></category>

		<guid isPermaLink="false">http://www.the-haystack.com/?p=182</guid>
		<description><![CDATA[A portion of what we do as web designers involves arranging elements horizontally or vertically on the screen. As of yet, CSS lacks a suitable mechanism for this task. Enter CSS3 Flexible Box Module (“Flexbox” for short).

Flexbox is one of three W3C draft specs (as of this writing) dealing with general layout issues and has [...]]]></description>
			<content:encoded><![CDATA[<p>A portion of what we do as web designers involves arranging elements horizontally or vertically on the screen. As of yet, <abbr>CSS</abbr> lacks a suitable mechanism for this task. Enter <abbr>CSS</abbr>3 Flexible Box Module (“Flexbox” for short).</p>

<p>Flexbox is one of three <abbr>W3C</abbr> draft specs (as of this writing) dealing with general layout issues and has its strengths and weaknesses compared to the other two. But as it has already been implemented in Firefox (and I predict there is a good chance it will be implemented in Safari in some form), you might want to play around with it. Even if it doesn&#8217;t get implemented in anything other than Firefox, some of the principles regarding flexible available space have already been injected into the other modules. Plus, it&#8217;s pretty fun.</p>

<p>The <a href="http://www.w3.org/TR/css3-flexbox/">draft</a> describes Flexbox as:</p>

<blockquote>[...] a <abbr>CSS</abbr> box model optimized for interface design. It provides an additional layout system alongside the ones already in <abbr>CSS</abbr>. [CSS21] In this new box model, the children of a box are laid out either horizontally or vertically, and unused space can be assigned to a particular child or distributed among the children by assignment of “flex” to the children that should expand. Nesting of these boxes (horizontal inside vertical, or vertical inside horizontal) can be used to build layouts in two dimensions. This model is based on the box model in the <abbr title="XML User Interface Language">XUL</abbr> user-interface language used for the user interface of many Mozilla-based applications (such as Firefox).</blockquote>

<p>This is pretty clear. It implies two important things:</p>

<ol>
    <li>No more abusing floats, and no more getting abused by floats</li>
    <li>We can create true flexible layouts, and the browser will do the calculations for us</li>
</ol>

<p>Basically, Flexbox is a small part of <abbr>XUL</abbr> ported to <abbr>CSS</abbr>. Cool as it may be, I remain of the opinion that the power of Flexbox is in the layout of things like UI components (think forms and toolbars and such) rather than in general page layout. So let&#8217;s not get carried away and make Flexbox the new float. For general page layout, we need a true grid-based model; I&#8217;ll come back to that in the near future. For now, let&#8217;s dive in.</p>

<p>Flexbox gives us a new value for the <code>display</code> property (the <em>box</em> value), and eight new properties:</p>

<ul>    
<li>box-orient</li>
    <li>box-flex</li>
<li>box-align</li>
    <li>box-direction</li>
    <li>box-flex-group</li>
    <li>box-lines</li>
    <li>box-ordinal-group</li>
    <li>box-pack</li>
</ul>

<p>Today, we&#8217;ll ease into this and just focus on <em>box-orient</em> and <em>box-flex</em>, and tackle the other properties in Part 2.</p>

<p>Let&#8217;s say we have three paragraphs, each of which introduces one of three product lines for a client website. Our designer has determined that these teaser paragraphs are to be placed adjacent to one another along a horizontal axis, essentially forming three columns.</p>

<pre>
<code>
&lt;div id="products"&gt;
    &lt;p id="phones"&gt;First child&lt;/p&gt;
    &lt;p id="computers"&gt;Second child&lt;/p&gt;
    &lt;p id="fast-cars"&gt;Third child&lt;/p&gt;
&lt;/div&gt;
</code>
</pre>

<p>How would you currently tackle this? Most, without thinking, would simply float these paragraphs, perhaps adding <code>overflow:hidden;</code> to the parent in order to clear the floats. Nothing very special. But we could also do it quite easily with Flexbox:</p>

<pre>
<code>
#products { 
    display: box;
    box-orient: horizontal;
    }
</code>
</pre>

<p>In the above code, we&#8217;re simply telling the parent to behave according to this (flex)box model, and to lay out all its children along the horizontal axis. No floats. Yay.</p>

<p><code>box-orient</code> accepts four values, but two of them are important for all intents and purposes: horizontal and vertical. Self-explanatory. </p>

<p>The widths of the children remain as specified (or their inherent width if not specified). This means that if the total widths of all the children is less than the total width of the parent, we&#8217;ll get something like this:</p>

<p><img src="http://www.the-haystack.com/wp-content/uploads/2010/01/flex01.gif" alt="3 child elements retain their inherent widths within the parent element" title="flex01" width="475" height="297" class="alignnone size-full wp-image-190" /></p>

<p>But what if you wanted paragraphs one and two to have specific widths and paragraph three to adjust itself depending on the available space within the parent? Flexbox to the rescue:</p>

<pre>
<code>
#products { 
    display: box;
    box-orient: horizontal;
    }
    #fast-cars {
        box-flex: 1;
        }
</code>
</pre>

<p>Here, we&#8217;re telling the last child to become flexible, and to take up available space. Since we&#8217;ve only allocated space to one element, it will take up <em>all</em> of the available space:</p>

<p><img src="http://www.the-haystack.com/wp-content/uploads/2010/01/flex02.gif" alt="The 3rd child element, having flex, takes up the available space." title="flex02" width="475" height="297" class="alignnone size-full wp-image-191" /></p>

<p>Note that the element only becomes flexible along the orientation axis of the box; in this case the element becomes flexible horizontally.</p>

<p>The value for box-flex is relative. So if we were to make the second and third children flexible:</p>

<pre>
<code>
#products { 
    display: box;
    box-orient: horizontal;
    }
    #computers {
        box-flex: 1;
        }
    #fast-cars {
        box-flex: 1;
        }
</code>
</pre>

<p>These would each take up the same amount of available space, in fact dividing the available space equally between them.</p>

<p><img src="http://www.the-haystack.com/wp-content/uploads/2010/01/grid02.gif" alt="2 of the 3 child elements share the available space in the parent element." title="flex03" width="475" height="297" class="alignnone size-full wp-image-192" /></p>

<p>Should we give the last child <code>box-flex: 3;</code>, then it would take three times as much available space as the second child.</p>

<p>Check out the <a href="http://www.the-haystack.com/playground/css3-flexbox/flexbox.html">demo</a> (this will only work in Firefox) or download the demo <a href="http://www.the-haystack.com/playground/css3-flexbox/flexbox.html.zip">source code</a> (.zip-file, 1kB).</p>

<p>Without even considering the other six properties, there are lots of possibilities here. Although I am not in favor of using this module for page layout, it can be done, as you can see in the demo.</p>

<p>We&#8217;ll get back to the other properties at a later date. In the meantime, if you want to play around with this, why not? It will <del datetime="2010-02-17T08:34:06+00:00">only work in Firefox</del> <ins datetime="2010-02-17T08:34:06+00:00">work in Firefox and (newer) webkit browsers</ins>; just prefix the display value and properties with <code>-moz-</code> <ins datetime="2010-02-17T08:34:06+00:00">or <code>-webkit-</code> respectively</ins>: </p>

<ul>
    <li><code>display: -moz-box;</code></li>

    <li><code>-moz-box-orient</code></li>

    <li><code>-moz-box-flex</code></li>
<li><ins datetime="2010-02-17T08:34:06+00:00"><code>display: -webkit-box;</code></ins></li>

    <li><ins datetime="2010-02-17T08:34:06+00:00"><code>-webkit-box-orient</code></ins></li>

    <li><ins datetime="2010-02-17T08:34:06+00:00"><code>-webkit-box-flex</code></ins></li>

</ul>

<p>Please be advised: this is meant to be a surface-level introduction to a draft spec. At the time of this writing, most people won&#8217;t find this applicable to anything outside of experimentation. There is, however, value in learning about the content of somewhat lesser-known working drafts, if only to be able to compare one to another.</p>

<p>Enjoy!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheHaystack?a=OjoKV6Hw52E:sZtYcXIFYvY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheHaystack?a=OjoKV6Hw52E:sZtYcXIFYvY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheHaystack/~4/OjoKV6Hw52E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/</feedburner:origLink></item>
		<item>
		<title>Never Mind the Process, Here’s the Finished Website</title>
		<link>http://feedproxy.google.com/~r/TheHaystack/~3/vwYhhbIGiqM/</link>
		<comments>http://www.the-haystack.com/2010/01/16/never-mind-the-process/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 00:02:52 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Babble]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[requirements]]></category>

		<guid isPermaLink="false">http://www.the-haystack.com/?p=165</guid>
		<description><![CDATA[Praise be to Karen McGrane, who dared to defend Lorem Ipsum. Her article couldn&#8217;t be more timely, as the festering sore that is the Cult of Content-is-King-and-Design-is-Just-a-Decorative-Sauce-on-the-Content-Entree has started to bleed profusely. And it&#8217;s pissing me off. As is the alarming thought trend that all deliverables should mimic the final product.

On content

Content is important. After [...]]]></description>
			<content:encoded><![CDATA[<p>Praise be to <a href="http://karenmcgrane.com/">Karen McGrane</a>, who dared to <a href="http://karenmcgrane.com/2010/01/10/in-defense-of-lorem-ipsum/">defend Lorem Ipsum</a>. Her article couldn&#8217;t be more timely, as the festering sore that is the Cult of Content-is-King-and-Design-is-Just-a-Decorative-Sauce-on-the-Content-Entree has started to bleed profusely. And it&#8217;s pissing me off. As is the alarming thought trend that all deliverables should mimic the final product.</p>

<h2>On content</h2>

<p>Content is important. After all, it&#8217;s content people who come up with job titles like Content Strategist, which pretty much means One Who Thinks About Content. Which content, for whom, when, where, why, how&#8230; It&#8217;s absolutely necessary, because clients don&#8217;t do it. Not at the level that it should be done.</p>

<p>Paul Rand, one of the most well-respected designers this world has seen, called design “a method of putting form and content together”. If you would agree with this statement (as I do), you can infer the role of the designer as the one who must successfully combine two <em>components</em>: form and content (the designer will first busy herself with the form component). These two are not mutually exclusive. They are separate components which share a common goal and should be developed on a parallel track to one another. This, however, does not mean that they should be <em>reviewed by the client together at every stage</em>.</p>

<h2>On clients</h2>

<p>Two quick facts about clients:</p>

<ol>    <li>Many don&#8217;t know what they want, and when they do, they don&#8217;t know how to communicate it</li>
    <li>Many lack the imagination to “see through” design sketches</li>
</ol>

<p>These are the reasons we are hired in the first place. But these two facts have paved a dangerous path across the lawn of the creative process. An alarming number of web professionals today seem to advocate making preliminary deliverables mimic the finished product&#8211; the more accurate, the better.</p>

<p>This is, well, stupid.</p>

<p>It&#8217;s not stupid if don&#8217;t track your hours. It&#8217;s not stupid if you don&#8217;t care if or how much you are paid for your work. It isn&#8217;t stupid if you don&#8217;t mind doing twice as much work for nothing. Your clients will love you for it, and you&#8217;ll be doomed to continue doing it for the rest of your career.</p>

<h2>On designing in the browser</h2>

<p>When <a href="http://www.stuffandnonsense.co.uk/">Andy Clarke</a> first started talking about “<a href="http://forabeautifulweb.com/blog/about/walls_come_tumbling_down_presentation_slides_and_transcript/">designing in the browser</a>”, I thought it was a great idea. Then people started misinterpreting this to mean “executing the creative process in the browser”. If Andy really <em>designed</em> in the browser, his designs would be shit. What he was of course referring to was the <em>execution of a design idea</em> in the browser as opposed to a tool like Photoshop, which doesn&#8217;t communicate Web Things the way a browser does. He strives for more realism in his deliverables. He&#8217;s simply working based on the two Client Truths listed above. And if you&#8217;ve ever done designs in Photoshop, you&#8217;ll know that applying client changes to those documents is akin to cutting off your own fingers one knuckle at at time. HTML is much easier.</p>

<p>That said, there is certainly a place for Photoshop <em>sketches</em>. It&#8217;s possible to put together a quick <em>visual impression</em> of a website in far less time than it would take to work out in HTML. I&#8217;m referring to the basic idea of a website, an impression of the design language, intended to gauge if we are on the write track before spending many more hours mocking things up in HTML, which is, in fact, templating. I am <em>not</em> referring to creating finished static design visuals. These are the bane of the web designer&#8217;s existence, and should be avoided at all costs. If you really understand your client&#8217;s needs, that means you&#8217;ve done your homework, and you&#8217;ve actually designed <em>before</em> the browser. Otherwise: baby steps.</p>

<h2>On communication</h2>

<p>Imagine that your job was to drive your client somewhere. They aren&#8217;t quite sure where they want to go, but a lot of sun would be nice. And perhaps water. You could drive them to California, but once they hear about Florida, they might prefer that and demand that you drive them there (at your cost, because you&#8217;re the one who chose to go ahead and drive to California).</p>

<p>A better way would be to <em>communicate</em> with the client, asking them if they prefer dry heat or humidity, surfing or Spring Break parties, earthquakes or hurricanes. Based on this information, you could show and tell about both places, help them weigh the pros and cons, and help them in their decision. Then drive. Only then.</p>

<p>Making websites is a <em>process</em>. Creativity is a <em>process</em>. Pacing and leading clients is a <em>process</em>. You&#8217;re not going to eliminate frustration by trying to come up with real content, a polished design and working browser functionality on the first go. You will lose money, though, and perhaps your sanity.</p>

<p>There&#8217;s a reason for storyboards. But wait, shouldn&#8217;t Pixar just go ahead and build and render the complete movie so that the studio execs can see how it will <em>really</em> look?. Then, if they like it, it&#8217;s done! Yeah, right. Good luck with that.</p>

<p>There&#8217;s a reason that advertising teams consist of an art director and a copywriter: design and content. They&#8217;re bed buddies. But these teams pitch <em>ideas</em>, and <em>then</em> work them out. That&#8217;s why we have wireframes. That&#8217;s why we have Photoshop. That&#8217;s why we have Lorem Ipsum. And that&#8217;s why we have, most importantly, good old pencil and paper.</p>

<h2>On balance</h2>

<p>Here&#8217;s what I think: some web professionals want to focus more on deliverables than on people. But guess what: it&#8217;s all about people. We need to help our clients along and communicate with them. If you want good deliverables the first time around, the answer is not to use “real” content and a design which is in fact finished HTML/CSS/Javascript in a real browser. The answer is to ask focused questions, discover the pressing problems, to introduce your client to your potential solutions to those problems. Give them tidbits: here&#8217;s an impression of how the site could look visually. Here are some things you might want to consider concerning your content. Work your way up to real content in a real browser. When done right, that point can come quickly.</p>

<p>It&#8217;s too much to show a client all these things at once in the very beginning. There are too many factors, and it&#8217;s impossible to tell which factors will influence their opinions at that moment, which makes revision a nightmare at best. <em>Of course</em> content and form should each be developed with the other in mind. But consider <em>presenting</em> separately at first. Yes, that could mean that Lorem Ipsum is an option. That could mean that Photoshop is an option. That could mean that a sketch on a napkin, with a good, old-fashioned <em>explanation</em> of how things work, is an option. When you know enough, put form and content together.</p>

<h2>On bed buddies</h2>

<p>And forget the content versus design war. They need each other. In the words of Paul Rand, “when form predominates, meaning is blunted. but when content predominates, interest lags.”</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheHaystack?a=vwYhhbIGiqM:CpHVBbw-A9Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheHaystack?a=vwYhhbIGiqM:CpHVBbw-A9Y:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheHaystack/~4/vwYhhbIGiqM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.the-haystack.com/2010/01/16/never-mind-the-process/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.the-haystack.com/2010/01/16/never-mind-the-process/</feedburner:origLink></item>
		<item>
		<title>2010: Let’s get this party started</title>
		<link>http://feedproxy.google.com/~r/TheHaystack/~3/yM4njAIb6-0/</link>
		<comments>http://www.the-haystack.com/2010/01/09/2010-lets-get-this-party-started/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 00:02:37 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Babble]]></category>

		<guid isPermaLink="false">http://www.the-haystack.com/?p=161</guid>
		<description><![CDATA[Man, 2009 was a tough year. I&#8217;ve had some rough years this past decade, but 2009 really did its best to piss me off, and was creative about it. Running a company (a web company) didn&#8217;t make things much easier. Luckily, the intense focus on getting stuff done paid off for work, but was personally [...]]]></description>
			<content:encoded><![CDATA[<p>Man, 2009 was a tough year. I&#8217;ve had some rough years this past decade, but 2009 really did its best to piss me off, and was creative about it. Running a <a href="http://www.cinnamon.nl" title="Cinnamon">company</a> (a <em>web</em> company) didn&#8217;t make things much easier. Luckily, the intense focus on getting stuff done paid off for work, but was personally exhausting.</p>

<h2>Some good things past</h2>

<p>2009 certainly wasn&#8217;t all bad. There were plenty of good things. Vacation here in Holland with the kids and having my sister over to visit was fantastic, as was our week in Portugal (it was my first time there and I <em>loved</em> it.</p>

<p>I finally started understanding that doing some nice things for myself is a good thing, not selfish, and very necessary. I still didn&#8217;t do enough it, though. This website still needs a design. At least that design is coming along nicely.</p>

<p>If the worst problems in life are people problems, then the opposite is also true: the best moments are people moments. People who inspire, make you laugh, people you can have fun with. (Fun. Hmmm. Need more of that this year.)</p>

<p>There were some great people moments in 2009. Great personal, family moments, but also new contacts and friendships. I&#8217;ve also had the pleasure of meeting, becoming friends with and even working with some of the finest minds in web development. People who inspire me and make me want to become better at what I do. You know who you are. And last but not least my team at Cinnamon; we spend almost every day together and despite ups and downs, we still worked hard to kick web ass for our clients.</p>

<p>I didn&#8217;t do a lot of speaking last year, but I was glad to be a part of the events where I did speak. I was honored to have been invited to speak about <a href="http://www.slideshare.net/stephenhay/the-future-state-of-layout">CSS3 layout</a> at <a href="http://fronteers.nl/congres/2009/information">Fronteers</a> in Amsterdam. <a href="http://grip2009.nl/">Grip2009</a>, the workshop event that Cinnamon and <a href="http://www.eend.nl/">Eend</a> hosted, was a success and a pleasure to do.</p>

<h2>Some good things to come</h2>

<p>There are so many cool things going on in web development right now, and so many things I&#8217;d like to do. That&#8217;s my problem, as those who know me well have witnessed: too many interests. Trying to whittle them down to something manageable is futile.</p>

<p>I won&#8217;t pretend I will have the time or inclination to do everything I want to do this year, but I&#8217;ll be happy to get <em>any</em> of them done. These are not New Year&#8217;s resolutions; I never finish those. These are simply some of the things I&#8217;d like to do, accomplish or work on this year (aside from the usual stuff like running a company and having a family):</p>

<ul>
    <li>I&#8217;d like to evangelize CSS3 layout even more, through writing, screencasts and speaking engagements. As a matter of fact, I&#8217;m enjoying speaking and would like to do more of that as well.</li>
<li>This website needs a design, badly.</li>

    <li>There are a couple of really cool projects I&#8217;m planning with really cool people which are still non-public. I&#8217;d like to work on these and make them known.</li>

    <li>I want to finish the book proposal I started more than five years ago.</li>

    <li>I&#8217;d like to start training martial arts again, so my body doesn&#8217;t always feel like I&#8217;ve been hit by a truck.</li>

    <li>Exotic vacations, become rich, have nice cars&#8230; oh, wait. Got carried away for a minute.</li>

<li>Be as prolific and productive as <a href="http://www.wait-till-i.com/">Chris Heilmann</a>. Or half. Or a third.</li> 

</ul>

<p>I could go on and on, but trust me, it would hog some serious bandwidth.</p>

<p>Most of all, I want to do what I love, to look on the bright side of things, to see possibilities, to enjoy my friends and family, to <em>have some fun</em>, and to do it all in good health.</p>

<p>I wish you the same.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheHaystack?a=yM4njAIb6-0:J2slkVyuR6w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheHaystack?a=yM4njAIb6-0:J2slkVyuR6w:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheHaystack/~4/yM4njAIb6-0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.the-haystack.com/2010/01/09/2010-lets-get-this-party-started/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.the-haystack.com/2010/01/09/2010-lets-get-this-party-started/</feedburner:origLink></item>
		<item>
		<title>Dutch translation of WCAG2 in public review</title>
		<link>http://feedproxy.google.com/~r/TheHaystack/~3/BYWXLONIfg4/</link>
		<comments>http://www.the-haystack.com/2009/11/09/dutch-translation-of-wcag2-in-public-review/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 21:24:34 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.the-haystack.com/?p=151</guid>
		<description><![CDATA[The Dutch translation of the Web Content Accessibility Guidelines (WCAG) 2.0 went into public review on November 2, 2009. It will be in review for 30 days. If you are Dutch (or are fluent in Dutch), and especially if you have knowledge in web accessibility, web development or web technologies in general, you might consider [...]]]></description>
			<content:encoded><![CDATA[<p>The Dutch translation of the Web Content Accessibility Guidelines (<abbr>WCAG</abbr>) 2.0 went into public review on November 2, 2009. It will be in review for 30 days. If you are Dutch (or are fluent in Dutch), and especially if you have knowledge in web accessibility, web development or web technologies in general, you might consider taking a look and submitting your comments. <em>Everyone is welcome to participate</em>.</p>

<p>I&#8217;m assuming that readers of this website are at least vaguely familiar with the <abbr>WCAG</abbr>. If not, you can read more about them on the <abbr title="W3C Web Accessibility Initiative">WAI</abbr> <a href="http://www.w3.org/WAI/intro/wcag.php">website</a>, as there is no reason to repeat that information here.</p>

<p>26 organizations worked in varying capacity on this translation, including <a href="http://www.cinnamon.nl/">Cinnamon</a>, represented by myself. The translation was coordinated by <a href="http://www.accessibility.nl/"><span lang="nl" xml:lang="nl">Stichting</span> Accessibility</a>, and follows the official procedure for authorized <abbr title="World Wide Web Consortium">W3C</abbr> translations.</p>

<p>After the review period, this candidate translation will be modified where necessary. It is expected that a finalized version will follow in December 2009. <em>The current draft is <strong>not</strong> the finalized version, and may not be published as such.</em></p>

<h2>Please help us review!</h2>

<p>If you would like to review, you&#8217;ll need both the original <a href="http://www.w3.org/TR/2008/REC-WCAG20-20081211/">English version</a> as well as the <a href="http://www.accessibility.nl/internet/WCAG20/WCAG20.htm">candidate Dutch translation</a>. Please send all comments to public-auth-trans-nl@w3.org.</p>

<p>Please note that the review is intended to ensure the correctness of the translation. The actual <em>content</em> of the draft will not be changed.</p>

<p>Please help out if you can! If you can&#8217;t review yourself, perhaps you can spread the word about it.</p>

<p>A <a href='http://www.the-haystack.com/wp-content/uploads/2009/11/Aankondiging-vertaling-WCAG20_def.pdf'>Dutch-language press release</a> is available (<abbr title="Portable Document Format">PDF</abbr>, 72kB).</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheHaystack?a=BYWXLONIfg4:YPnfVBz1ECg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheHaystack?a=BYWXLONIfg4:YPnfVBz1ECg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheHaystack/~4/BYWXLONIfg4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.the-haystack.com/2009/11/09/dutch-translation-of-wcag2-in-public-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.the-haystack.com/2009/11/09/dutch-translation-of-wcag2-in-public-review/</feedburner:origLink></item>
		<item>
		<title>Slides for my Fronteers 2009 presentation online</title>
		<link>http://feedproxy.google.com/~r/TheHaystack/~3/9lfdf8XWoKE/</link>
		<comments>http://www.the-haystack.com/2009/11/05/slides-for-my-fronteers-2009-presentation-online/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 16:28:44 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Babble]]></category>

		<guid isPermaLink="false">http://www.the-haystack.com/?p=148</guid>
		<description><![CDATA[Just a quick note to let interested parties know that the slides for my Fronteers 2009 presentation, The Future State of Layout, are now online. Enjoy!
]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to let interested parties know that the slides for my Fronteers 2009 presentation, The Future State of Layout, <a href="http://www.the-haystack.com/presentations/fronteers09/">are now online</a>. Enjoy!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheHaystack?a=9lfdf8XWoKE:lJLoGjacl-o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheHaystack?a=9lfdf8XWoKE:lJLoGjacl-o:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheHaystack/~4/9lfdf8XWoKE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.the-haystack.com/2009/11/05/slides-for-my-fronteers-2009-presentation-online/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.the-haystack.com/2009/11/05/slides-for-my-fronteers-2009-presentation-online/</feedburner:origLink></item>
		<item>
		<title>Grip2009: a two-day workshop for web project leads</title>
		<link>http://feedproxy.google.com/~r/TheHaystack/~3/_E8PCxopPsw/</link>
		<comments>http://www.the-haystack.com/2009/10/06/grip-2009/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 15:27:38 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.the-haystack.com/?p=127</guid>
		<description><![CDATA[It&#8217;s no secret to us web designers and developers that at least half of the factors contributing or detracting from web project success resides on the client&#8217;s side of the fence. While professional designers and developers know, understand and can exploit the success factors that belong to them, most clients don&#8217;t and/or can&#8217;t.

It&#8217;s for this [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s no secret to us web designers and developers that at least half of the factors contributing or detracting from web project success resides on the client&#8217;s side of the fence. While professional designers and developers know, understand and can exploit the success factors that belong to them, most clients don&#8217;t and/or can&#8217;t.</p>

<p>It&#8217;s for this reason that <a href="http://www.eend.nl/">Eend</a> and <a href="http://www.cinnamon.nl/">Cinnamon</a> have spent a lot of time putting together a workshop which we feel will help clients, their project leads and/or managers to get the best out of the web shops they hire. The two-day workshop has been designed to expose clients to the potential success factors and pitfalls on <em>their</em> side of the project, and to give them the tools to use this knowledge to their advantage. The entire project process from bidding to post-launch evaluation will be examined. We&#8217;ve got great speakers with very high-level, client-side web project (management) expertise, as well as a few on the development side for a well-rounded whole.</p>

<p>Grip&mdash;or rather <a href="http://www.grip2009.nl/">Grip2009</a>, as this first workshop is called&mdash;will be held on November 17 and 18, 2009, at the very posh (no, not <em>that</em> <a href="http://www.the-haystack.com/2007/04/29/jasa/"><abbr title="Plain Old Semantic HTML">POSH</abbr></a>) Grand Hotel <a href="http://www.karelv.nl/">Karel V</a> in Utrecht, The Netherlands.</p>

<p>While there are plenty of workshops and conferences for developers on building better sites, there is little practical information for <em>clients</em> on how to ensure a successful web project. We&#8217;re excited about Grip2009. We hope it will give clients the tools they need to engage with their web contractors like never before.</p>

<p><em>Unfortunately, this first edition of Grip will be completely in Dutch</em>. We haven&#8217;t ruled out an international (English) event for the near future.</p>

<p>For any Dutch readers, here&#8217;s the press release (feel free to distribute):</p>

<p>BEGIN PERSBERICHT &#8212;</p>

<p>Grip2009 – Tweedaagse workshop voor webprojectleiders</p>

<p>Op 17 en 18 november 2009 wordt in Grand Hotel Karel V te Utrecht een tweedaagse workshop voor opdrachtgevers van webprojecten gegeven: Grip2009. Het programma is samengesteld door ervaren internetprofessionals en levert, naast nuttige tips, bruikbare kennis en vaardigheden uit de praktijk om grip te krijgen op webprojecten. De nieuwe workshop, die dit jaar voor het eerst wordt gegeven, richt zich op opdrachtgevers die hun internetprojecten beter willen begeleiden.  </p>

<p>Voor opdrachtgevers van webprojecten bij het bedrijfsleven, not-for-profit-organisaties en de overheid is er momenteel weinig concrete en in de praktijk bewezen informatie beschikbaar hoe deze projecten tot een succes zijn te maken. Dat verandert met de komst van Grip2009. De workshop is bij uitstek geschikt voor mensen die aan klantzijde betrokken zijn bij de inkoop, de ontwikkeling en het beheer van internetprojecten, of mensen die een carrièrestap overwegen in deze richting.</p>

<p>Er zijn maximaal 60 plaatsen beschikbaar voor dit unieke evenement. Snelle beslissers kunnen tot 16 oktober profiteren van een flinke korting. Meer informatie vindt u op: www.grip2009.nl</p>

<p>EINDE PERSBERICHT &#8212;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheHaystack?a=_E8PCxopPsw:Yx31HzfbNxY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheHaystack?a=_E8PCxopPsw:Yx31HzfbNxY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheHaystack/~4/_E8PCxopPsw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.the-haystack.com/2009/10/06/grip-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.the-haystack.com/2009/10/06/grip-2009/</feedburner:origLink></item>
		<item>
		<title>Useful vim stuff: css_color.vim</title>
		<link>http://feedproxy.google.com/~r/TheHaystack/~3/61E5Pg-xXzE/</link>
		<comments>http://www.the-haystack.com/2009/07/30/useful-vim-stuff-css_color-vim/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 21:49:49 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[syntax]]></category>

		<guid isPermaLink="false">http://www.the-haystack.com/?p=104</guid>
		<description><![CDATA[As a vim user and CSS author, I&#8217;ve found the css_color.vim syntax file to be pretty handy. It shows hex codes in their actual color. If you use vim and do much CSS, you might like to try it out.



css_color.vim in action: hex values are underlayed with the corresponding color.
]]></description>
			<content:encoded><![CDATA[<p>As a <a href="http://vim.org/">vim</a> user and <abbr title="Cascading Style Sheets">CSS</abbr> author, I&#8217;ve found the <a href="http://www.vim.org/scripts/script.php?script_id=2150">css_color.vim</a> syntax file to be pretty handy. It shows hex codes in their actual color. If you use vim and do much <abbr>CSS</abbr>, you might like to try it out.</p>

<p><img src="http://www.the-haystack.com/wp-content/uploads/2009/07/css_color.png" alt="CSS color syntax file for vim" title="css_color" width="494" height="248" class="size-full wp-image-105" /></p>

<p>css_color.vim in action: hex values are underlayed with the corresponding color.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheHaystack?a=61E5Pg-xXzE:Yha2O7QGcL8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheHaystack?a=61E5Pg-xXzE:Yha2O7QGcL8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheHaystack/~4/61E5Pg-xXzE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.the-haystack.com/2009/07/30/useful-vim-stuff-css_color-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.the-haystack.com/2009/07/30/useful-vim-stuff-css_color-vim/</feedburner:origLink></item>
		<item>
		<title>Designing this site, part 2: Values, goals and requirements</title>
		<link>http://feedproxy.google.com/~r/TheHaystack/~3/wDGbLR8638A/</link>
		<comments>http://www.the-haystack.com/2009/07/24/designing-this-site-part2-goals/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 07:26:45 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Redesign]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[requirements]]></category>

		<guid isPermaLink="false">http://www.the-haystack.com/?p=91</guid>
		<description><![CDATA[A week of hard client work behind me and it&#8217;s time to be my own client. And just as my clients would tell you when I badger them with the questions I&#8217;ll be asking myself, the first part of good design is not necessarily the fun part. It&#8217;s about asking questions, sometimes difficult, but always [...]]]></description>
			<content:encoded><![CDATA[<p>A week of hard client work behind me and it&#8217;s time to be my own client. And just as my clients would tell you when I badger them with the questions I&#8217;ll be asking myself, the first part of good design is not necessarily the fun part. It&#8217;s about asking questions, sometimes difficult, but always meant to encourage focus. Focus on what the website <em>needs</em> to be, and for whom.</p>

<p>As I mentioned last week, I&#8217;m redesigning this website, which for non-colorblind visitors is the pukey–green monstrosity before you. The color combination has been a joy to me, watching people dry–heave and reach for their feed readers while they still had the chance. But those days are numbered. I consider it quite unacceptable to be creative director of a <a href="http://www.cinnamon.nl">reputable web design firm</a> and not have a personal site which shows the same amount of thought and effort that goes into client work.</p>

<p>I&#8217;ll be putting my money where my mouth is, and using the same process I&#8217;ve evangelized for years and use for clients all the time. The <a href="http://changethis.com/48.04.DesignFunnel">Design Funnel</a> is nothing new; many designers follow similar processes. I claim no patented process. It&#8217;s simply a (traditional?) process which I&#8217;d like to see more designers utilize, especially in this age of jumping–right–into–Photoshop, but also for those who don&#8217;t <em>sketch</em> before designing in the browser. It&#8217;s about thinking through before doing. It&#8217;s about <em>design</em> instead of <em>decoration</em>, which is so prevalent on today&#8217;s Web. This site is an example of decoration, and that shows. And that&#8217;s a pity.</p>

<p>Step one is defining values and goals. Defining the problem isn&#8217;t enough (and defining possible solutions at this point borders on evil—if you&#8217;re a designer, you know that a <em>lot</em> of clients tend to do this). My problem is pretty much stated in the second paragraph. But what&#8217;s important to me? Let&#8217;s not worry about formulating at this stage. This stage is about aggregation. To do this, I&#8217;ll answer some of the questions I ask my own clients.</p>

<h2>What do I want (the site) to communicate, show, tell or do?</h2>

<p>I work hard, with a talented team, for some awesome clients, many of whom are very happy with our work. Client work is nevertheless sprinkled with compromise and factors such as existing brain–dead branding by brain–dead design firms. This is actually the hallmark of good designers: working within constraints. But that doesn&#8217;t mean it&#8217;s easy. It also doesn&#8217;t mean the end result will fit your personal taste.</p>

<p>The Haystack <em>should</em> fit my personal taste. It should be what I feel is appropriate design, and I want to design it myself. It should demonstrate my ability as a designer and art director, and should adapt to the content I choose to publish. It should not overpower the content, nor should it be mere decoration for the content. It should be pleasurable to visit and read (okay, calmly, slowly, place the feed reader on the ground and kick it over to me). </p>

<p>It should be an online repository for all thoughts, ideas, discoveries, code, images, sketches and anything else I&#8217;d like to share publicly. It should be technically adaptable to my usual flurries of endless ideas, re-evaluation and mind–changing. It&#8217;s a bird, it&#8217;s a plane, it&#8217;s…</p>

<h2>For whom?</h2>

<p>I&#8217;ll be writing and posting about things for which I have a passion, and that means mostly design and web development, art, technology and any combination thereof. Therefore the audience will be (and is) industry creatives, developers and perhaps a few societal misfits <ins datetime="2009-07-24:T12:00:00Z" title="Changed as a result of fschaap's comment on this post.">and some very <a href="#comment-148263">nice people</a></ins>. Oh yeah—some family and friends who will get here by clicking on the little blue <em>E</em>.</p>

<h2>Any branding guidelines or creative considerations?</h2>

<p>No brand. But the site should make a mark by being recognizable. Creatively, I&#8217;d like to be able to tailor the design of posts and pages to the content. Being able to <a href="http://www.zeldman.com/daily/0403b.shtml#artdirection">art direct</a> my own posts will be one of the biggest advantages to the redesign. <a href="http://jasonsantamaria.com/articles/a-new-day/">Jason Santa Maria does this</a> fantastically; he&#8217;s chosen not to let his <abbr title="Content Management System">CMS</abbr> determine his design possibilities. The new site should allow me to art direct the full design of a post: type, color, layout and imagery.</p>

<p>It should be standards–compliant. It should be accessible. It should uphold basic usability principles, but I&#8217;m giving myself some space on that one. Usability purists, simply turn off <abbr>CSS</abbr> completely, thank you.</p>

<h2>Technical considerations?</h2>

<ul>
<li>Write it in <abbr>HTML5</abbr>, just for the challenge of getting the design I want using a moving target. I will, however, think twice about using vague so-called “semantic” elements like <code>&amp;lt;aside&amp;gt;</code>.</li>
<li>Use as much <abbr>CSS3</abbr> as possible. Not necessarily the decorative stuff like <code>border-radius</code> et. al., but really cool stuff like <a href="http://www.w3.org/TR/css3-mediaqueries/">media queries</a> and the tastier <a href="http://www.w3.org/TR/css3-selectors">selectors</a>.</li>
<li>Use <a href="http://drupal.org">Drupal</a>, because I&#8217;ve got 2+ years experience with it, and it will allow me the flexibility I want in implementing a design. Plus, it is quite awesome.</li>
</ul>

<h2>Next steps</h2>

<p>Reading through this, I realize that if a client had sent this to me as their wish list, I would&#8217;ve had a conniption fit at the office. It&#8217;s a good thing I know what I mean by all of the above. Now that I&#8217;ve got it typed out, though, it&#8217;s enough to get the ideas flowing. We&#8217;ll cover it and let it simmer for a while.</p>

<p>And then it will be time to start sketching.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheHaystack?a=wDGbLR8638A:MyxJ4FLdIDs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheHaystack?a=wDGbLR8638A:MyxJ4FLdIDs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheHaystack/~4/wDGbLR8638A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.the-haystack.com/2009/07/24/designing-this-site-part2-goals/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.the-haystack.com/2009/07/24/designing-this-site-part2-goals/</feedburner:origLink></item>
		<item>
		<title>Designing this site: prologue</title>
		<link>http://feedproxy.google.com/~r/TheHaystack/~3/j8FGoNkFkYk/</link>
		<comments>http://www.the-haystack.com/2009/07/16/designing-this-site-prologue/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 09:29:19 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Redesign]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.the-haystack.com/?p=86</guid>
		<description><![CDATA[I don&#8217;t blog much. Which is weird, because I have plenty of things I&#8217;d love to just get down “on paper”, so to speak. But I&#8217;m a designer. I love beautiful things. This blog in its current form doesn&#8217;t fall into that category. That makes it less enticing to deal with.

Fact is, client work comes [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t blog much. Which is weird, because I have plenty of things I&#8217;d love to just get down “on paper”, so to speak. But I&#8217;m a designer. I love beautiful things. This blog in its current form doesn&#8217;t fall into that category. That makes it less enticing to deal with.</p>

<p>Fact is, client work comes first during work time. And family comes first during personal time (and work creeps in all too often). So when to blog? When to play around with stuff I can&#8217;t play around with (yet) in client work?</p>

<p>In one of our recent conversations on the highs and woes :) of web work, <a href="http://www.quirksmode.org">ppk</a> suggested that I kill two birds with one stone: design my blog and write about the process. So I can actually do my own blog design (the current one is a third-party <abbr title="WordPress">WP</abbr> theme) and write on the blog at the same time, instead of waiting until the design is “finished”, which all of you designers out there know is never the case. </p>

<p>It made me think about <a href="http://www.markboulton.co.uk/journal/comments/design_by_community/">what Mark Boulton and Leisa Reichelt did</a> for Drupal, and <a href="http://forabeautifulweb.com/blog/about/the_new_internationalist_home_page_challenge/">what Andy did</a> with New Internationalist. Not necessarily the part about inviting feedback (which was a key factor in Mark&#8217;s process), but the part about <em>publishing</em> the process. Being open about this process will allow me to “think out loud”. And I&#8217;m sure some of my talented friends will give helpful and critical feedback along the way.</p>

<p>So my thoughts at this point are basically:</p>

<ul>
    <li>Create the design I want, which should at least <em>hint</em> at the fact that I am an experienced designer.</li>
    <li>Switch from WordPress to <a href="http://drupal.org">Drupal</a>. While I like WordPress, I <em>love</em> Drupal and know much more about using it.</li>
    <li>Use <a href="http://www.w3.org/TR/html5/">HTML5</a>. Like it or not, HTML5 is coming, and now&#8217;s the time to start playing with it. Some problems with HTML5 are <a href="http://www.alistapart.com/articles/semanticsinhtml5/">obvious</a>, but others will only see light in practice.</li>    
<li>Although I&#8217;m not a fan of the mainly decorative parts of <a href="http://www.w3.org/Style/CSS/current-work">CSS3</a> which browsers have been quick to implement, there are some parts of CSS3 I&#8217;d already like to take advantage of.</li>
</ul>

<p>That&#8217;s a start. I&#8217;ll be posting my thoughts, sketches and experiences here, documenting what I can for myself and whoever might be interested.</p>

<p>We&#8217;ll see where it goes.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheHaystack?a=j8FGoNkFkYk:iqKQKjrH7n0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheHaystack?a=j8FGoNkFkYk:iqKQKjrH7n0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheHaystack?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheHaystack/~4/j8FGoNkFkYk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.the-haystack.com/2009/07/16/designing-this-site-prologue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.the-haystack.com/2009/07/16/designing-this-site-prologue/</feedburner:origLink></item>
	</channel>
</rss>
