<?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>Company Blog &#187; design</title>
	<atom:link href="http://edendevelopment.co.uk/blogs/company/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://edendevelopment.co.uk/blogs/company</link>
	<description>Eden Development Company Blog</description>
	<lastBuildDate>Sun, 21 Feb 2010 08:22:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How we made #ykyat</title>
		<link>http://edendevelopment.co.uk/blogs/company/2009/02/25/how-we-made-ykyat/</link>
		<comments>http://edendevelopment.co.uk/blogs/company/2009/02/25/how-we-made-ykyat/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 08:02:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[ykyat]]></category>

		<guid isPermaLink="false">http://edendevelopment.co.uk/blogs/company/?p=288</guid>
		<description><![CDATA[Friday 13th February 2009 was going to be just a normal day, as far as we knew. Then Chris arrived at work at 9am and said, &#8220;We&#8217;re all going to write a new web app today!&#8221; The idea for &#8220;You know you&#8217;re addicted to&#8221; had occurred to Chris the previous day, upon realising that checking [...]]]></description>
			<content:encoded><![CDATA[<p>Friday 13th February 2009 was going to be just a normal day, as far as we knew. Then Chris arrived at work at 9am and said, &#8220;We&#8217;re all going to write a new web app today!&#8221; The idea for &#8220;You know you&#8217;re addicted to&#8221; had occurred to Chris the previous day, upon realising that checking Twitter before email represents a pretty serious Twitter addiction! Chris thought it might be fun to see what else people were addicted to, and bring the funny anecdotes together in a place where people could rate them and comment upon them.</p>
<p>We had a quick 15-minute meeting where Chris outlined the concept to us and drew some sketches. Tris and I got straight to work on designing the models whilst Chris put together a visual concept. We had lots of discussion about the <a href="http://colorschemedesigner.com/">colour scheme</a> before agreeing on the bright pink. James and Richard were to design the front end, Tris did the backend data manipulating and URL routing. As the person with previous experience in the Twitter API, my part was to get data in from Twitter and send responses out.</p>
<p>By 10:20 we knew this was going to work! Having looked up <a href="http://search.twitter.com">search.twitter.com</a> for a few select phrases, we discovered that people were indeed twittering about their various addictions!</p>
<div id="attachment_305" class="wp-caption alignnone" style="width: 310px"><a href="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/ykyat_feed.png"><img style="margin: 0 0 10px 10px; padding: 0; border: 1px solid #aaa;" src="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/ykyat_feed-300x212.png" alt="Data found on Twitter!" title="Data found on Twitter!" width="300" height="212" class="size-medium wp-image-305" /></a><p class="wp-caption-text">Data found on Twitter!</p></div>
<p><span id="more-288"></span></p>
<p>As James and Richard were cutting up the design and turning it into HTML and CSS, Chris made a very welcome coffee round.</p>
<p>At about 11:15 we had a major success for the data import, upon discovering that Twitter Search can bring back up to 100 results at a time. We thought it was limited to 15. This meant that we could go back and select much more data.</p>
<div id="attachment_303" class="wp-caption alignnone" style="width: 310px"><a href="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/imported_2.png"><img style="margin: 0 0 10px 10px; padding: 0; border: 1px solid #aaa;" src="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/imported_2-300x199.png" alt="Lots of data for us to use" title="Lots of data for us to use" width="300" height="199" class="size-medium wp-image-303" /></a><p class="wp-caption-text">Lots of data for us to use</p></div>
<p>Obviously, not all this data is particularly interesting, and some of it is just retweets of other people&#8217;s addictions. Tris helped me to tweak the regular expression to filter out unwanted results.</p>
<p>Meanwhile, the front end was coming along nicely:</p>
<div id="attachment_304" class="wp-caption alignnone" style="width: 310px"><a href="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/picture-8.png"><img style="margin: 0 0 10px 10px; padding: 0; border: 1px solid #aaa;" src="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/picture-8-300x160.png" alt="An early version of the front end" title="An early version of the front end" width="300" height="160" class="size-medium wp-image-304" /></a><p class="wp-caption-text">An early version of the front end</p></div>
<p>At midday Chris bought the domain <a href="http://ykyat.com/">ykyat.com</a>. We were going to use a different domain name, but after seeing that ykyat.com was available, we all agreed that it was a much better domain. I created the Twitter account @<a href="http://twitter.com/ykyat">ykyat</a> and applied the background image and colour scheme to the Twitter page.</p>
<p>There was a mild panic over URL routing &#8211; we wanted to give each ykyat a unique tag, but we also wanted a nice short URL to browse by topic. It was decided to use a tilde when viewing by tag. The routing is rather non-standard for Rails; I found it interesting to see how it is done. Kudos to Tris for more regular expression magic! :)</p>
<p>I spent my lunch break sitting outside the office wondering how best to implement the <code>since_id</code> so as not to bother Twitter Search by asking for the same results more than once. I had three ideas in mind, and it was useful to have a break to consider the most efficient way.</p>
<p>At about 14:00 things were all coming together very nicely! Tris had organised a cron job for the import, and I was very excited to see a tweet of mine imported and displayed in the gorgeous UI that James and Richard had crafted!</p>
<div id="attachment_306" class="wp-caption alignnone" style="width: 310px"><a href="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/yay.png"><img style="margin: 0 0 10px 10px; padding: 0; border: 1px solid #aaa;" src="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/yay-300x220.png" alt="A tweet imported and displayed" title="A tweet imported and displayed" width="300" height="220" class="size-medium wp-image-306" /></a><p class="wp-caption-text">A tweet imported and displayed</p></div>
<p>James and Richard turned their attention to the rating system whilst Tris set up the live server on Amazon EC2. My next task was to tweet back an @ reply to the addicted person, with the URL to let them know they had been featured on #ykyat. Thanks to the simplicity of the Twitter API, this didn&#8217;t take long &#8230;</p>
<div id="attachment_307" class="wp-caption alignnone" style="width: 310px"><a href="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/on_twitter.png"><img style="margin: 0 0 10px 10px; padding: 0; border: 1px solid #aaa;" src="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/on_twitter-300x194.png" alt="Ykyat bot responds to the addicted person" title="Ykyat bot responds to the addicted person" width="300" height="194" class="size-medium wp-image-307" /></a><p class="wp-caption-text">Ykyat bot responds to the addicted person</p></div>
<p>Our Git repository was looking quite exciting at about this time!</p>
<div id="attachment_308" class="wp-caption alignnone" style="width: 310px"><a href="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/git.png"><img style="margin: 0 0 10px 10px; padding: 0; border: 1px solid #aaa;" src="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/git-300x192.png" alt="Everything coming together" title="Everything coming together" width="300" height="192" class="size-medium wp-image-308" /></a><p class="wp-caption-text">Everything coming together</p></div>
<p>I then started to look at bringing in the Twitter user icons. All was going fine until I hit the limit of API requests per hour. We realised that we couldn&#8217;t just ask Twitter for the icon each time every page was loaded; we would have to be  more pragmatic about it. We put the user icons on hold. It was getting to late afternoon by now and we also decided we didn&#8217;t have time for commenting. Although Tris had written the back end to support comments, we were aware that the Twitter authentication needed to be secure and well tested so we didn&#8217;t want to rush that bit.</p>
<p>The last part of the afternoon was spent getting it working on the live server and making a few tweaks and polish to the user interface. We were all very excited to see what we had achieved in a day! Chris announced at 17:42 that we were done. We went home. Half an hour later <a href="http://twitter.com/chrismdp/status/1207232542">Chris announced it on Twitter</a>:</p>
<div id="attachment_320" class="wp-caption alignnone" style="width: 310px"><a href="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/announcement.png"><img style="margin: 0 0 10px 10px; padding: 0; border: 1px solid #aaa;" src="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/announcement-300x155.png" alt="Chris announces #ykyat on Twitter" title="Chris announces #ykyat on Twitter" width="300" height="155" class="size-medium wp-image-320" /></a><p class="wp-caption-text">Chris announces #ykyat on Twitter</p></div>
<p>We made a few enhancements over the weekend. Chris worked on the navigator, showing popular categories and popular tweeters. I was itching to leave comments, which was very motivating for me, knowing that I had the power to enable it! I wrote the Twitter authentication and commenting system on Sunday evening and it went live on Monday!</p>
<p>Building #ykyat was an exciting and rewarding experience for all of us. It was good to work together as one team when so often we each work on different projects. It was fascinating to see an idea grow into a live web app in one day. I think we all knew that we could do it, but it was great to be able to prove it to the world!</p>
]]></content:encoded>
			<wfw:commentRss>http://edendevelopment.co.uk/blogs/company/2009/02/25/how-we-made-ykyat/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Announcing ykyat.com</title>
		<link>http://edendevelopment.co.uk/blogs/company/2009/02/13/announcing-ykyatcom/</link>
		<comments>http://edendevelopment.co.uk/blogs/company/2009/02/13/announcing-ykyatcom/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 19:26:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[ykyat]]></category>

		<guid isPermaLink="false">http://edendevelopment.co.uk/blogs/company/?p=283</guid>
		<description><![CDATA[I just wanted to quickly let you know about our new web application, ykyat.com. It's a very simple service based on Twitter...]]></description>
			<content:encoded><![CDATA[<div id="attachment_282" class="wp-caption alignnone" style="width: 310px"><img src="http://edendevelopment.co.uk/blogs/company/wp-content/blogs.dir/8/files/2009/02/picture-1-300x160.png" alt="Screenshot of ykyat.com" title="ykyat.com" width="300" height="160" class="size-medium wp-image-282" /><p class="wp-caption-text">Screenshot of ykyat.com</p></div>
<p>I&#8217;ll blog more about this next week, but just wanted to quickly let you know about our new web application, <a href='http://ykyat.com'>ykyat.com</a>. </p>
<p>It&#8217;s a very simple service built on <a href='http://twitter.com'>Twitter</a>. It collates classic &#8216;you know you&#8217;re addicted to&#8230;&#8217; jokes on a central website, and allows them to be rated so that the funniest are promoted for all to see.</p>
<p>It was built partly for fun, and partly as a grand experiment in rapid application design and development: we designed, built and deployed the entire app from the ground up in 8 hours 42 minutes. We learnt a lot from the process and I&#8217;ll be posting a minute by minute diary with some screenshots next week.</p>
]]></content:encoded>
			<wfw:commentRss>http://edendevelopment.co.uk/blogs/company/2009/02/13/announcing-ykyatcom/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The downturn (with style)</title>
		<link>http://edendevelopment.co.uk/blogs/company/2008/10/24/the-downturn-has-styl/</link>
		<comments>http://edendevelopment.co.uk/blogs/company/2008/10/24/the-downturn-has-styl/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 08:40:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://www.edendevelopment.co.uk/blog/?p=37</guid>
		<description><![CDATA[The BBC have seen fit to give the downturn its own logo:

I find it slightly bizarre that even economic cycles have their own branding departments now&#8230;
]]></description>
			<content:encoded><![CDATA[<p><a href="http://news.bbc.co.uk/1/hi/in_depth/business/2008/downturn/default.stm">The BBC</a> have seen fit to give the downturn its own logo:</p>
<p><img class="alignnone" src="http://newsimg.bbc.co.uk/media/images/45138000/gif/_45138472_the_downturn_small_v2_2.gif" alt="" width="107" height="19" /></p>
<p>I find it slightly bizarre that even economic cycles have their own branding departments now&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://edendevelopment.co.uk/blogs/company/2008/10/24/the-downturn-has-styl/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Taste can be acquired</title>
		<link>http://edendevelopment.co.uk/blogs/company/2008/10/21/taste-can-be-acquired/</link>
		<comments>http://edendevelopment.co.uk/blogs/company/2008/10/21/taste-can-be-acquired/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 12:54:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.edendevelopment.co.uk/blog/?p=34</guid>
		<description><![CDATA[Acquire Taste by DHH got me thinking.
Having &#8216;taste&#8217; is a really important skill you can have as a developer &#8211; even if you don&#8217;t classify yourself as a &#8216;designer&#8217;. It&#8217;s a great thing to be able to add User Interface elements in just the right place, or code a feature up that just feels right. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.37signals.com/svn/posts/1325-acquire-taste" target="_blank">Acquire Taste</a> by DHH got me thinking.</p>
<p>Having &#8216;taste&#8217; is a really important skill you can have as a developer &#8211; even if you don&#8217;t classify yourself as a &#8216;designer&#8217;. It&#8217;s a great thing to be able to add User Interface elements in just the right place, or code a feature up that just <em>feels right</em>. When a piece of software has been crafted lovingly, everyone loves to use it.</p>
<p>Having taste as a developer is a bit like what my wife says about being tidy around the house. Now, I&#8217;m not a naturally tidy guy, but I&#8217;m learning to be; mostly because if I wasn&#8217;t I would drive her crazy! Sometimes the problem is that I just don&#8217;t see the mess, but that&#8217;s really laziness. It&#8217;s because I&#8217;ve not yet learned to take a second look each time and judge my attempt at cleaning the kitchen with her standards. Usually at that point I see where I could do better.</p>
<p>It&#8217;s the same with code/feature design. Most of the time it just takes another look, and not settling for just &#8220;good enough&#8221;. It&#8217;s a choice, and making the right one will make someone else that much happier with the work we do. Food for thought.</p>
]]></content:encoded>
			<wfw:commentRss>http://edendevelopment.co.uk/blogs/company/2008/10/21/taste-can-be-acquired/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why design completeness should track the project schedule</title>
		<link>http://edendevelopment.co.uk/blogs/company/2008/09/25/why-design-completeness-should-track-the-project-schedule/</link>
		<comments>http://edendevelopment.co.uk/blogs/company/2008/09/25/why-design-completeness-should-track-the-project-schedule/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 11:27:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.edendevelopment.co.uk/blog/?p=19</guid>
		<description><![CDATA[The level of the completeness of the design for a website should accurately track the completeness of the project. It&#8217;s been said before, but it&#8217;s worth saying again&#8230;
In the past I&#8217;ve been guilty of two equal yet opposite mistakes on website projects regarding design implementation. There&#8217;s a temptation to leave the implementation of the design [...]]]></description>
			<content:encoded><![CDATA[<p>The level of the completeness of the design for a website should accurately track the completeness of the project. It&#8217;s been <a href="http://headrush.typepad.com/creating_passionate_users/2006/12/dont_make_the_d.html">said</a> <a href="http://www.joelonsoftware.com/articles/fog0000000356.html">before</a>, but it&#8217;s worth saying again&#8230;</p>
<p>In the past I&#8217;ve been guilty of two equal yet opposite mistakes on website projects regarding design implementation. There&#8217;s a temptation to leave the implementation of the design right until the end of the project (&#8221;It&#8217;ll only take a day or two, after all&#8221;). There&#8217;s also a strong urge to get the design done right at the beginning of the project, to really show the client what the finished article will look like.</p>
<p>Both of these approaches turned out to be mistakes.</p>
<p>When we&#8217;ve left the design until the end of the project, the client ends up directionless. Unless they&#8217;ve got a programming background, or heck of lot of vision (and most don&#8217;t), they just won&#8217;t put your lovely design concepts together with your naked &#8216;Times New Roman&#8217; HTML wireframes. Sure, the site works, and works well, but it just won&#8217;t feel right. The client won&#8217;t be able to get past how it looks and will ignore all your fervent feature demos because they&#8217;ll be thinking about that ugly font.</p>
<p>With one project on which we did this, the client ended up changing their mind too much about what they wanted; had they seen the design progressively improving look and feel they may well have been able to catch the vision for the site quicker. With less understanding clients, you run the danger that all your hard work behind the scenes will be dismissed just because it looks awful and they wonder what you&#8217;ve been doing with all that time and money.</p>
<p>So why not get those concepts right onto screen straight away in their full glory? That way they&#8217;ll know exactly what they&#8217;re getting, right?</p>
<p>Big mistake. When we&#8217;ve done this in the past, we&#8217;ve noted that clients often equate the progress of the design with the general progress of the site. With one project, we rolled up at the end of the first iteration with a beautiful website that showed the finished design in all its glory. The client was very pleased. However, the very next iteration, after we&#8217;d spent just as much time on functionality and &#8216;behind the scenes stuff&#8217;, they were less pleased. Despite us telling them how much we&#8217;d accomplished, they just couldn&#8217;t quite see it. We then spent quite a while on the back foot trying to convince them stuff was happening, even though the site looked much the same as it did at the start!</p>
<p>So where&#8217;s the balance? I&#8217;m not sure there&#8217;s a perfect middle way; it depends on the client you&#8217;re working with and the type of project you&#8217;re working on. These days however we progress with the look and feel in stages; it tends to ensure both client and consultancy are on the same page and everyone can measure progress in their own way.</p>
]]></content:encoded>
			<wfw:commentRss>http://edendevelopment.co.uk/blogs/company/2008/09/25/why-design-completeness-should-track-the-project-schedule/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
