<?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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Steffan Williams</title>
	
	<link>http://steffanwilliams.co.uk</link>
	<description />
	<pubDate>Sun, 22 Feb 2009 17:06:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/steffanwilliams" type="application/rss+xml" /><feedburner:emailServiceId>steffanwilliams</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>“If jQuery” Snippet</title>
		<link>http://feedproxy.google.com/~r/steffanwilliams/~3/1pPenPtwlqM/</link>
		<comments>http://steffanwilliams.co.uk/articles/if-jquery-snippet/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 22:41:01 +0000</pubDate>
		<dc:creator>Steffan Williams</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://steffanwilliams.co.uk/?p=375</guid>
		<description><![CDATA[Earlier today I was asked to remove a JavaScript error. The problem was that this particular partial was being used in places that had jQuery and places that didn&#8217;t. In the places where jQuery did not exist, an error was being generated about the $() syntax.
After a quick Google and a browse at a few [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier today I was asked to remove a JavaScript error. The problem was that this particular partial was being used in places that had jQuery and places that didn&#8217;t. In the places where jQuery did not exist, an error was being generated about the $() syntax.</p>
<p>After a quick Google and a browse at a few of the results, I didn&#8217;t get any information on how to check to see if jQuery exists on a page. So, while this may not be the best solution, it is <strong>a</strong> solution to only execute a piece of jQuery JavaScript if jQuery exists.</p>
<pre><code>

var jQuery = jQuery || false;

if (jQuery) {
  // jQuery only stuff here.
}

</code></pre>
<p>If jQuery has been included in the document, the function jQuery will exist and thus the jQuery only block will execute. If jQuery has not been included, jQuery is set to false and so the block will not execute.</p>
<p>Of course, if someone makes a variable called jQuery and assigns it a value then this won&#8217;t really work — but why the hell would you do that?</p>
<p><strong>Update:</strong><br />
Thanks to Thomas R. for suggesting a non-assignment method. Despite it not working, it made me try to find a way of doing it without the assignment.</p>
<pre><code>

if (window.jQuery) {
  // jQuery only stuff here.
}

</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://steffanwilliams.co.uk/articles/if-jquery-snippet/feed/</wfw:commentRss>
		<feedburner:origLink>http://steffanwilliams.co.uk/articles/if-jquery-snippet/</feedburner:origLink></item>
		<item>
		<title>GRIDINATOR</title>
		<link>http://feedproxy.google.com/~r/steffanwilliams/~3/kKcyy-gkpik/</link>
		<comments>http://steffanwilliams.co.uk/articles/gridinator/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 14:27:41 +0000</pubDate>
		<dc:creator>Steffan Williams</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[gridinator]]></category>

		<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://steffanwilliams.co.uk/?p=367</guid>
		<description><![CDATA[It&#8217;s surprising how a &#8220;hey, wouldn&#8217;t it be cool if&#8230;&#8221;, can turn into a nice little project. The concept for GRIDINATOR is to allow for easy creation of custom, grid-based layouts.
If you aren&#8217;t sure what a grid layout is, I would recommend checking out some good posts by Khoi Vinh and maybe this article from [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s surprising how a &#8220;hey, wouldn&#8217;t it be cool if&#8230;&#8221;, can turn into a nice little project. The concept for GRIDINATOR is to allow for easy creation of custom, grid-based layouts.</p>
<p>If you aren&#8217;t sure what a grid layout is, I would recommend checking out some <a href="http://www.subtraction.com/2004/12/31/grid-computi">good</a> <a href="http://www.subtraction.com/2007/04/02/layers-cake">posts</a> by <a href="http://subtraction.com/">Khoi Vinh</a> and maybe <a href="http://www.smashingmagazine.com/2007/04/14/designing-with-grid-based-approach/">this article from Smashing Magazine</a>, which has a good few set of links to keep you busy for a while.</p>
<div class="img"><a href="http://www.flickr.com/photos/steffanwilliams/3159952358/" title="GRIDINATOR by Steffan Williams, on Flickr"><img src="http://farm4.static.flickr.com/3262/3159952358_9007d2a18b_o.png" width="309" height="296" alt="GRIDINATOR" /></a></div>
<h3>Why build GRIDINATOR?</h3>
<p>I built GRIDINATOR for my own use and to just see if I could do it. When I started as a freelance web designer late last year, I was introduced to grids by <a href="http://johnoxton.co.uk/">John Oxton</a>. While I was aware of them and the concept, I hadn&#8217;t really bothered to actually use them until I was made to (sincere thank you, Mr. Oxton).</p>
<p>After quickly falling in love with grid-based layouts, I decided to start using them pretty much everywhere for little side-projects and client work. The concept for GRIDINATOR was designed primarily to make my life easier, as I tend to be very lazy. Fortunately, that can also be considered a good thing:</p>
<blockquote><p>..only a lazy programmer will avoid writing monotonous, repetitive code. The tools and processes that come out of this endeavor fired by laziness will speed up the production. &mdash; <a href="http://blogoscoped.com/archive/2005-08-24-n14.html">Philipp Lenssen</a></p></blockquote>
<p>After playing with numbers, creating a bunch of different grids and feeling irritated by doing the same thing over and over again, I decided to sit down and write something to make the grids for me; thus GRIDINATOR was born!</p>
<h3>Why use GRIDINATOR?</h3>
<p>GRIDINATOR is different from the &#8220;competition&#8221;, as it provides you with a means to get started using a grid-based layout that you designed. While there are other <a href="http://www.29digital.net/grid/">grid</a> <a href="http://gridlayouts.com/">calculators</a> out there, none of them actually give you any CSS or HTML to get going using the grid you design. At this point, I&#8217;d like to recommend you go check out <a href="http://gridlayouts.com/">ctrl+shft+g</a>, which was a major source of inspiration for this project.</p>
<h3>Using GRIDINATOR</h3>
<p>GRIDINATOR has a (hopefully) simple to use interface to build your grid quickly. To build a grid, you have to specify a few options.</p>
<p>The options for your grid are:</p>
<ul>
<li>number of columns &mdash; the number of columns you want in your grid</li>
<li>column width, in pixels &mdash; the width of each column within your grid</li>
<li>column margins, in pixels &mdash; the spacing between each column</li>
<li>container margin, in pixels &mdash; the outer spacing between your grid and its container</li>
<li>colour of your grid &mdash; available in blue, pink and green</li>
</ul>
<div class="img"><a href="http://www.flickr.com/photos/steffanwilliams/3157816515/" title="GRIDINATOR options by Steffan Williams, on Flickr"><img src="http://farm4.static.flickr.com/3230/3157816515_2819e1fc76_o.png" width="255" height="186" alt="GRIDINATOR options" /></a></div>
<p>As you are specifying your options, your custom grid will be created. This grid is an example of what you will get when you download the templates. The size of the grid (without container margins) and the total size (with container margins) are displayed above the grid. If you alter any of the options, the grid will update in real-time.</p>
<div class="img"><a href="http://www.flickr.com/photos/steffanwilliams/3158648498/" title="GRIDINATOR grid builder by Steffan Williams, on Flickr"><img src="http://farm4.static.flickr.com/3127/3158648498_864329d47a.jpg" width="500" height="192" alt="GRIDINATOR grid builder" /></a></div>
<p>If you can&#8217;t (or don&#8217;t want to) come up with your own custom grid, you can select from a few of the popular choices. When you select one of these choices, the grid builder will update to display what that particular grid looks like. You can still change the colour of this grid, by clicking on one of the colours in the options section.</p>
<div class="img"><a href="http://www.flickr.com/photos/steffanwilliams/3158648444/" title="GRIDINATOR popular grids by Steffan Williams, on Flickr"><img src="http://farm4.static.flickr.com/3075/3158648444_c60b6d70fb_o.png" width="135" height="103" alt="GRIDINATOR popular grids" /></a></div>
<p>Once you&#8217;re done creating your grid, you can get the CSS, a HTML template or even an image of your grid. With your options set, press one (or all) of the buttons to be prompted with a file download.</p>
<div class="img"><a href="http://www.flickr.com/photos/steffanwilliams/3158648394/" title="GRIDINATOR buttons by Steffan Williams, on Flickr"><img src="http://farm4.static.flickr.com/3081/3158648394_5c5ddaecf8_o.png" width="369" height="57" alt="GRIDINATOR buttons" /></a></div>
<h3>Downloads</h3>
<p>Firstly, let me explain the &#8220;GET GRID IMAGE&#8221; button. Clicking this will create a PNG image the width of your grid by 20px height. This image used by the CSS template as a background image, to allow you to see the grid you are working with while you are working. The image will match your specification exactly, with your columns, column width, column margins, container margins and colour all taken into account.</p>
<p>The &#8220;GET CSS TEMPLATE&#8221; button will generate the CSS for the grid you specify. For an example of this CSS, please check out <a href="http://pastie.org/350564">this Pastie</a>. The first thing you will notice is a commented header, which includes the version number of the GRIDINATOR CSS (this value is also displayed on the GRIDINATOR homepage, just to keep you updated) and the specifications of your grid (should you forget).</p>
<p>Following this is the CSS. I&#8217;m not going to go into depth describing how to use this as on the <a href="http://gridinator.com/">GRIDINATOR site</a> there is an example you can download that shows exactly how you can use the CSS. However, I will highlight what is included. You should notice that the CSS selectors for the columns is readable English, and does not contain numbers &mdash; this is something that I feel creates a nicer HTML document.</p>
<p>The grid itself is made from <em>.wrapper</em> and <em>.inner-wrapper</em>, where <em>.wrapper</em> is the outer container that specifies the total width of the grid and <em>.inner-wrapper</em> specifies the working area where the columns are contained. You will also find a declaration for each possible column within your grid, from one up to however many you specified.</p>
<p>I also included something that I have found rather useful, prefixes and suffixes. A prefix will allow you to <em>fake</em> the addition of another column preceding the one you apply that class to. For example, applying prefix-three to a column will add a margin-left to that column equal to the value of a three-col width; this makes it appear as if a three-col column precedes it. This can be useful for spacing out columns within your grid.</p>
<p>A suffix is the same concept as a prefix, except that instead of margin-left, it applies a margin-right; this making it appear as if a column follows the one it is applied to.</p>
<p>Lastly, the &#8220;GET HTML TEMPLATE&#8221; button. This will create a basic HTML file includes your grid and an example of each of the column specifications from one up to however many columns you specified. Please ensure that the HTML file is in the same directory as the CSS file, otherwise it will not work by default. For a more complex HTML template (one that demonstrates prefixes, suffixes and some more layouts), please download the example from the <a href="http://gridinator.com/">GRIDINATOR homepage</a>.</p>
<h3>Ch-ch-ch-changes</h3>
<p>As GRIDINATOR is a <em>work in progress</em>, it will hopefully continue to grow and have more features. To keep track of the development, you can check out <a href="http://gridinator.com/changelog">the changelog</a>. This will list each update made to GRIDINATOR, including details about what has changed.</p>
<h3>Contact</h3>
<p>If you find a bug, need some help, have any suggestions for improvements or just want to comment, please feel free to leave a comment in this post or contact me at <a href="mailto:gridinator@steff.me">gridinator@steff.me</a>.</p>
<p>I hope you&#8217;ll find GRIDINATOR useful or at least slightly entertaining for a couple of minutes.</p>
]]></content:encoded>
			<wfw:commentRss>http://steffanwilliams.co.uk/articles/gridinator/feed/</wfw:commentRss>
		<feedburner:origLink>http://steffanwilliams.co.uk/articles/gridinator/</feedburner:origLink></item>
		<item>
		<title>Really Small</title>
		<link>http://feedproxy.google.com/~r/steffanwilliams/~3/ZXKsmlHRh7c/</link>
		<comments>http://steffanwilliams.co.uk/personal/really-small/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 02:04:51 +0000</pubDate>
		<dc:creator>Steffan Williams</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[sketch]]></category>

		<guid isPermaLink="false">http://steffanwilliams.co.uk/?p=349</guid>
		<description><![CDATA[Following a conversation with my girlfriend&#8230;

I can&#8217;t draw worth a crap, but I&#8217;m thankful for the inspiration to get off the computer and do something else. Oh, and for those of you who are completely confused by this inside joke: my girlfriend is very short and I like puns.
Drawn on the very first page of [...]]]></description>
			<content:encoded><![CDATA[<p>Following a conversation with my girlfriend&#8230;</p>
<p><img src="http://steffanwilliams.co.uk/wordpress/wp-content/uploads/2008/11/mynewt.png" alt="My Newt" width="300px" /></p>
<p>I can&#8217;t draw worth a crap, but I&#8217;m thankful for the inspiration to get off the computer and do something else. Oh, and for those of you who are completely confused by this inside joke: my girlfriend is very short and I like puns.</p>
<p><small>Drawn on the very first page of my <a href="http://www.carsonified.com/carsonified/the-carsonified-journal">Carsonified Journal</a>.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://steffanwilliams.co.uk/personal/really-small/feed/</wfw:commentRss>
		<feedburner:origLink>http://steffanwilliams.co.uk/personal/really-small/</feedburner:origLink></item>
		<item>
		<title>Playing With Words</title>
		<link>http://feedproxy.google.com/~r/steffanwilliams/~3/Ryec2f8bYS4/</link>
		<comments>http://steffanwilliams.co.uk/asides/playing-with-words/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 00:34:43 +0000</pubDate>
		<dc:creator>Steffan Williams</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<category><![CDATA[apps]]></category>

		<category><![CDATA[Personal]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://steffanwilliams.co.uk/?p=346</guid>
		<description><![CDATA[What happens when you take a love for Twitter and mix it together with an hour of boredom? My answer is Wordmix.
The concept came from something I used to do while bored in lectures. You start by writing down a sentence, then pass this on to another person. This person changes one word in the [...]]]></description>
			<content:encoded><![CDATA[<p>What happens when you take a love for Twitter and mix it together with an hour of boredom? My answer is <a href="http://steff.me/wordmix">Wordmix</a>.</p>
<p>The concept came from something I used to do while bored in lectures. You start by writing down a sentence, then pass this on to another person. This person changes one word in the sentence and passes it on&#8230; and so on, and so forth! This continues until everyone gets bored, or the sentence really just stops making any sense.</p>
<blockquote><p>Wordmix is a social sentence. Each word in the sentence is built up from Twitter replies sent to <a href="http://twitter.com/wordmix">@wordmix</a>. Due to these phrases being created randomly, there&#8217;s a high chance of them not making any sense whatsoever! Just sit back, relax (maybe get a beer?) and watch the randomness.</p></blockquote>
<div class="img"><a href="http://steff.me/wordmix"><img src="http://steff.me/wordmix/images/wordmix_howto_small.jpg" alt="Wordmix Howto" /></a></div>
<p>So that&#8217;s it! Go check out <a href="http://steff.me/wordmix">Wordmix</a> and start <a href="http://twitter.com/wordmix">sending it some Tweets</a>!</p>
<p><small>PS: It needs work.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://steffanwilliams.co.uk/asides/playing-with-words/feed/</wfw:commentRss>
		<feedburner:origLink>http://steffanwilliams.co.uk/asides/playing-with-words/</feedburner:origLink></item>
		<item>
		<title>Future of Web Apps London 2008</title>
		<link>http://feedproxy.google.com/~r/steffanwilliams/~3/75UcODJOmy8/</link>
		<comments>http://steffanwilliams.co.uk/tech-news/future-of-web-apps-london-2008/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 14:12:09 +0000</pubDate>
		<dc:creator>Steffan Williams</dc:creator>
		
		<category><![CDATA[Tech News]]></category>

		<category><![CDATA[fowa]]></category>

		<category><![CDATA[Videos]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://steffanwilliams.co.uk/?p=338</guid>
		<description><![CDATA[So, even though it&#8217;s old news by now, I figured I may as well give some form of opinion of FOWA 2008. Last year was the first time I had attended this event and, it has to be said, this year was better by far. I was going to do a larger talk-by-talk post, but [...]]]></description>
			<content:encoded><![CDATA[<p>So, even though it&#8217;s old news by now, I figured I may as well give some form of opinion of FOWA 2008. Last year was the first time I had attended this event and, it has to be said, this year was better by far. I was going to do a larger talk-by-talk post, but I&#8217;ve decided against it because I&#8217;m not even interested in what I thought of them. Instead, I&#8217;m going to discuss the thing as a whole, with some specific things that stood out.</p>
<p>There are two &#8220;tracks&#8221;, Business and Development, that divide the conference. These tracks have talks going on simultaneously, so you have to pick your role and go with it (yeah, of course you can jump over to the other side whenever you want). Being more into the development side of things, the majority of the talks that I went to were in that track. The problem with the Development track is that the talks aren&#8217;t &#8220;techy&#8221; enough. A lot of them are vague overviews of how a particular company operates, with their spin on things. For example, Kevin Rose did a talk on the future of news. Instead of providing a concept for the future of news and how things could be, he gave a very digg-centric speech (who&#8217;d have thunk it?) on the digg recommendation engine mixed in with other digg stuff. I&#8217;m fine with him saying &#8220;use digg&#8221; or &#8220;digg rocks&#8221;, but I&#8217;d like it even more if he gave more of an in-depth analysis of the proposed features.  Another example the guy from 280 North, who gave a lovely presentation, had some nice ideas but all-in-all was just one big sales pitch for &#8220;use Cappuccino and 280 Slides!!!&#8221;.</p>
<p>I think that that is the main problem with FOWA. The sales pitch. Maybe this is the wrong conference for me, but what I want is somewhere for tech or business minded people gathering to discuss and debate the future of web, with specifics in web applications. In FOWA, all of the talks are basically a sales pitch for that company. There are exceptions, don&#8217;t get me wrong, but in a lot of the talks its just one big advertisement.</p>
<p>Before anyone cries, &#8220;Yeah, but if person X wasn&#8217;t working for company Y then they wouldn&#8217;t be giving a speech and no one would know of them and no one would care what they have to say, plus I want to know about their company and so on and so forth and I really need to take a breath now&#8230;&#8221;, I&#8217;d like to say that this is what I mean by not &#8220;techy&#8221; enough. I&#8217;m <strong>fine</strong> with a company talking about their company, I just want to be given code and examples and general theory and not a &#8220;use our website, because we are great&#8221;. </p>
<p>I understand that people can&#8217;t give out their exact code because they are afraid of people stealing it, but a more in-depth look at things would be better than a sales pitch.</p>
<p>Some summarized points that I found interesting:</p>
<ul>
<li>When giving a demo, show the app and don&#8217;t just talk about it. No one gives a crap about your thoughts on anything other than the app, so don&#8217;t offer your opinion.</li>
<li>Let people steal your content.</li>
<li>Designer vs. Developer; don&#8217;t be just one.</li>
</ul>
<p><a href="http://www.carsonified.com/">Carsonified</a>, the hosts of FOWA, were great enough film all of the presentations and put them online. The presentations below were my favourite from the entire event. They each offered insight, weren&#8217;t overly sales-pitchy and were just incredibly interesting to listen to.</p>
<h3>Ben Huh<br />
How to take your community to the next level</h3>
<div class="video">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="288" id="viddler_12c18567"><param name="movie" value="http://www.viddler.com/player/12c18567/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/12c18567/" width="437" height="288" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_12c18567" ></embed></object>
</div>
<h3>Jason Calacanis, Tom Nixon <br />
Work/Life Balance and Blood Sweat and Tears</h3>
<div class="video">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="288" id="viddler_e609d1fd"><param name="movie" value="http://www.viddler.com/player/e609d1fd/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/e609d1fd/" width="437" height="288" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_e609d1fd" ></embed></object></div>
<h3>Jeremy Baines<br />
How to build a desktop app from your web app.</h3>
<div class="video">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="288" id="viddler_c4e24221"><param name="movie" value="http://www.viddler.com/player/c4e24221/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/c4e24221/" width="437" height="288" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_c4e24221" ></embed></object></div>
<p><small>Hypocrite note: This talk was a big sales pitch, but I still enjoyed it as I want to build a desktop app for one of my web apps and this inspired me to get working.</small></p>
<h3>Blaine Cook &#038; Joe Stump<br />
Languages Don&#8217;t Scale (full version not released yet)</h3>
<div class="video">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="288" id="viddler_150c879b"><param name="movie" value="http://www.viddler.com/player/150c879b/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/150c879b/" width="437" height="288" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_150c879b" ></embed></object>
</div>
<h3>Kathy Sierra<br />
How to grow and nurture your community.</h3>
<div class="video">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="288" id="viddler_72ecf656"><param name="movie" value="http://www.viddler.com/player/72ecf656/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/72ecf656/" width="437" height="288" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_72ecf656" ></embed></object>
</div>
<p>You can check out the other presentations over at <a href="http://events.carsonified.com/fowa/2008/london/content">http://events.carsonified.com/</a>, which is well worth doing, if you haven&#8217;t already.</p>
<p>And now some obligatory photos from the event:</p>
<p>Microsoft Surface</p>
<p><a href="http://www.flickr.com/photos/steffanwilliams/2932177899/" title="IMG_0041.JPG by Steffan Williams, on Flickr"><img src="http://farm4.static.flickr.com/3141/2932177899_43d3fdaf5a.jpg" width="375" height="500" alt="IMG_0041.JPG" /></a></p>
<p><a href="http://www.flickr.com/photos/steffanwilliams/2932181235/" title="IMG_0044.JPG by Steffan Williams, on Flickr"><img src="http://farm4.static.flickr.com/3232/2932181235_0195cb5fce.jpg" width="500" height="375" alt="IMG_0044.JPG" /></a></p>
<p>Myself with <a href="http://www.ifanboy.com/">Ron Richards</a></p>
<p><a href="http://www.flickr.com/photos/steffanwilliams/2932180473/" title="IMG_0037.JPG by Steffan Williams, on Flickr"><img src="http://farm4.static.flickr.com/3045/2932180473_da96bc779b.jpg" width="500" height="375" alt="IMG_0037.JPG" /></a></p>
<p>Live Diggnation</p>
<p><a href="http://www.flickr.com/photos/steffanwilliams/2933041994/" title="IMG_0061.JPG by Steffan Williams, on Flickr"><img src="http://farm4.static.flickr.com/3206/2933041994_de5bdf08a9.jpg" width="500" height="375" alt="IMG_0061.JPG" /></a></p>
<p>Myself with Marcus from <a href="http://osx.iusethis.com/">iusethis.com</a> <small>(This guy <strong>rocks</strong>)</small></p>
<p><a href="http://www.flickr.com/photos/steffanwilliams/2932184451/" title="IMG_0062.JPG by Steffan Williams, on Flickr"><img src="http://farm4.static.flickr.com/3154/2932184451_7aaca33341.jpg" width="500" height="375" alt="IMG_0062.JPG" /></a></p>
<p>I think what makes FOWA is the people and not the presentations. It is a social event, and you can get out of it what you put in. Carsonified tried to nurture this by giving out badges so people could write what they are looking for, what they are in to or pretty much anything to get a conversation going. It&#8217;s a mix of people &#8212; designers, developers, business-types &#8212; coming together over one thing, that make this a great event to attend.</p>
]]></content:encoded>
			<wfw:commentRss>http://steffanwilliams.co.uk/tech-news/future-of-web-apps-london-2008/feed/</wfw:commentRss>
		<feedburner:origLink>http://steffanwilliams.co.uk/tech-news/future-of-web-apps-london-2008/</feedburner:origLink></item>
		<item>
		<title>PSP Game Giveaway: Winners</title>
		<link>http://feedproxy.google.com/~r/steffanwilliams/~3/lx7-BiUS0yI/</link>
		<comments>http://steffanwilliams.co.uk/asides/psp-game-giveaway-winners/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 16:15:49 +0000</pubDate>
		<dc:creator>Steffan Williams</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<category><![CDATA[giveaway]]></category>

		<category><![CDATA[psp]]></category>

		<guid isPermaLink="false">http://steffanwilliams.co.uk/?p=335</guid>
		<description><![CDATA[A couple of weeks ago I ran a competition to give away three PSP games. Well, I just wanted to announce the lucky people chosen as the winners:


Justine Powell
John Oxton
Aaron Ponsford

Congratulations to you guys. You should be contacted shortly by the e-mail you provided to get your game!
]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago I ran <a href="http://steffanwilliams.co.uk/asides/give-away-psp-games/">a competition</a> to give away three PSP games. Well, I just wanted to announce the lucky people chosen as the winners:<br />
<span id="more-335"></span></p>
<ol>
<li>Justine Powell</li>
<li>John Oxton</li>
<li>Aaron Ponsford</li>
</ol>
<p>Congratulations to you guys. You should be contacted shortly by the e-mail you provided to get your game!</p>
]]></content:encoded>
			<wfw:commentRss>http://steffanwilliams.co.uk/asides/psp-game-giveaway-winners/feed/</wfw:commentRss>
		<feedburner:origLink>http://steffanwilliams.co.uk/asides/psp-game-giveaway-winners/</feedburner:origLink></item>
		<item>
		<title>Redesign “Complete”</title>
		<link>http://feedproxy.google.com/~r/steffanwilliams/~3/_NncpwYj3JQ/</link>
		<comments>http://steffanwilliams.co.uk/site-news/redesign-complete/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 17:13:06 +0000</pubDate>
		<dc:creator>Steffan Williams</dc:creator>
		
		<category><![CDATA[Site News]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://steffanwilliams.co.uk/?p=321</guid>
		<description><![CDATA[While I&#8217;m never happy with any design I do, I&#8217;m satisfied enough to officially unveil this &#8220;new&#8221; look. I think this is about the eighth or ninth blog redesign I&#8217;ve done, and I&#8217;m hoping that this one will last me more than just a couple of months. 
This new theme is based on Steff dot [...]]]></description>
			<content:encoded><![CDATA[<p>While I&#8217;m never happy with any design I do, I&#8217;m satisfied enough to officially unveil this &#8220;new&#8221; look. I think this is about the eighth or ninth blog redesign I&#8217;ve done, and I&#8217;m hoping that this one will last me more than just a couple of months. </p>
<p>This new theme is based on <a href="http://steff.me/">Steff dot Me</a>, which is the beginning of my new home/portfolio.</p>
<p>Much like <a href="http://steff.me/">Steff dot Me</a>, this theme only took a few hours to make &#8212; so I apologise if there are any bugs or issues that haven&#8217;t quite been worked out.</p>
<p>The biggest issue for this redesign was my stupid idea to have (some of) my categories colour coded. This meant that I had to go back through all of my past entries to ensure that they all had a category and that the category was actually correct. Not fun.</p>
<p>If you have any complaints, comments, thoughts, ideas about this new theme or just want to post something spammy, please use the comment form below.</p>
]]></content:encoded>
			<wfw:commentRss>http://steffanwilliams.co.uk/site-news/redesign-complete/feed/</wfw:commentRss>
		<feedburner:origLink>http://steffanwilliams.co.uk/site-news/redesign-complete/</feedburner:origLink></item>
		<item>
		<title>Give Away: PSP Games</title>
		<link>http://feedproxy.google.com/~r/steffanwilliams/~3/-USyJwukOx4/</link>
		<comments>http://steffanwilliams.co.uk/asides/give-away-psp-games/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 11:55:52 +0000</pubDate>
		<dc:creator>Steffan Williams</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<category><![CDATA[giveaway]]></category>

		<category><![CDATA[goview]]></category>

		<category><![CDATA[psp]]></category>

		<guid isPermaLink="false">http://steffanwilliams.co.uk/?p=194</guid>
		<description><![CDATA[With all the Go!View posts I&#8217;ve been doing recently, what better way to top it off than a competition?

The lovely people over at Immediate Future have allowed me to create a little give away for three PSP games, namely: 

Echochrome
Secret Agent Clank
B-Boy

All you have to do is answer a rather simple question about the Go!View [...]]]></description>
			<content:encoded><![CDATA[<p>With all the <a href="http://goview.tv">Go!View</a> <a href="http://steffanwilliams.co.uk/reviews/review-goview/">posts</a> <a href="http://steffanwilliams.co.uk/tech-news/go-view-with-goview/">I&#8217;ve</a> been doing recently, what better way to top it off than a competition?<br />
<span id="more-194"></span><br />
The lovely people over at <a href="http://www.immediatefuture.co.uk/">Immediate Future</a> have allowed me to create a little give away for three PSP games, namely: </p>
<ul>
<li>Echochrome</strong></li>
<li>Secret Agent Clank</li>
<li>B-Boy</li>
</ul>
<p>All you have to do is answer a rather simple question about the <a href="http://goview.tv">Go!View</a> service:</p>
<div class="special"><strong>&#8220;How many steps are there to start using <a href="http://goview.tv">Go!View</a>?&#8221;</strong></div>
<p>There will be three winners who will each get a PSP game of their choosing. The first winner will get his first pick of the games, the second winner will get the second pick and the third winner will have the last game.</p>
<p>If you wish to participate in this give away, please leave your answer in the comments along with an e-mail address and a list of preference for the games. All comments will be moderated. Please note that this give away is for UK citizens only.</p>
<p>This give away will end on 22/09/08; after that I will be selecting the three winners randomly from everyone who commented with the correct answer.</p>
<p>Good luck!</p>
<p><small>Hint: Check out the &#8220;How to use <a href="http://goview.tv">GO!VIEW</a>&#8221; video on their homepage.</small></p>
<p><strong>Update:</strong> This contest has now finished.</p>
]]></content:encoded>
			<wfw:commentRss>http://steffanwilliams.co.uk/asides/give-away-psp-games/feed/</wfw:commentRss>
		<feedburner:origLink>http://steffanwilliams.co.uk/asides/give-away-psp-games/</feedburner:origLink></item>
		<item>
		<title>Review: Go!View</title>
		<link>http://feedproxy.google.com/~r/steffanwilliams/~3/HpBO-PEYADw/</link>
		<comments>http://steffanwilliams.co.uk/reviews/review-goview/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 20:11:37 +0000</pubDate>
		<dc:creator>Steffan Williams</dc:creator>
		
		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[psp]]></category>

		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://steffanwilliams.co.uk/?p=176</guid>
		<description><![CDATA[You may remember from a previous post that Go!View is an &#8220;on-demand&#8221; video service for the PlayStation Portable. Well, last time I just introduced the service but after using it I wanted to add a few of my thoughts.
 
Getting Started
Getting up and running with Go!View is fairly simple. Being new to using a PSP [...]]]></description>
			<content:encoded><![CDATA[<p>You may remember from a <a href="http://steffanwilliams.co.uk/tech-news/go-view-with-goview/">previous post</a> that <a href="http://www.goview.tv/">Go!View</a> is an &#8220;on-demand&#8221; video service for the PlayStation Portable. Well, last time I just introduced the service but after using it I wanted to add a few of my thoughts.<br />
<span id="more-176"></span> </p>
<h3>Getting Started</h3>
<p>Getting up and running with <a href="http://www.goview.tv/">Go!View</a> is fairly simple. Being new to using a PSP (I hadn&#8217;t even played with one before last week), I watched the introductory video on their homepage and just tried to follow the steps. To start off, you&#8217;ll need to sign up for an account. Once you&#8217;ve gone through the rigmarole you&#8217;ve been through a thousand times (another new username and password for you to remember), you&#8217;ll have yourself a shiny, new <a href="http://www.goview.tv/">Go!View</a> account. This will allow you to watch all of your favourite TV shows and movies right in the palm of your hands <sup><a href="#sup-1">1</a></sup>.</p>
<h3>Using Go!View</h3>
<p>The <a href="http://www.goview.tv/">Go!View</a> software is basically a glorified web browser, which just loads the Go!View website in a standalone application <sup><a href="#sup-2">2</a></sup>. The first piece of advice I can offer is to make sure you have javascript and flash enabled on your actual, default web browser; I had mine disabled for some web testing and couldn&#8217;t for the life of me work out why the <a href="http://www.goview.tv/">Go!View</a> software wasn&#8217;t working. As it was a stand-alone application, separate from my browser, it didn&#8217;t occur to me that this would be an issue.</p>
<p>Once you have the Go!View app open, simply log in and browse around their media library. When you&#8217;ve found something you like, say Top Gear, simply hit the Download button and the video will begin downloading to your library in the background. The videos range in price, based on whether they are in the subscription model or the pay-as-you-go model and how new the video is:</p>
<blockquote><p>Subscription packs are priced at £5 (&euro;7) for 1 pack, £8 (&euro;11) for 2 packs and £10 (€14) for all three packs and users can trial all three packs free for a month. Rental TV is available from £1.50 (&euro;2.00) per episode and a range of movies is available from £2.50 (&euro;3.20) each.</p></blockquote>
<p>If you subscribe to one of the packs, Entertainment, Comedy or Sport, the videos that you download within that category are completely free; obviously you&#8217;ll still have to pay for movies and rental TV. It doesn&#8217;t take much time to complete a file download as they use the Kontiki peer-to-peer, file-sharing client.</p>
<p>The &#8220;My Library&#8221; tab shows you a list of your media, this includes information on a selected video, such as when it will expire and the file size. It is also from here that you can select videos for transfer to your PSP. The video files expire after 29 days sitting on your computer, or 14 days on your PSP &#8212; of course, if you&#8217;re signed up to one of the monthly subscriptions, you can just download that video again. Although it&#8217;s not the purpose of Go!View, the inability to play these videos on your computer is irritating. </p>
<p>Transferring a video to your PSP requires you to use a USB cable. Firstly, put your PSP in USB mode and connect it to your PC. </p>
<div class="img"><a href="http://steffanwilliams.co.uk/wordpress/wp-content/uploads/2008/09/IMG_0021.jpg"><img src="http://steffanwilliams.co.uk/wordpress/wp-content/uploads/2008/09/IMG_0021.jpg" width="500" class="center" /></a></div>
<p><small class="caption">Poor quality iPhone picture.</small></p>
<p>You then have to use the Go!View software to select which files you wish to transfer over.</p>
<p>Last but not least (because it&#8217;s the entire point): watching the videos. The resolution of the videos are 480 x 272, which is fine for the PSP but if you wanted to plug your PSP into a TV for output, you&#8217;re going to end up with a rather blocky picture. I&#8217;ve been watching a lot of Top Gear on the PSP and the resolution really is just fine for the portable device.</p>
<div class="img"><a href="http://steffanwilliams.co.uk/wordpress/wp-content/uploads/2008/09/IMG_0023.jpg"><img src="http://steffanwilliams.co.uk/wordpress/wp-content/uploads/2008/09/IMG_0023.jpg" width="500" class="center" /></a></div>
<p><small class="caption">Poor quality iPhone picture.</small></p>
<h3>Final Verdict</h3>
<p>Overall, the Go!View service is worth checking out if you&#8217;re a PSP owner. Remember that once you&#8217;ve signed up, you can sign up for a free month of Comedy, Sport and Entertainment shows; it&#8217;s worth a look just to get something for nothing. Just remember to cancel before the month is up, otherwise you&#8217;ll be charged for how many subscription packs you signed up for.</p>
<p>I have a slight issue with the transfer process, in that it won&#8217;t allow you access to your library while a transferring media.</p>
<div class="img"><a href="http://steffanwilliams.co.uk/wordpress/wp-content/uploads/2008/09/Transfer.jpg"><img src="http://steffanwilliams.co.uk/wordpress/wp-content/uploads/2008/09/Transfer.jpg" width="500" class="center" /></a></div>
<p>Also, like I mentioned in <a href="http://steffanwilliams.co.uk/tech-news/go-view-with-goview/">my previous post</a>, Go!View requires you to use Windows &#8212; something that I very rarely do!</p>
<p>All in all, if you&#8217;re looking for a way to get portable media this seems like a really good option. The library is quite small at the moment (in my opinion), however they claim to be increasing it all the time.</p>
<p><small>Thank you to the people at <a href="http://www.immediatefuture.co.uk/">Immediate Future</a> for the loan of the PlayStation Portable.</small></p>
<p><strong>Footnotes</strong><br /><span id="sup-1">1. on a PSP. Not actually <em><strong>in</strong></em> your palm.</span><br /><span id="sup-2">2. much like the site specific applications that <a href="http://fluidapp.com/">Fluid</a> creates.</span></p>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://steffanwilliams.co.uk/reviews/review-goview/feed/</wfw:commentRss>
		<feedburner:origLink>http://steffanwilliams.co.uk/reviews/review-goview/</feedburner:origLink></item>
		<item>
		<title>Fifty Designers’ Current Favourite Typefaces</title>
		<link>http://feedproxy.google.com/~r/steffanwilliams/~3/zueynjPdEoM/</link>
		<comments>http://steffanwilliams.co.uk/asides/fifty-designers-current-favourite-typefaces/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 02:14:44 +0000</pubDate>
		<dc:creator>Steffan Williams</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<category><![CDATA[fonts]]></category>

		<guid isPermaLink="false">http://steffanwilliams.co.uk/?p=171</guid>
		<description><![CDATA[
With an eclectic taste such as this, there&#8217;s a reason I don&#8217;t consider myself a designer.
Create/Reject have created a wonderful, little book entitled &#8220;Fifty Designers&#8217; Current Favourite Typefaces&#8220;. Even though I purchased it a couple of months ago, I hadn&#8217;t gotten around to looking at it until now. It&#8217;s very interesting to see what style [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://steffanwilliams.co.uk/wordpress/wp-content/images/current_fav_typefaces.png" alt="my current favourite typefaces" /></p>
<p>With an eclectic taste such as this, there&#8217;s a reason I don&#8217;t consider myself a designer.</p>
<p><a href="http://www.createreject.com/">Create/Reject</a> have created a wonderful, little book entitled &#8220;<a href="http://www.createreject.com/projects/unicef/">Fifty Designers&#8217; Current Favourite Typefaces</a>&#8220;. Even though I purchased it a couple of months ago, I hadn&#8217;t gotten around to looking at it until now. It&#8217;s very interesting to see what style of fonts is <em>in</em> right now! </p>
<p>The book only cost £3 and all of the proceeds went to UNICEF. Unfortunately the book is sold out online, however it is still possible to pick it up from a bookshop in London or you can just <a href="http://www.google.com/myanmarcyclone/">donate straight to UNICEF</a> &#8212; either is good.</p>
<p>Geek points will be awarded to anyone who can name any of these fonts in the comments!</p>
<p><small><strong>Geek points cannot be redeemed for anything whatsoever. Geek points hold no credit value and are not valid within the United Kingdom when there is a full moon during any odd numbered months in an even numbered year.</strong></small></p>
]]></content:encoded>
			<wfw:commentRss>http://steffanwilliams.co.uk/asides/fifty-designers-current-favourite-typefaces/feed/</wfw:commentRss>
		<feedburner:origLink>http://steffanwilliams.co.uk/asides/fifty-designers-current-favourite-typefaces/</feedburner:origLink></item>
	</channel>
</rss>
