<?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>The McCoy Blog</title>
	<atom:link href="http://mccoy.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://mccoy.co.uk/blog</link>
	<description>All that stuff that the art director Rich McCoy is upto</description>
	<lastBuildDate>Tue, 10 Aug 2010 09:30:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Pulling rss with php</title>
		<link>http://mccoy.co.uk/blog/2010/08/pulling-rss-content-through-with-php/</link>
		<comments>http://mccoy.co.uk/blog/2010/08/pulling-rss-content-through-with-php/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 08:59:38 +0000</pubDate>
		<dc:creator>Rich</dc:creator>
				<category><![CDATA[portfolio]]></category>

		<guid isPermaLink="false">http://mccoy.co.uk/blog/?p=290</guid>
		<description><![CDATA[A few folks have asked how I pull the blog feeds through to this home page, so here is the code I use, as a little gift for being awesome people, I have pulled it through exactly as I use it so that you can see and toy with a working example in all it [...]]]></description>
			<content:encoded><![CDATA[<p>A few folks have asked how I pull the blog feeds through to this home page, so here is the code I use, as a little gift for being awesome people, I have pulled it through exactly as I use it so that you can see and toy with a working example in all it nasty detail.</p>
<p><span id="more-290"></span></p>
<pre>&lt;div id="news"&gt;
 &lt;h3&gt;&lt;span&gt;Web design &lt;/span&gt;News and other stuff&lt;span&gt; like general design stuff, freelance issues web site portfolio updates and general guff otherwise known as a bit of chit chat&lt;/span&gt;:&lt;/h3&gt;

&lt;ul&gt;

&lt;?php

set_time_limit(0);

$file = "http://mccoy.co.uk/blog/wp-rss.php";

$rss_channel = array();
$currently_writing = "";
$main = "";
$item_counter = 0;

function startElement($parser, $name, $attrs) {
 global $rss_channel, $currently_writing, $main;
 switch($name) {
 case "RSS":
 case "RDF:RDF":
 case "ITEMS":
 $currently_writing = "";
 break;
 case "CHANNEL":
 $main = "CHANNEL";
 break;
 case "ITEM":
 $main = "ITEMS";
 break;
 default:
 $currently_writing = $name;
 break;
 }
}

function endElement($parser, $name) {
 global $rss_channel, $currently_writing, $item_counter;
 $currently_writing = "";
 if ($name == "ITEM") {
 $item_counter++;
 }
}

function characterData($parser, $data) {
 global $rss_channel, $currently_writing, $main, $item_counter;
 if ($currently_writing != "") {
 switch($main) {
 case "CHANNEL":
 if (isset($rss_channel[$currently_writing])) {
 $rss_channel[$currently_writing] .= $data;
 } else {
 $rss_channel[$currently_writing] = $data;
 }
 break;
 case "ITEMS":
 if (isset($rss_channel[$main][$item_counter][$currently_writing])) {
 $rss_channel[$main][$item_counter][$currently_writing] .= $data;
 } else {
 $rss_channel[$main][$item_counter][$currently_writing] = $data;
 }
 break;
 }
 }
}

$xml_parser = xml_parser_create();
xml_set_element_handler($xml_parser, "startElement", "endElement");
xml_set_character_data_handler($xml_parser, "characterData");
if (!($fp = fopen($file, "r"))) {
 die("could not open XML input");
}

while ($data = fread($fp, 4096)) {
 if (!xml_parse($xml_parser, $data, feof($fp))) {
 die(sprintf("XML error: %s at line %d",
 xml_error_string(xml_get_error_code($xml_parser)),
 xml_get_current_line_number($xml_parser)));
 }
}
xml_parser_free($xml_parser);

// output HTML

if (isset($rss_channel["ITEMS"])) {
 if (count($rss_channel["ITEMS"]) &gt; 0) {

 for($i = 0;$i &lt; 3;$i++) {
//        for($i = 0;$i &lt; count($rss_channel["ITEMS"]);$i++) {
 if (isset($rss_channel["ITEMS"][$i]["LINK"])) {
 print ("\n&lt;li class=\"sectionhomeintro sectionhomelistitem quiet\"&gt;&lt;h4&gt;" . $rss_channel["ITEMS"][$i]["CATEGORY"] . "&lt;a href=\"" . $rss_channel["ITEMS"][$i]["LINK"] . "\" &gt;" . $rss_channel["ITEMS"][$i]["TITLE"] . "&lt;/a&gt;&lt;/h4&gt;&lt;span&gt;");
 } else {
 print ("\n&lt;li class=\"sectionhomeintro sectionhomelistitem quiet\"&gt;&lt;h4&gt;" . $rss_channel["ITEMS"][$i]["CATEGORY"] . "&lt;br /&gt;" . $rss_channel["ITEMS"][$i]["TITLE"] . "&lt;/h4&gt;&lt;span&gt;");
 }

 print ("" . $rss_channel["ITEMS"][$i]["DESCRIPTION"] . "");

 print ("&lt;/span&gt;&lt;/li&gt;");
 }
 } else {
 print ("&lt;li class=\"notme\"&gt;&lt;span&gt;There are no articles in this feed.&lt;/span&gt;&lt;/li&gt;");
 }
}

?&gt;

 &lt;/ul&gt;
 &lt;a href="http://www.mccoy.co.uk/blog/"&gt;&lt;img src="/bucket/furniture_pixels/more.gif" alt="Read the rest of the news" /&gt;&lt;/a&gt;
 &lt;/div&gt;&lt;!-- close news --&gt;

Any refinements or improvements are most welcome just add a comment.

I would also be interested if anyone has a solution as to how to pull in WordPress post image content. in the same manner!</pre>
]]></content:encoded>
			<wfw:commentRss>http://mccoy.co.uk/blog/2010/08/pulling-rss-content-through-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Micropoetry</title>
		<link>http://mccoy.co.uk/blog/2010/07/micropoetry/</link>
		<comments>http://mccoy.co.uk/blog/2010/07/micropoetry/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 23:51:32 +0000</pubDate>
		<dc:creator>Rich</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mccoy.co.uk/blog/?p=271</guid>
		<description><![CDATA[I have taken up commuting again and to make the trip more palatable and playful I have decided that I will sculpt a micropoem on each inbound trip at least and tweet them daily on my arrival at work. All poems are for now available at Micropoems.com in the future I intend to combine them with some [...]]]></description>
			<content:encoded><![CDATA[<p>I have taken up commuting again and to make the trip more palatable and playful I have decided that I will sculpt a micropoem on each inbound trip at least and tweet them daily on my arrival at work.</p>
<p>All <em>poems</em> are for now available at <strong><a href="http://micropoems.com">Micropoems</a><a href="http://micropoems.com">.com</a></strong> in the future I intend to combine them with some photos / paintings I&#8217;m working in and make them into a little Ltd edition book.</p>
]]></content:encoded>
			<wfw:commentRss>http://mccoy.co.uk/blog/2010/07/micropoetry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Soul Mate &#8211; Redux, and adventure back into painting</title>
		<link>http://mccoy.co.uk/blog/2010/06/soul-mate-redux-and-aventure-back-into-painting/</link>
		<comments>http://mccoy.co.uk/blog/2010/06/soul-mate-redux-and-aventure-back-into-painting/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 09:32:51 +0000</pubDate>
		<dc:creator>Rich</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mccoy.co.uk/blog/?p=272</guid>
		<description><![CDATA[The ever decreasing few who know me in the physical world as well as he digital will be aware that my background is in the fine arts and if you&#8217;ve ever had the dubious pleasure of being my house guest will be aware of the large painting that&#8217;s always adorned my walls entitled &#8216;Soul mate&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>The ever decreasing few who know me in the physical world as well as he digital will be aware that my background is in the fine arts and if you&#8217;ve ever had the dubious pleasure of being my house guest will be aware of the large painting that&#8217;s always adorned my walls entitled &#8216;Soul mate&#8217; and dealt with the idea of sailing through life&#8217;s troublesome waters alone and searching for and hopefully finding a soul mate.<span id="more-272"></span> The painting was created back in 1998 &#8211; 1999 whilst living alone in a state of shyness imposed celibacy, there it has hand and annoyed me a little that it appeared to not have enough density behind it, so 11 years later I have re-painted it, inspired by new people, surroundings and conversations and it has spawned a renewed love in painting again. there are many more paintings of this type planned and weekends willing they should be up here soon. I would dearly love to find a place to show hem publicity but that will come when there are enough of them and when I find a place to do it.</p>
<p>I&#8217;s all built with some old bits of paper, the side of a found dolls house a boat, some tricky painting techniques, some Dulux New Zealand range paints and signed by a cloth label (signatures are so last year, don&#8217;t you know).</p>
<p>Anyway, feedback and suggestions of improvements are always welcome, play nice and play fair.</p>
<p><a href="http://mccoy.co.uk/blog/wp-content/uploads/2010/06/CIMG0044.jpg"><img class="size-medium wp-image-273 alignleft" title="Soul Mate - Close Up" src="http://mccoy.co.uk/blog/wp-content/uploads/2010/06/CIMG0044-300x225.jpg" alt="" width="300" height="225" /></a> <a href="http://mccoy.co.uk/blog/wp-content/uploads/2010/06/CIMG0047.jpg"><img class="size-medium wp-image-274 aligncenter" title="Soul Mate - Side" src="http://mccoy.co.uk/blog/wp-content/uploads/2010/06/CIMG0047-225x300.jpg" alt="" width="225" height="300" /></a><a href="http://mccoy.co.uk/blog/wp-content/uploads/2010/06/CIMG0046.jpg"><img class="size-medium wp-image-276 alignleft" title="Sole Mate - Total" src="http://mccoy.co.uk/blog/wp-content/uploads/2010/06/CIMG0046-225x300.jpg" alt="" width="225" height="300" /></a> <a href="http://mccoy.co.uk/blog/wp-content/uploads/2010/06/CIMG0042.jpg"><img class="alignright size-medium wp-image-278" title="Sole Mate - Signiture" src="http://mccoy.co.uk/blog/wp-content/uploads/2010/06/CIMG0042-300x225.jpg" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mccoy.co.uk/blog/2010/06/soul-mate-redux-and-aventure-back-into-painting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The manners of contact / feedback form design</title>
		<link>http://mccoy.co.uk/blog/2010/06/the-manners-of-contact-feedback-form-design/</link>
		<comments>http://mccoy.co.uk/blog/2010/06/the-manners-of-contact-feedback-form-design/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 09:34:31 +0000</pubDate>
		<dc:creator>Rich</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[information architecture]]></category>

		<guid isPermaLink="false">http://mccoy.co.uk/blog/?p=266</guid>
		<description><![CDATA[Just a quick post to get this off my mind, its a simple little idea but I would argue that it makes a heap of difference to how users feel when they contact you and the quality of the information they provide when they do. Okay so what is more polite and encouraging of engagement to you? [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick post to get this off my mind, its a simple little idea but I would argue that it makes a heap of difference to how users feel when they contact you and the quality of the information they provide when they do.<span id="more-266"></span></p>
<p>Okay so what is more polite and encouraging of engagement to you?</p>
<p>1: &#8220;Hi how can I help you? Now if you let us know how we can get back in touch with you and we will see what we can do.&#8221;</p>
<p>or the more adopted standard of</p>
<p>2: &#8220;Who are you? How can we contact you? What did you want to say?&#8221;</p>
<p>Now if your anything like as human as I aspire to be the former is going to engage you more then the latter, the first understands that you have navigated to the page in order to engage and offers you that chance to engage first before asking you to qualify your message with the mundane contact details. The second asks you for the mundane before engaging with the reason for your navigating there. There may well be some benefits in placing a distraction between the driver of the requirement to converse and the facilitation of the conversation, but I wager they are more of an exception then a rule.</p>
<p>Just to clarify I propose that the layout of a generic contact / feedback form should be:</p>
<p>ASK THEM WHAT THEY WANT TO SAY</p>
<p>then</p>
<p>ASK THEM FOR THERE DETAILS</p>
<p>Quite simple isn&#8217;t it and a damned site friendlier and appears more interested in what the user has to say then garnering contact details for your databases.</p>
<p>Go on give it a try, and let us know how it went or simply just add your thoughts in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://mccoy.co.uk/blog/2010/06/the-manners-of-contact-feedback-form-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New work for London Zoo</title>
		<link>http://mccoy.co.uk/blog/2010/05/new-work-for-london-zoo/</link>
		<comments>http://mccoy.co.uk/blog/2010/05/new-work-for-london-zoo/#comments</comments>
		<pubDate>Mon, 24 May 2010 11:57:34 +0000</pubDate>
		<dc:creator>Rich</dc:creator>
				<category><![CDATA[portfolio]]></category>

		<guid isPermaLink="false">http://mccoy.co.uk/blog/?p=260</guid>
		<description><![CDATA[I have just uploaded a selection of the panels I designed that are now part of the London Zoo&#8217;s big cat enclosure that details the dangers to these beauties.  I finished them back in February but am only now managing to get an opportunity to update this site, amongst moving, working with Cucumber and designing [...]]]></description>
			<content:encoded><![CDATA[<p>I have just uploaded a selection of the panels I designed that are now part of the <a href="http://mccoy.co.uk/portfolio/DisplayLondonZoo.php">London Zoo&#8217;s big cat enclosure</a> that details the dangers to these beauties.  I finished them back in February but am only now managing to get an opportunity to update this site, amongst moving, working with Cucumber and designing the new Liberty Human Rights web site life is a little on the manic side so once again apologies for the lag in replying to emails, I do love you and I love hearing form all you folks both socially and project related.</p>
]]></content:encoded>
			<wfw:commentRss>http://mccoy.co.uk/blog/2010/05/new-work-for-london-zoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dancing with a Cucumber</title>
		<link>http://mccoy.co.uk/blog/2010/05/partnership-with-cucumber-in-new-zealand/</link>
		<comments>http://mccoy.co.uk/blog/2010/05/partnership-with-cucumber-in-new-zealand/#comments</comments>
		<pubDate>Thu, 06 May 2010 23:13:03 +0000</pubDate>
		<dc:creator>Rich</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mccoy.co.uk/blog/2010/05/partnership-with-cucumber-in-new-zealand/</guid>
		<description><![CDATA[I&#8217;ve taken up a new post leading the design side of Cucumber a cracking digital agency based in Tauranga in the Bay of Plenty, New Zealand. I&#8217;ll still be taking on new projects through this site, and with the added support of Cucumber&#8217;s accomplished development team I&#8217;ll be able to deliver much more complex digital [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve taken up a new post leading the design side of Cucumber a cracking digital agency based in Tauranga in the Bay of Plenty, New Zealand. I&#8217;ll still be taking on new projects through this site, and with the added support of Cucumber&#8217;s accomplished development team I&#8217;ll be able to deliver much more complex digital solutions. I&#8217;ll still be taking on smaller design &amp; Illustration projects myself though as and when something arrives that peaks my interest.</p>
]]></content:encoded>
			<wfw:commentRss>http://mccoy.co.uk/blog/2010/05/partnership-with-cucumber-in-new-zealand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just a quicky</title>
		<link>http://mccoy.co.uk/blog/2010/01/quick-update-new-projects/</link>
		<comments>http://mccoy.co.uk/blog/2010/01/quick-update-new-projects/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 16:18:50 +0000</pubDate>
		<dc:creator>Rich</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mccoy.co.uk/blog/2010/01/quick-update-new-projects/</guid>
		<description><![CDATA[Just a quick update to apologies to all those folks I&#8217;ve not replied to emails and requests to (I don&#8217;t like being one of THOSE people). Secondly the reason that I&#8217;ve become one of those folks is because I&#8217;ve landed some big yet quick turn around jobs that I need to sort out asap. The [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick update to apologies to all those folks I&#8217;ve not replied to emails and requests to (I don&#8217;t like being one of THOSE people). Secondly the reason that I&#8217;ve become one of those folks is because I&#8217;ve landed some big yet quick turn around jobs that I need to sort out asap. The jobs are for 7UP through Spook Media, the Liberty Human Rights redesign and a separate campaign and some design work for the signage at London Zoo for the BIG CATS exhibit, plus numerous other projects waiting in the wings shouting at me for there attention. So if your one of those shouting for my attention I promise you&#8217;ll have it soon and I don&#8217;t mean to be an arse.</p>
]]></content:encoded>
			<wfw:commentRss>http://mccoy.co.uk/blog/2010/01/quick-update-new-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lost days of sound exploration</title>
		<link>http://mccoy.co.uk/blog/2010/01/lost-days-of-sound-exploration/</link>
		<comments>http://mccoy.co.uk/blog/2010/01/lost-days-of-sound-exploration/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 09:51:43 +0000</pubDate>
		<dc:creator>Rich</dc:creator>
				<category><![CDATA[Sound]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://mccoy.co.uk/blog/?p=253</guid>
		<description><![CDATA[Way back in the day, before I got involved in all this interactive &#38; graphical design I was a fine art student and spent my days making films and noise. I would make electric guitars and other electric noise making devices out of all sorts, old tape players with the reading heads removed and placed [...]]]></description>
			<content:encoded><![CDATA[<p>Way back in the day, before I got involved in all this interactive &amp; graphical design I was a fine art student and spent my days making films and noise. I would make electric guitars and other electric noise making devices out of all sorts, old tape players with the reading heads removed and placed into hand units, guitars out of old speaker box&#8217;s and all sorts of joyous nonsense.<span id="more-253"></span></p>
<p>I pretty much stopped when I got kids and a way to feed them during the day as the only time to make a lot of noise was in the evening when they where asleep, and sleeping kids and feed back loops don&#8217;t make good sleeping partners.</p>
<p>The other day I was playing with my 2 year old son with iTunes showing him some Pan Sonic and I found a track I had recorded back in the early 1990&#8242;s that was made with a home made guitar &amp; tape device and recorded live.</p>
<p>The track is more of a sound scape then a song, I would hesitate to call it music, I may work it together with my other lost art of film making one day when life is less busy and hectic, I may not, who knows.</p>
<p>Anyway here it is: <a href="http://www.mccoy.co.uk/bucket/music/Downstream.mp3">Rich McCoy &#8211; Downstream</a></p>
<p>Maybe one day I&#8217;ll get back to tinkering with sound again and rediscover those lost days with an added maturity and experience, maybe not, its fun and I enjoy it, and maybe a select few sonic adventurers will get a kick out of it too.</p>
]]></content:encoded>
			<wfw:commentRss>http://mccoy.co.uk/blog/2010/01/lost-days-of-sound-exploration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.mccoy.co.uk/bucket/music/Downstream.mp3" length="5310449" type="audio/mpeg" />
		</item>
		<item>
		<title>A slight rant on the state of web site forms</title>
		<link>http://mccoy.co.uk/blog/2009/12/a-slight-rant-on-the-state-of-web-site-forms/</link>
		<comments>http://mccoy.co.uk/blog/2009/12/a-slight-rant-on-the-state-of-web-site-forms/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 00:55:38 +0000</pubDate>
		<dc:creator>Rich</dc:creator>
				<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://mccoy.co.uk/blog/?p=239</guid>
		<description><![CDATA[Forms are often the most over looked aspect of a web site, ironically they are also one of the most important as they act as the conduit for interaction and activity. I&#8217;m not going to talk about how to make accessible forms or even how to make pretty forms that&#8217;s been covered elsewhere, what I [...]]]></description>
			<content:encoded><![CDATA[<p>Forms are often the most over looked aspect of a web site, ironically they are also one of the most important as they act as the conduit for interaction and activity.<span id="more-239"></span></p>
<p>I&#8217;m not going to talk about how to make accessible forms or even how to make pretty forms that&#8217;s been covered elsewhere, what I am going to do is talk about things that I constantly encounter that drive me mad and curse the fact that I ever got involved in the internet way back in the early 90&#8242;s and damn my brothers and sisters who build these silly things!</p>
<ol class="biggerlist">
<li>
<h3>Please remember me.</h3>
<p>The worse culprits for this are travel web sites and are the reason I hate using online systems for booking travel. This is the little story, are you sitting comfortably? I pop into a travel agents with my wife and kids, I have there passports and I sit down with the rather dim looking travel agent and I explain that I would like to go to Fiji for a couple of weeks, probably about the end of September. She asks for mine and my families names, dates of birth etc. and goes off to look for a suitable break, there is nothing that month, do I want to try another month?</p>
<p>Yes sure why not! Okay she says, whats your names, dates of birth and&#8230; now come on do we have to go through that again, I just told you, did you not remember?</p>
<p>Nope says the dim travel agent.</p>
<p>Annoying is it not?</p>
<p>Why the hell do we do that online, I know its easier on the severs and ho-has and technical whatsits, but as a user I don&#8217;t care, make my transaction easier and I&#8217;ll do it otherwise I&#8217;ll settle for a week in a caravan at the bottom of the road rather then deal with you.</p>
<p>For forms that are part of a possible multiple use search, <strong>remember what I entered and let me change the variances I want.</strong></li>
<li>
<h3>Don&#8217;t tease me.</h3>
<p>The worse ones for these are job advertisement sites where&#8230; yes I know you should read a form all the way through before starting to fill it in but they are the old rules and there are new ones now, things have changed&#8230; anyway as I was saying Job sites and job applications, I lie to spend time on these an do them properly, crafting each answer to a question, as is fitting for a Creative Director position, and it takes some time but its always at the bottom that they ask you for some form of qualifying information, such as &#8216;You need to have the write to work in the USA in order to apply for this possible, do you have either a&#8230;&#8217; <strong>If there is some qualifying information required ASK IT FIRST</strong>.</li>
<li>
<h3>Don&#8217;t ask me questions I can&#8217;t answer, or make me tell lies.</h3>
<p>There are many different instances of this but the one I encounter most is the post code / zip code one. At the moment I live in a fairly rural part of the Republic of Ireland and we have a limited number of online services so if I want most things I have to order them from either America or the UK and that&#8217;s fine, its the price you pay for living in a beautiful tranquil and wet part of the world. However another thing that this area doesn&#8217;t have is Post codes, I don&#8217;t know why, maybe they just never needed them as every one knows everyone else anyway. So when I want to fill in a form an the postcode is mandatory even though I&#8217;ve told you <strong>I don&#8217;t live in the USA and don&#8217;t have a pesky zip code</strong>, your dumb arsed web site insists that I tell you one or you wont take my money, so I have to lie and make one up.</li>
<li>
<h3>Realize its not always this or that, sometimes its a bit of the other.</h3>
<p>This point is somewhat related to the point above about not making me lie, in that form developers often forget that people are woolly and awkward and there lives don&#8217;t fit into one of five selection options so if you are going to ask me something like whats my eye colour is it: Blue, Brown, Red also <strong>add an &#8216;other&#8217; option</strong> because they are green, and I&#8217;ve known people with eyes of differing colours, yes I know its a stupid example but its late and my eyes want to be sleeping not defining there colour.</li>
<li>
<h3>I&#8217;m sorry I don&#8217;t understand the question.</h3>
<p>What the hells a whoozit? Its a common problem on the internet in copy &amp; taxonomy (organizing the information into a categorization system other wise known in web design as a navigation structure) to use terms that only industry or company insiders understand, but the wounds cut deeper if its part of a direct question requiring them to understand your grammar in order to respond. There are some instances where the understanding of the terminology is an important positive qualifier for the conversation for example a job application requiring specific understanding, but they are more the exception to the rule then the rule.<strong> Use simple language that you granny would understand.</strong></li>
<li>
<h3>Don&#8217;t be a sneaky, nosey parker.</h3>
<p>I can not stand forms that are broken into many tiny pieces that require me to input a little bit of information then submit that bit go and make brew then come back and do a bit more and so on and so forth. Mind use I also get anxiety attacks when I&#8217;m faced with massive forms that want to know everything about me.</p>
<p>As a rule<strong> if you don&#8217;t need to know something don&#8217;t ask</strong>, you&#8217;ll make my life easier but not making me fill in the name of my first dog. If you do need to ask lots of questions then break the form into groups and use something like a <a href="http://jquery.bassistance.de/accordion/demo/">jQuery Accordian</a> to allow me to collapse and show, perhaps even purposefully ignore certian parts of your form, maybe you would even want to develop a scrip that expand the next group of questions when you have finished the proceeding, but still allows me to read through all the questions at my desire.</li>
<li>
<h3>Don&#8217;t play games, tell me where I went wrong, and tell me now.</h3>
<p>Imagine the slap you would want to give someone who did the following after you had just told them about your life and they replied with.</p>
<p>Nope, you got some bits wrong I cant help you until you get them right&#8230;</p>
<p>Any chance of a clue?</p>
<p>Well you&#8217;ll have to look through what you&#8217;ve told me and guess what you said wrong, if you are observant ill let you know by raising my eyebrow but you&#8217;ll have to keep you eyes open and watch out for the eyebrow raising.</p>
<p>Thwock, hows you&#8217;re eyebrow now I&#8217;ve slapped it?</p>
<p>Even worse is his mate who will tell you that there was something wrong at the beginning and would you correct that bit then send the story on again, to then tell you that there was a little bit after that that was wrong and would you please correct that and send it again, you can only go through that cycle twice before you grab this chap and his mate with an aching eyebrow and bang there heads together <small>(a slight disclaimer: I&#8217;m actually a bit of a piece loving digital tree huger and am not actually of a temperament that I would be compelled to physically abuse any person of piece of web code )</small></li>
</ol>
<p>For some reason when I originally wrote this article it had another 3 points that seem to have been pushed out my ear sometime in the last 3 weeks and I cant find them in my mind, if I spot them around the place I&#8217;ll add them up there, not that anyone going to read the ramblings of a tired, beardy weirdy digital creative director rambling away at nearly 1am. but if you did read it and want to add you own form ramblings feel free to comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://mccoy.co.uk/blog/2009/12/a-slight-rant-on-the-state-of-web-site-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 of 2010</title>
		<link>http://mccoy.co.uk/blog/2009/12/top-10-of-2010/</link>
		<comments>http://mccoy.co.uk/blog/2009/12/top-10-of-2010/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 15:20:34 +0000</pubDate>
		<dc:creator>Rich</dc:creator>
				<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://mccoy.co.uk/blog/?p=234</guid>
		<description><![CDATA[There is a trend at the moment for compiling top ten lists of personal favorites form the decade so I&#8217;m going to join in perhaps more for personal fascination reasons then anything else. I&#8217;ll keep popping back every time I create a new list of things I&#8217;ve discovered in the last 10 years and add [...]]]></description>
			<content:encoded><![CDATA[<p>There is a trend at the moment for compiling top ten lists of personal favorites form the decade so I&#8217;m going to join in perhaps more for personal fascination reasons then anything else.<span id="more-234"></span></p>
<p>I&#8217;ll keep popping back every time I create a new list of things I&#8217;ve discovered in the last 10 years and add it to this page.</p>
<h3>Films that have had an impact on me (in no particular order)</h3>
<ol>
<li><a href="http://www.imdb.com/title/tt0414993/">The Fountain</a></li>
<li><a href="http://www.imdb.com/title/tt0166924/">Mulholland Drive</a></li>
<li><a href="http://www.imdb.com/title/tt0949731/">The Happening</a></li>
<li><a href="http://www.imdb.com/title/tt0206634/">Children of Men</a></li>
<li><a href="http://www.imdb.com/title/tt1125849/">The Wrestler</a></li>
<li><a href="http://www.imdb.com/title/tt0838221/">The Darjeeling limited</a></li>
<li><a href="http://www.imdb.com/title/tt1182345/">Moon</a></li>
<li><a href="http://www.imdb.com/title/tt0457430/">El labarinto del fauno</a></li>
<li><a href="http://www.imdb.com/title/tt0096283/">Tonari no Totoro</a></li>
<li><a href="http://www.imdb.com/title/tt0211915/">Le Fabuleux destin d&#8217;Amelie Poulain</a></li>
</ol>
<h3>Authors that have had an impact on me over the last decade (in no particular order)</h3>
<ol>
<li><a href="http://en.wikipedia.org/wiki/Anton_Chekhov">Anton Checkhov</a></li>
<li><a href="http://en.wikipedia.org/wiki/Hunter_Thompson">Hunter S. Thompson</a></li>
<li><a href="http://en.wikipedia.org/wiki/Raymond_carver">Raymond Carver</a></li>
<li><a href="http://en.wikipedia.org/wiki/Roland_Barthes">Roland Barthes</a></li>
<li><a href="http://en.wikipedia.org/wiki/Christmas_Humphries">Christmas Humphries</a></li>
<li><a href="http://en.wikipedia.org/wiki/Michael_Gira">Michael Gira</a></li>
<li><a href="http://en.wikipedia.org/wiki/Franz_Kafka">Franz Kafka</a></li>
<li><a href="http://en.wikipedia.org/wiki/S._F._Said">S.F. Said</a></li>
<li><a href="http://corkvoyages.com/">Mark Sommerset</a></li>
<li><a href="http://www.oliverjeffers.com/">Oliver Jeffers</a></li>
</ol>
<h3>Places I&#8217;ve visited and loved</h3>
<ol>
<li><a href="http://www.littlehellos.com/the-photos/landscape_29.jpg">Waiheke Island</a> &#8211; New Zealand</li>
<li><a href="http://www.odt.co.nz/files/story/2009/05/cathedral_cove_is_one_of_the_coromandel_s_best_kno_2112446614.JPG">The Coromandel</a> &#8211; New Zealand</li>
<li><a href="http://www.ballet.co.uk/weblogs/galina/archives/Stockholm%20in%20the%20snow.jpg">Stockholm</a> &#8211; Sweden</li>
<li><a href="http://www.littlehellos.com/the-photos/landscape_30.jpg">KareKare</a> &#8211; New Zealand</li>
<li><a href="http://national.atdw.com.au/multimedia/tq/9007705_1.jpg">Daybro</a> &#8211; Australia</li>
<li><a href="http://www.jpgmag.com/photos/1078809">Sunshine Coast</a> &#8211; Australia</li>
<li><a href="http://www.jpgmag.com/photos/1457635">The Old Kenmare Road</a> &#8211; Ireland</li>
<li><a href="http://www.jpgmag.com/photos/1539668">Dovedale</a> &#8211; England</li>
<li><a href="http://www.taly-france.co.uk/images/eymet.jpg">Eymet</a> &#8211; France</li>
<li><a href="http://www.public-republic.net/wp-content/uploads/2009/05/gap-of-dunlow.jpg">The gap of Dunlow</a> &#8211; Ireland</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://mccoy.co.uk/blog/2009/12/top-10-of-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
