<?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>Dave McDermid &#187; Conferences</title>
	<atom:link href="http://www.davemcdermid.co.uk/tag/conferences/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davemcdermid.co.uk</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 19 Jan 2010 00:59:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Summary from SXSW 09</title>
		<link>http://www.davemcdermid.co.uk/2009/03/summary-from-sxsw-09/</link>
		<comments>http://www.davemcdermid.co.uk/2009/03/summary-from-sxsw-09/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 15:40:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[ia]]></category>
		<category><![CDATA[sxsw]]></category>
		<category><![CDATA[ux]]></category>

		<guid isPermaLink="false">http://www.davemcdermid.co.uk/?p=49</guid>
		<description><![CDATA[OK, so SXSW is great for meeting people, parties, twittering, eating out etc. But there were also some fine talks from excellent speakers and panels. Here is a summary of what I took away from this years southby.
Websites are so much more than print
Most websites are built like people design magazines, posters and books. Websites [...]]]></description>
			<content:encoded><![CDATA[<p>OK, so SXSW is great for meeting people, parties, twittering, eating out etc. But there were also some fine talks from excellent speakers and panels. Here is a summary of what I took away from this years southby.</p>
<h3>Websites are so much more than print</h3>
<p>Most websites are built like people design magazines, posters and books. Websites are built as pages and adorned with pictures and video. This is akin to early filmmakers drawing inspiration from the theatre. It was only when filmmakers got creative and allowed the camera to be part of the action instead of an audience member that the industry came into its own. Good example: <a href="http://skittles.com/">skittles.com</a> &#8211; Their site is a mashup of a twitter search, youtube channel, flickr search etc. This is brave, but cool.</p>
<p>Sitemaps and navigation. Traditionally they have always been deemed necessary, and from an information architecture point of view, they are very handy. Clients like them so they can organise their pages into a natural hierarchy. This is wonderful, except as a site grows, it breaks. Eventually there comes the realisation that content could be categorised in different sections. An event may appear on multiple listing pages. A photo may be part of several galleries. This fine when navigating a site from top to bottom, but who really visits a site and thoroughly works their way through the sitemap?</p>
<p>Most people arrive at a site from a search engine or link, jumping right in on a page in the middle of a sitemap. So where do they go from here? There can be multiple routes back up the navigation tree. What we have here people is many-to-many relationships. This is a tricky thing to consider when building a sitemap. So don&#8217;t. Think about content, think about tagging, think about related content. If you get the little pictures right, the big picture will take care of itself.</p>
<p>Inspired by <a href="http://www.dswillis.com/">Dan Willis</a>&#8216; <a href="http://my.sxsw.com/events/event/3942">SXSWi talk</a>.</p>
<h3>Unnatural experiments in Web Design</h3>
<p><a href="http://paulannett.co.uk/">Paul Annett</a>&#8217;s <a href="http://my.sxsw.com/events/event/3969">talk</a> on using clever design tricks to entertain, amuse and inspire visitors was in itself inspiring. Often we go to great lengths to ensure our sites are usable, friendly and don&#8217;t break. We rarely go the extra mile to add the &#8220;Ooh, that&#8217;s clever!&#8221; factor to a site. The value of this is also underestimated, and can transform a site that makes a client happy, to one they rave about. The flip side is that if a nicety interferes with the functionality of a site, the opposite effect can occur. Classic examples are <a href="http://silverbackapp.com/">Silverback, with it&#8217;s parallax vines</a>, <a href="http://www.webleeddesign.com/">webleeddesign, with the scolling paint</a> and <a href="http://kyanmedia.com/">kyanmedia (click the worm in the footer)</a>. The justification for the added flare can be found in the <a href="http://en.wikipedia.org/wiki/Kano_model">Kano Model of customer satisfaction</a>.</p>
<h3>Creating a great API</h3>
<p>Thanks to <a href="http://www.railsenvy.com/">Greg Pollack</a> for the down-to-earth <a href="http://my.sxsw.com/events/event/3943">How not to Fail at Web Services</a>. There are some really simple rules to creating a great API that many have failed to follow.</p>
<ul>
<li>The URL is for nouns</li>
<li>HTTP method is for action (GET, POST, PUT, DELETE)</li>
<li>pronouns (or ids) should follow regular nouns (or types)</li>
</ul>
<p>Bad example: /get/users?id=1<br />
Good example: /users/1</p>
<p>Due to browsers only supporting GET and POST, it&#8217;s fine to compromise by using POST and pass in the method as a value. This keeps the url clean, readable and semantic.</p>
<h3>The Future</h3>
<p>Naturally, there was plenty of people looking for someone to tell them they can stop &#8220;supporting&#8221; older browsers. The best practice is not to ignore older browsers, but if the client is happy, just give them a simpler layout / style. New browsers can then receive a progressively enhanced interface. No browser should be left unusable or inaccessible. Naturally, it is up to the client to decide how much time is spent developing for older browsers.</p>
<p>Accessible Rich Internet Applications. It is becoming increasingly popular to use AJAXian methods of document manipulation, and this can be confusing for both screen readers and screen reader listeners. Work is being done to improve the control developers have over marking content and content areas as dynamic or prioritise announcements.</p>
<p>CSS3 always makes for an impressive demo. I particularly enjoyed Opera&#8217;s demo of rotating and shearing iFrames, even though I doubt it has a real world use. The principle of having that level of control of elements is exciting. Microsoft&#8217;s approach to compatibility and standards with IE8 is kinda convoluted, but clever and probably ultimately the safest approach. We&#8217;re still in a transition period, remember.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davemcdermid.co.uk/2009/03/summary-from-sxsw-09/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FOWA &#8211; London 2008</title>
		<link>http://www.davemcdermid.co.uk/2008/10/fowa-london-2008/</link>
		<comments>http://www.davemcdermid.co.uk/2008/10/fowa-london-2008/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 18:08:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[FOWA]]></category>

		<guid isPermaLink="false">http://blog.davemcdermid.co.uk/?p=3</guid>
		<description><![CDATA[Following Future of Web Apps I felt inspired to start blogging properly. By properly, I&#8217;m not gonna start writing novels, or even short stories. Just short notes, about things that interest me. Starting with things that interested me from FOWA London 2008.
Where we are today with Web Apps.
Right now we are at a point where we [...]]]></description>
			<content:encoded><![CDATA[<p>Following <a href="http://london2008.futureofwebapps.com/">Future of Web Apps</a> I felt inspired to start blogging properly. By properly, I&#8217;m not gonna start writing novels, or even short stories. Just short notes, about things that interest me. Starting with things that interested me from FOWA London 2008.</p>
<h3>Where we are today with Web Apps.</h3>
<p>Right now we are at a point where we all regularly use web applications, not just for novelty, but as a system we rely on. While Google docs doesn&#8217;t even come close to Microsoft Office, and <a href="http://www.splashup.com/">Splashup</a> ain&#8217;t no Photoshop, the way these site are built are like applications, not websites. <a href="http://www.280slides.com">280Slides</a> is a classic example of a web app that looks and behaves like a desktop app, and with newer browsers running javascript faster and following more CSS rules, exciting times are ahead.</p>
<p>What was really interesting was a comparison between Combo VCR / DVD recorders and Silverlight / Adobe AIR. Adobe AIR takes the web app to the desktop, so web designers can build websites that run like desktop apps, is this bridging the gap between your desktop and the web? It&#8217;s kind of a backward step to help bring people forward, if that makes sense. If everyone was always online, and web apps shared and co-operated better, we wouldn&#8217;t have such a need for a desktop. Eventually. There is a lot of buzz about &#8216;Web only operating systems&#8217; and most of this is naive or rubbish, but people are slowly changing their perspective. We just need to build the tools.</p>
<h3>Good times / Bad times</h3>
<p>At the moment, there is much talk of the crunch. Tim Bray made some interesting comments about surviving, most memorable for me was being flexible. If you&#8217;re a Ruby developer, learn PHP. If you&#8217;re already a multi-talented developer, learn CSS, or photoshop. If people have to be let go, the 1-trick-ponies will be the first. It never hurts to learn a new skill.</p>
<p>The importance of an online presence was also heavily stated, first thing many prospective employers do is Google your name. If you have a blog, twitter, or contribute to open source projects etc. you will appear more interested in the web and a stronger candidate. This is partly why I&#8217;m blogging (interest in the web, not because I&#8217;m looking for a job!!)</p>
<h3>The importance of networking</h3>
<p>I was genuinely surprised by how many people had heard of <a href="http://www.headscape.co.uk">Headscape</a>, the company I work for. <a href="http://www.boagworld.com">Paul Boag</a> has been busy. As a result, Craig &amp; did meet a number of interesting people, and had an awesome time. Networking is vital in an industry as competitive as web design / development.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davemcdermid.co.uk/2008/10/fowa-london-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
