<?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>graphiceyedea &#187; workshops</title>
	<atom:link href="http://graphiceyedea.co.uk/wp/category/workshops/feed/" rel="self" type="application/rss+xml" />
	<link>http://graphiceyedea.co.uk/wp</link>
	<description>prisca schmarsow - portfolio</description>
	<lastBuildDate>Sat, 29 May 2010 11:03:37 +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>jQuery for Designers</title>
		<link>http://graphiceyedea.co.uk/wp/jquery-for-designers/</link>
		<comments>http://graphiceyedea.co.uk/wp/jquery-for-designers/#comments</comments>
		<pubDate>Sun, 16 May 2010 11:02:34 +0000</pubDate>
		<dc:creator>prisca</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://graphiceyedea.co.uk/wp/?p=1593</guid>
		<description><![CDATA[Another brilliant day courtesy of  "for a beautiful web" [#fabw], organised by Andy Clarke -  'jQuery for Designers' with the lovely Remy Sharp. I left with my head full, having learn a lot and having met some lovely people ;) Thanks, Andy &#038; Remy :)]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1594" title="jquery FABW" src="http://graphiceyedea.co.uk/wp/wp-content/uploads/2010/05/jquery.jpg" alt="" width="460" height="102" /><br />
Another brilliant day courtesy of  &#8220;<a href="http://forabeautifulweb.com/announcing/london-140510">for a beautiful web</a>&#8221; [<a href="http://search.twitter.com/search?q=%23fabw">#fabw</a>] :)</p>
<p>I had been playing around with various bits of jQuery on several sites &#8211; and really seeing the potential of enhancing my designs with it. My problem was not being able to troubleshoot errors and not being able to edit the effects properly to suit my designs. I was starting to gain more understanding and being to do much more than I thought &#8211; but I kept hitting walls&#8230; So this workshop with the lovely <a href="http://remysharp.com/">Remy Sharp</a> was just the ticket to get me going :)<span id="more-1593"></span></p>
<p><a href="http://www.flickr.com/photos/remysharp/4605519503/"><img class="alignnone" title="Crikey, full house! fabw" src="http://farm2.static.flickr.com/1393/4605519503_4fc8d689f3.jpg" alt="" width="500" height="375" /></a><br />
[photo by <a href="http://www.flickr.com/photos/remysharp">Remy Sharp</a>]</p>
<p>And it was brilliant &#8211; I learnt a lot and left with a full head,  bursting with geekery, tons of new ideas and solutions to old and new  problems flying through my mind. Now I just hope I will be able to put  into practice what Remy taught us, fingers crossed :)</p>
<p>Andy and Sue as always were lovely hosts &#8211; the venue was wonderful, the food delicious. We received a beautiful cloth which is delicately embossed with the #fabw pattern and text. Just gorgeous ;) And the workshop was just brilliant.</p>
<p>While Remy&#8217;s talk is still fresh in my head (with a few reminders taken from Remy&#8217;s slides) &#8211; here are just a few of my notes from yesterday for reference:</p>
<ul>
<li>first and most important point was &#8220;Build without jQuery&#8221; first. Focus on designing the page and making sure it all works correctly with CSS alone before even starting with jQuery. Design the page and once complete &#8211; add jQuery a little at a time, testing as you go along. A brilliant quote from the slide:<br />
<em style="font-weight: bold;">(a lot of it is) &#8220;all about CSS&#8221;</em></li>
<li>one of the advantages of jQuery is that it simplifies &#8211; using the JS library allows for simpler and shorter code to implement the effects.<br />
For example, to get table striping to work in IE6 &#8211; instead of several lines of JS code &#8211; you only need one:<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;table tr:nth-child(odd)&#8217;).addClass(&#8216;odd&#8217;);</strong></li>
<li>to check whether a website is using jQuery and which version &#8211; use FireBug and type the following into the Console:<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$.fn.jquery</strong><a rel="lightbox" href="http://graphiceyedea.co.uk/wp/wp-content/uploads/2010/05/firebug1.png"><img class="alignnone size-full wp-image-1606" title="firebug1" src="http://graphiceyedea.co.uk/wp/wp-content/uploads/2010/05/firebug1-e1273930114804.png" alt="" width="440" height="162" /></a></li>
<li>you can use jQuery on every site &#8211; to run scripts and more &#8211; using the jQuerify bookmarklet: <a href="http://www.learningjquery.com/2009/04/better-stronger-safer-jquerify-bookmarklet">jQuerify on &#8216;learning jQuery</a><a rel="lightbox" href="http://graphiceyedea.co.uk/wp/wp-content/uploads/2010/05/jquerify.png"><img class="alignnone size-full wp-image-1620" title="jquerify" src="http://graphiceyedea.co.uk/wp/wp-content/uploads/2010/05/jquerify-e1273930553709.png" alt="" width="440" height="279" /></a></li>
<li>to install jQuery on your website &#8211; you can either keep a copy within your site&#8217;s directory or hotlink it to a source repository (from Media Temple, Microsoft or Google). Remy recommended to link to Google &#8211; saying it will be very efficient due to the <a href="http://en.wikipedia.org/wiki/Content_delivery_network">CDN</a>. This works by loading in the geographically closest copy of the script you are using and it is therefore likely that your site&#8217;s visitor already has a cached copy in his/her browser &#8211; therefore speeding up page loading.</li>
<li>code order — all JS should be kept at the very bottom of your HTML code, just before the closing body tag. This will allow the page to load fully and only then begin to read the JS. And the order of the code for using jQuery should be:<br />
<em style="font-weight: bold;">1 &#8211; jQuery link<br />
2 &#8211; jQuery plugins<br />
3 &#8211; custom code</em><br />
And if you are using other JS libraries in addition to jQuery &#8211; put those first, followed by the jQuery order listed above.<br />
From Remy&#8217;s slide:<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;styles&gt;<br />
&lt;!&#8211; make me beautiful &#8211;&gt;<br />
&lt;/styles&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;content&gt;<br />
&lt;!&#8211; make me learned &#8211;&gt;<br />
&lt;/content&gt;<br />
&lt;behaviour&gt;<br />
&lt;!&#8211; ooo, matron &#8211;&gt;<br />
&lt;/behaviour&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</strong></li>
<li>JS usually needs to check for &#8216;document.ready&#8217; &#8211; by placing the code at the very bottom of the page this is no longer required as it will be loaded last, once the rest has already been loaded. The code usually looks like this: <strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(document).ready(function () {<br />
// &lt; YOU &gt;<br />
});</strong>Following Remy&#8217;s advice of the order of code &#8211; the above can now be shortened to this:<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(function () {<br />
// &lt; YOU &gt;<br />
});</strong><br />
Remy also pointed out that it might be useful to use the below instead, especially when handing over code to others. The code below is practically the same as the one above but has the advantage that it clearly mentions jQuery and can avoid clashes with other JS functions.<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">jQuery(function ($) {<br />
// &lt; YOU &gt;<br />
});</strong></li>
<li>an example of the click function &#8211; briefly explained:<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;a&#8217;).click(function () {<br />
alert(&#8216;I got clicked&#8217;);<br />
return false;<br />
});</strong><br />
First the anchors are found. Once they are clicked &#8211; the function is run (in this case showing an alert text).</p>
<p>&#8216;return false&#8217; cancels the default behaviour of the browser which would be to follow the link and redirect.<br />
For debugging &#8211; use the following:<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;a&#8217;).click(function(event){<br />
event.preventDefault();<br />
alert(&#8216;I got clicked&#8217;);<br />
});</strong></li>
<li><em style="font-weight: bold;">WARNING : selectors fail silently, the same way CSS does.</em><br />
When you target selectors for use with jQuery and make a mistake (similar to making a mistake in your CSS by getting the selector&#8217;s name wrong) &#8211; you will not see an error show up. Your function will simply fail but not break the page or show a warning.<br />
In order to find exsiting selectors within a page &#8211; use the FireBug console. The code below would look for any selectors named &#8216;remy&#8217; in the page&#8217;s code and return the result in numbers.<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;remy&#8217;).length</strong></li>
<p>to target specific selectors within teh page &#8211; you can simply use the same names as in the HTML, for example:<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(‘#nav li.contact’)</strong><br />
To target selectors found only within a set element &#8211; use the following:<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;#main&#8217;).find(&#8216;.header,.footer&#8217;);</strong><br />
The above code will look for elements with the class of &#8216;header and &#8216;footer&#8217; within the &#8216;#main&#8217; element.</p>
<li>for finer control &#8211; use a combination of &#8216;find&#8217; and then filter the results. For example, first to find all anchors:<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;a&#8217;)</strong><br />
Then to filter the links by title attribute:<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;a&#8217;).filter(&#8216;[title]&#8216;)</strong><br />
A very useful application of this is the finding of links to other file types such as .PDF &#8211; then adding a class to them which can be targeted via CSS to add an icon to those links:<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;a[href$="pdf"]&#8216;).addClass(&#8216;pdf&#8217;);</strong><br />
The code above looks for all links which end in pdf and then adds a class of &#8216;pdf&#8217; to them. To look for links starting with a hash key &#8211; you&#8217;d write this instead: <strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;a[href^="#"]&#8216;).addClass(&#8216;someclassname&#8217;);</strong></li>
<li>for faster loading &#8211; you can chain functions together though you should avoid chains which are too long.<br />
For example, the function below first looks for all divs, then shows them, then hides them. Then slides them up and then down. This could be written as separate functions:<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;div&#8217;).show()<br />
$(&#8216;div&#8217;).hide()<br />
$(&#8216;div&#8217;).slideUp()<br />
$(&#8216;div&#8217;).slideDown();</strong><br />
Or you could write this &#8211; putting them all together in a chain, written like this:<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;div&#8217;)<br />
.show()<br />
.hide()<br />
.slideUp()<br />
.slideDown();</strong><br />
or this:<br />
<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;div&#8217;).show().hide().slideUp().slideDown();</strong><br />
To end a chain in case of very long chains &#8211; you can use this:<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">.end()</strong></li>
<li>a popular jQuery effect is to show extra information when the user rolls over a specific element, like an image for example. Remy pointed out a common mistake is made with this which would cause the effect from carrying on despite the cursor no longer being above the set element. This function could be written like this:<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;div.picture a&#8217;).hover(function () {<br />
$(this).find(&#8216;strong&#8217;).fadeIn();<br />
}, function () {<br />
$(this).find(&#8216;strong&#8217;).fadeOut();<br />
});</strong><br />
To stop the looping effect by telling hover effect to stop properly once mouse is no longer over element &#8211; this code below should be used instead:<strong style="display: block; padding: 10px; background: none repeat scroll 0% 0% #bfc193; font-family: monospace; font-weight: bold; color: #00079b; font-size: 1.1em; line-height: 1.5;">$(&#8216;div.picture a&#8217;).hover(function () {<br />
$(this).find(&#8216;strong&#8217;).stop().fadeTo(&#8216;normal&#8217;,1);<br />
}, function () {<br />
$(this).find(&#8216;strong&#8217;).stop().fadeOut(&#8216;normal&#8217;,0);<br />
});</strong><br />
NOTE: the hover function always needs 2 functions, one for hover and one for mouse out.</li>
</ul>
<p>There was so much more which I might write up another time &#8211; looking at animation via jQuery and some neat Ajax techniques. This would turn into too long a blogpost if I tried to fit it all in. Just for future reference &#8211; a few links to get more info and help with jQuery:</p>
<ul>
<li><a href="http://jquery.com/">jquery.com </a></li>
<li><a href="http://forum.jquery.com/">forum.jquery.com</a></li>
<li>API: <a href="http://docs.jquery.com/">docs.jquery.com</a></li>
<li>API: <a href="http://api.jquery.com/">api.jquery.com</a></li>
<li>API: <a href="http://visualjquery.com/">visualjquery.com</a></li>
<li>IRC channel: irc.freenode.net/#jquery</li>
<li><a href="http://jqueryfordesigners.com/">jqueryfordesigners.com</a> (Remy&#8217;s site with great tutorials, screencasts and more)</li>
</ul>
<p>I had a great day, learnt lots and met some lovely people, some old faces and new. A huge thank you to Andy [<a href="https://twitter.com/malarkey">@malarkey</a>] and Remy [<a href="http://twitter.com/rem">@rem</a>]  :-)</p>
<p>PS: in case I made any mistakes in my notes or code samples &#8211; please do comment and let me know ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://graphiceyedea.co.uk/wp/jquery-for-designers/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Andy on visual design</title>
		<link>http://graphiceyedea.co.uk/wp/andy-on-visual-design/</link>
		<comments>http://graphiceyedea.co.uk/wp/andy-on-visual-design/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 22:55:54 +0000</pubDate>
		<dc:creator>prisca</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://graphiceyedea.co.uk/wp/?p=727</guid>
		<description><![CDATA[The design workshop with Andy Clarke was fantastic - discussing topics such as finding inspiration, perfecting web typography and creative grid designs. ]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-774" title="fabw" src="http://graphiceyedea.co.uk/wp/wp-content/uploads/2008/12/fabw.jpg" alt="" width="460" height="130" /></p>
<p>Yesterday was the &#8220;Visual Web Design Master Class&#8221; with Andy Clarke &#8211; if you don&#8217;t know it already &#8211; have a look at the website &#8216;<a href="http://forabeautifulweb.com" target="_blank">for a beautiful web</a>&#8216; (to see it in its full glory &#8211; view the site in Safari :). I had been looking forward to this workshop as its focus was on design rather than coding. Though I love learning more new techniques and clever methods for the technical aspects &#8211; I feel I don&#8217;t have the time to delve on the design aspect of my work, though I always wish I had.</p>
<p><span id="more-727"></span></p>
<p>So you can imagine my shock as I arrived at the chosen venue of StMartin&#8217;s to find the building dark and without power&#8230;! Thanks to a last minute venue change which seemed to have gone amazingly smoothly the workshop went ahead without much delay :-)<br />
You can <a href="http://forabeautifulweb.com/blog/about/guerilla_venue_switching/" target="_blank">read more about this near disaster</a> on Andy&#8217;s blog.</p>
<p>Andy started with a look at how to get fresh inspiration. As webdesigners we do look a lot at other people&#8217;s sites and their online work &#8211; taking inspiration from the design we work on ourselves. Breaking out of this habit &#8211; Andy listed a few things we can do to find inspiration in more unlikely sources: read a short story every day, read a poem every day, drive someone else&#8217;s car, look up, swap your iPod with a friend, read classified ads (for showing a lot of info in an condensed space), watch a bollywood movie, learn to ride a motorcycle, take a different route every week /  once a week.</p>
<p>After this introduction &#8211; Andy&#8217;s presentation went onto  typography and grids and was amazing &#8211; and I will not be able to do it justice here &#8211; so I will point you to the beautifully crafted designs on the FABW site&#8217;s blog: <a href="http://forabeautifulweb.com/blog/about/typesetting_the_waste_land/" target="_blank">Typesetting The Waste Land</a></p>
<p>Another highlight of the workshop was the working lunch during which guest speaker Brendan Dawes did his presentation. Brendan was very dynamic and entertaining and inspiring, showing amongst others his<a href="http://www.brendandawes.com/sketches/redux/" target="_blank"> Cinema Redux</a> and one of my favourites <a href="http://www.doodlebuzz.com/" target="_blank">DoodleBuzz</a>.</p>
<p>Apart from a head full of typography, grids and inspiration &#8211; we all went home with a beautiful Moleskine sketchbook (squared) and Lamy pen. I love both &#8211; and the subtle branding is just gorgeous ;)</p>
<p>The workshop was brilliant, I thoroughly enjoyed Andy&#8217;s presentations, as well as Brendan Dawes talk, met some interesting people in my fellow attendees &#8211; and was happy to see <a href="http://www.pixeldiva.co.uk/" target="_blank">Pixeldiva Ann McKeen</a> again :-)<br />
The day concluded with chat and drinks in the pub and I went on to join Andy &amp; Sue, Mikey (Andy&#8217;s brother) and <a href="http://www.fullcreammilk.co.uk" target="_blank">Owen Gregory</a> for meal which was a lovely end to an inspirational day. Thanks, Andy :)</p>
<div id="flickrbadge"><script src="http://www.flickr.com/badge_code_v2.gne?show_name=1&amp;count=10&amp;display=latest&amp;size=s&amp;layout=x&amp;source=all_tag&amp;tag=fabwlondon08&amp;user=20272235%40N00" type="text/javascript"></script></div>
<p><br class="clear" /></p>
<p><a href="http://www.flickr.com/photos/tags/fabwlondon08/show/" target="_blank">→ view flickr slideshow #fabwlondond08</a></p>
]]></content:encoded>
			<wfw:commentRss>http://graphiceyedea.co.uk/wp/andy-on-visual-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>INMD workshop &#8211; last day</title>
		<link>http://graphiceyedea.co.uk/wp/inmd-workshop-last-day/</link>
		<comments>http://graphiceyedea.co.uk/wp/inmd-workshop-last-day/#comments</comments>
		<pubDate>Mon, 19 May 2008 15:52:47 +0000</pubDate>
		<dc:creator>prisca</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://graphiceyedea.co.uk/wp/?p=330</guid>
		<description><![CDATA[Notes on the last day of the 'Inclusive New Media' workshop - user testing and opinions of an expert panel on creating sites accessible to the ID user group.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-332" title="inmd1" src="http://graphiceyedea.co.uk/wp/wp-content/uploads/2008/05/inmd1.jpg" alt="" width="500" height="147" /></p>
<p>today is the last day of the INMD workshop &#8211; on the program for today is more usertesting and an afternoon of talk from selected experts. I will try to keep notes as we go along today as I am not sure whether I will have time to write this up afterwards. <span id="more-330"></span></p>
<p>MORNING SESSION &#8211; user testing<br />
I had fun helping the Lisa, Alex and George with their &#8216;iBrow&#8217; application. Their idea of a image sharing / uploading application is inspiring and it was nice to see our users have fun with images and with sharing their interests.</p>
<p>We went onto to testing a site in working progress:<br />
<a href="http://newhameasyread.org" target="_blank">newham &#8211; easy read</a></p>
<p>It was interesting to hear the different opinions &#8211; very surprising at times. Though we expected people to find the icon driven navigation easier &#8211; our testers seemed to prefer to read the text. A few points we found:</p>
<ul>
<li>rollovers should be as larger as their boxes (if visually prominent)</li>
<li>text colours with high contrast are preferred for ease of reading</li>
<li>symbols were interpreted quite unpredictably at times &#8211; careful consideration needs to be taken in order to avoid confusion</li>
</ul>
<p>making guidelines accessible&#8230;?!<br />
our task was to brainstorm notes on how the guidelines might be written to be inclusive of our ID group. This proved to be as hard as expected &#8211; and thought we managed to put down a few good points I feel we merely pinned down good practices for usability and accessibility. Here are our notes in detail:<br />
<a rel="lightbox[inmd]" href="http://graphiceyedea.co.uk/wp/wp-content/uploads/2008/05/notes1.jpg"><img class="floatleft thn" title="notes1" src="http://graphiceyedea.co.uk/wp/wp-content/uploads/2008/05/notes1.jpg" alt="" width="112" height="150" /></a><a rel="lightbox[inmd]" href="http://graphiceyedea.co.uk/wp/wp-content/uploads/2008/05/ntoes2.jpg"><img class="floatleft thn" title="notes2" src="http://graphiceyedea.co.uk/wp/wp-content/uploads/2008/05/ntoes2.jpg" alt="" width="112" height="150" /></a><a rel="lightbox[inmd]" href="http://graphiceyedea.co.uk/wp/wp-content/uploads/2008/05/notes3.jpg"><img class="floatleft thn" title="notes3" src="http://graphiceyedea.co.uk/wp/wp-content/uploads/2008/05/notes3.jpg" alt="" width="112" height="150" /></a><br />
<br class="clear" /><br />
<strong>AFTERNOON SESSION</strong> &#8211; expert panel</p>
<p><strong>Ann McMeekin</strong> &#8211; <a href="http://pixeldiva.co.uk/" target="_blank">PixelDiva<br />
</a></p>
<ul>
<li>testing tools might be suitable for specific tasks but not for the ID usergroups</li>
<li>ID users will require specific testing</li>
<li>keep trying to push toward the right aim, making site as accessible as possible</li>
<li>pick your battles &#8211; and show examples (eg YouTube videos) of disabled users to make your point</li>
<li>accessibility is a journey not a destination</li>
</ul>
<p><strong>Nick Weldin </strong>- <a href="http://www.paddingtonarts.org.uk" target="_blank">Paddington Arts</a></p>
<ul>
<li>internet is becoming more complex &#8211; so are the user groups</li>
<li>bare in mind the support workers who might assist people with learning difficulties</li>
<li>keyboard control is vital</li>
</ul>
<p><strong>Simon Detheridge</strong> &#8211; <a href="http://www.widgit.com/" target="_blank">widgit</a></p>
<ul>
<li>symbols can hugely enhance the accessibility of websites</li>
<li>speech facilities will also aid usablility</li>
<li><a href="http://www.symbolworld.org/" target="_blank">symbolworld</a> = online reference</li>
<li>additional advantages are easy understanding for people with poor language skills, literacy problems</li>
<li><a href="http://isaac-online.org" target="_blank">isaac</a> site as example of symbol usage</li>
<li>for symbolised alternatives: access from home page, limit navigation to less than 8 items, symbolise 1 sentence in 1 line (due to no symbols for punctuation), do not overload the page with a vast number of symbols</li>
</ul>
<p><strong>Antonia Hyde</strong> &#8211; <a href="http://www.unitedresponse.org.uk/" target="_blank">United Response</a></p>
<ul>
<li>five tips on &#8216;big is beautiful&#8217;</li>
<li>icons, graphics and pictures<br />
keep supportive graphics at a large size</li>
<li>interaction<br />
be clear in indicating interactive elements</li>
<li>controls<br />
put user in control over text size for example</li>
<li>control access &#8211; be clear on the main functions</li>
<li>help &#8211; make help files available and clearly visible within the page</li>
</ul>
<p><strong>Jonathan Hassell</strong> &#8211; <a href="http://bbc.co.uk" target="_blank">BBC</a><br />
(participating writer on PAS78)</p>
<ul>
<li>inclusion<br />
try multimedia, such as video &#8211; make use of web2.0 functionalities</li>
<li>personlisation<br />
try personlising interfaces &#8211; complexity vs simplicity<br />
(working example: BBC&#8217;s homepage feature is customisable)</li>
<li>beyond inclusion<br />
try creating something special where needed (be careful not to ghettoise&#8230;)<br />
in specific instances it will be the better solution to create specific features/pages for a select audience</li>
</ul>
<p><strong>Andy Minion</strong> &#8211; <a href="http://www.rixcentre.org" target="_blank">RIX centre</a></p>
<ul>
<li>including multimedia is clearly a preferred interest of the ID group</li>
<li>positive influence of symbol usage making people re-think content structure</li>
</ul>
<p>Today was a nice end to a great workshop ;-)</p>
<p>Before I finish this post however I have to say my bit about one part of our expert panel which really bothered me &#8211; the symbols and widgits issue&#8230; This had shocked me at the very beginning of the workshop when we heard about the licensing of these symbols and the sheer cost imposed upon anyone wishing to implement them.<br />
Simon Detheridge from widgit, the company selling the software and licenses, presented what I would describe more of sales pitch than a few words on the issue of ID users needs. I was skeptical from the start, of course. But listening to him elaborate on the symbols being part of education &#8211; only to be less available once people leave school &#8211; sounded just like a perfect &#8211; and horribly exploitative &#8211; business scheme to me. Highlighting other benefits of symbol use just made this point even clearer.<br />
During the Q&amp;A &#8211; to be fair &#8211; Simon Detheridge did receive a bit of a grilling and did well in answering. But again, what he said only confirmed what I felt. Being asked to give a ballpark figure of licensing for the use of symbols on a site such as Curry&#8217;s for example &#8211; the answer was around £2500 (to be paid by the website owner). The browser the company developed to interpret exisiting websites and translate them into symbols would cost the user a yearly licensing fee of £60 (to be paid by the user).</p>
<p>I think these prices are an absolute outrage &#8211; profiting from disability is simply wrong. Full stop.<br />
No reason can be given which makes this right. One line sticks in my head &#8220;it is not like we are taking people&#8217;s language away&#8221; (quoted from memory, Simon Detheridge, widgit).  &#8211; sorry, that is exactly what you are doing! By charging for the use of what you call &#8216;standardised symbols&#8217;. How can you claim property of something that so many people rely on?</p>
<p>The development of the symbols will have taken a lot of research, work and time &#8211; no doubt. And I am by no means saying that the people involved do not deserve their money, of course they do. There are however other ways of bringing in money and still do right by the target group of disabled people. Open Source &#8211; charity with funding bodies &#8211; anything&#8230;.<br />
I could go on with my rant here but I will leave it at that&#8230;. enough for 1 day ;-)</p>
<p>UPDATE: here&#8217;s a quick video collage of the panel which the INMD team put up on YouTube. </p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/RXPbgRfX9MY&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/RXPbgRfX9MY&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://graphiceyedea.co.uk/wp/inmd-workshop-last-day/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>transcending CSS with Andy</title>
		<link>http://graphiceyedea.co.uk/wp/transcending-css-with-andy/</link>
		<comments>http://graphiceyedea.co.uk/wp/transcending-css-with-andy/#comments</comments>
		<pubDate>Thu, 15 May 2008 22:55:42 +0000</pubDate>
		<dc:creator>prisca</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://graphiceyedea.co.uk/wp/?p=325</guid>
		<description><![CDATA[yesterday I had the pleasure of meeting Andy Clarke and attend his workshop "Transcending CSS: Styling For A Beautiful Web". It was a great day with quite a few 'lightbulb moments' for me.]]></description>
			<content:encoded><![CDATA[<p><img class="floatright" title="andy clarke" src="http://graphiceyedea.co.uk/wp/wp-content/uploads/2008/05/andy2.jpg" alt="andy clarke" width="195" height="300" />yesterday I had the pleasure of meeting Andy Clarke and attending his workshop &#8220;Transcending CSS: Styling For A Beautiful Web&#8221;. It was a great day with quite a few &#8216;lightbulb moments&#8217; for me.</p>
<p>It was great to listen to such clear and to-the-point explanations and I finally clicked with relative positioning  ;-) Andy presented a <a href="http://forabeautifulweb.com/ikeepfaith/" target="_blank">beautiful demo site</a> inspired by Billy Bragg and talked about a lot of wonderful techniques. It was inspiring to hear Andy&#8217;s take on the different issues and I was glad to find my own opinions were very much along the same lines&#8230;</p>
<p>Hopefully, if time allows, I will soon try to write a post about some of the things I&#8217;ve learnt. For now &#8211; I can&#8217;t wait to implement a few CSS techniques and start by creating a new and cleaner CSS for this site here :)</p>
<p>THANKS, Andy :)<br />
<span id="more-325"></span><br />
September &#8217;08 UPDATE:<br />
Andy has now put together his own and brand new site for his workshops. Titled &#8216;for a beautiful web&#8217; &#8211; the site is very different in visual style and shows off some of the new techniques &#8211; you should have a look (viewed in Safari the site will show off its best side ;)<br />
<a href="http://forabeautifulweb.com/" target="_blank">&rarr; forabeautifulweb.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://graphiceyedea.co.uk/wp/transcending-css-with-andy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PingPong game for ID players</title>
		<link>http://graphiceyedea.co.uk/wp/pingpong-game-for-id-players/</link>
		<comments>http://graphiceyedea.co.uk/wp/pingpong-game-for-id-players/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 18:56:34 +0000</pubDate>
		<dc:creator>prisca</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://graphiceyedea.co.uk/wp/?p=328</guid>
		<description><![CDATA[[part of the INMD project] PROJECT PAGE: PingPong game for ID players OUTLINE: This game is intended for the ID group with the most severe intellectual disability. It is therefore intended to be played with assistance, at least for the start of the game. It can be played by 1 person alone &#8211; or be played [...]]]></description>
			<content:encoded><![CDATA[<p>[part of the<a href="http://www.inclusivenewmedia.org/" target="_blank"> INMD </a>project]<br />
PROJECT PAGE: <a href="http://dev.eyedea.eu/inmd" target="_blank">PingPong game for ID players</a></p>
<p><img class="alignnone size-full wp-image-329" title="pingpong" src="http://graphiceyedea.co.uk/wp/wp-content/uploads/2008/05/pingpong.gif" alt="" width="500" height="114" /><br />
OUTLINE: This game is intended for the ID group with the most severe intellectual disability.<br />
It is therefore intended to be played with assistance, at least for the start of the game. It can be played by 1 person alone &#8211; or be played as a 2 player game, each player taking charge of 1 side of the game (left/right black bar and their corresponding half of the screen/projection). <span id="more-328"></span></p>
<p>Though this project started off as a group project &#8211; both Anuschka and Darren ended up not working with me on this. The plan had been to set up our game in 2 versions: 1 in Flash, 1 in Javascript. I was happy to do the flash work (and was lucky to get help from <a href="http://www.cognable.com/" target="_blank">Simon</a>) &#8211; and Darren was hoping to find time to set up the same in Javascript. In the end however &#8211; only the flash version was done and ready for testing&#8230;</p>
<p>The 2 days of User Testing organised by the INMD team together with the <a href="http://www.rixcentre.org" target="_blank">RIX centre</a> were very interesting and fun :) It was great to meet our user group and we were lucky to be introduced to a great team of support workers and such a nice group of people in our testers :)</p>
<p>Day 1 turned out to be a bit of a disaster for me and my game&#8230; Though Simon had helped me to get the 3 levels setup and working &#8211; a missed flight meant he was not around on the day to help with the switch setups (which I was not familiar with). This then meant that I was stuck with an almost non-functioning game. I ended up having to use my own versions &#8211; which were split level and very plain. Though my users seemed to like the idea of the game &#8211; it was way too short to be engaging enough &#8211; and I felt bad wasting their time. The short duration of the game however did give me opportunity to ask a lot of questions and find out what additional elements might be good to implement. Initially I was unsure how to proceed (being very disappointed and thrown by the fact my planned test game was not working) but Rasime Singh from the RIX team was there to support me and we ended up having some nice chats with the user group :) &#8211; THANKS, Ras :)</p>
<p>At the end of the day I was determined to have a better session the following day &#8211; and show our testers that their ideas and suggestions were taken onboard. I took their ideas of additional colours and imagery (the requested rainbow specifically) and worked on editing the game further. After a long night I was happy to be able to show a much more complete and fun game the next day.</p>
<p>Day 2 of the User Testing then was a blast :) It was fantastic to see the happy faces of my users when they played the game. The changes I made the night before seemed to make all the difference; Simon was there to help me set up the switches and it all went very smoothly. We had a lot of fun &#8211; and it was nice to see the different reactions. Some were happy to merely play very calmy and enjoy the colours and sounds. Others, especially the boys, were getting quite competitive and were keen to out-do each other. I was happy to see that my ending with applause and fireworks did bring a smile to the players&#8217; faces :)</p>
<p>I am hoping to finalise the game for our last workshop day and to donate the game fully working to the RIX centre.</p>
<p>Here is a clip of a few of us giving our impression of the workshop and our experience with the user testing :</p>
<p><object width="425" height="344" data="http://www.youtube.com/v/8bSqXFx0wKc&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/8bSqXFx0wKc&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://graphiceyedea.co.uk/wp/pingpong-game-for-id-players/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>INMD workshop &#8211; day 2</title>
		<link>http://graphiceyedea.co.uk/wp/inmd-workshop-day-2/</link>
		<comments>http://graphiceyedea.co.uk/wp/inmd-workshop-day-2/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 20:10:36 +0000</pubDate>
		<dc:creator>prisca</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://www.graphiceyedea.co.uk/wp/?p=241</guid>
		<description><![CDATA[Today was the day #2 of the Inclusive New Media Design workshops &#8211; and it was a very interesting day as I learnt about people with ID (Intellectual Disablility) and their perspective on every day life as well as their use of the internet. I&#8217;m hoping there will be some reference material going up on [...]]]></description>
			<content:encoded><![CDATA[<p>Today was the day #2 of the<a href="http://www.inclusivenewmedia.org/home.xhtml" target="_blank"> Inclusive New Media Design </a>workshops &#8211; and it was a very interesting day as I learnt about people with ID (Intellectual Disablility) and their perspective on every day life as well as their use of the internet. I&#8217;m hoping there will be some reference material going up on the <a href="http://www.inclusivenewmedia.org" target="_blank">INMD</a> site over the next few days which will be good to read.<br />
<span id="more-241"></span></p>
<p>I was quite shocked at the poor standard of code and overall design for the example sites we looked at. These sites are designed specifically for people with ID and I somehow naively expected both their code and their visual design to be much more up to the modern standard. The code is very poor on most, the information often lacks / or neglects/ good structure, navigation is often confusing and odd &#8230; &#8211; I cannot understand why so little care is taken in producing these sites&#8230; :&#8221;(</p>
<p>Hopefully the links we looked at will soon be available on the <a href="http://www.inclusivenewmedia.org" target="_blank">INMD</a> site &#8211; but for now, the ones I can remember (coincidentally these are the better ones out of the list of sites we looked at):</p>
<ul>
<li><a href="http://www.mencap.com/" target="_blank">MENCAP</a></li>
<li><a href="http://www.learningdisabilitycoalition.org.uk/" target="_blank">learning Disability Coalition</a></li>
<li><a href="http://www.peepo.com/" target="_blank">peepo</a></li>
</ul>
<p>We also looked at the symbols and aids available for web designer to use to make a site accessible to people with ID &#8211; I was again educated &#8211; shocked to find out that these symbols and and helper application are priced so highly while remaining insufficient and at best merely adequate. Just a few related links for reference for now (again, hoping the <a href="http://www.inclusivenewmedia.org" target="_blank">INMD</a> site will become a more complete reference):</p>
<ul>
<li><a href="http://www.browsealoud.com" target="_blank">BroweAloud</a> &#8211; a screen reader, similar to <a href="http://www.freedomscientific.com/fs_products/software_jaws.asp" target="_blank">JAWS</a></li>
<li><a href="http://www.symbolworld.org/" target="_blank">Symbol World</a> &#8211; makers of one of the symbol sets used</li>
<li><a href="http://www.reactivecolours.org/" target="_blank">Reactive Colours</a> &#8211; a project to explore a positive computer environment for people with severe ID</li>
</ul>
<p>That&#8217;s all for today &#8211; got to get back to things&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://graphiceyedea.co.uk/wp/inmd-workshop-day-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>INMD workshop &#8211; day 1</title>
		<link>http://graphiceyedea.co.uk/wp/inmd-workshop-day-1/</link>
		<comments>http://graphiceyedea.co.uk/wp/inmd-workshop-day-1/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 22:34:07 +0000</pubDate>
		<dc:creator>prisca</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://www.graphiceyedea.co.uk/wp/?p=240</guid>
		<description><![CDATA[Today was the first day of the Inclusive New Media Design workshops &#8211; to quote the site: Inclusive New Media Design is a research project which aims to identify the best ways to encourage web designers and developers to build websites accessible to people with intellectual disabilities. just summing up a few points which should [...]]]></description>
			<content:encoded><![CDATA[<p>Today was the first day of the<a href="http://www.inclusivenewmedia.org/home.xhtml" target="_blank"> Inclusive New Media Design </a>workshops &#8211; to quote the site:</p>
<blockquote><p>Inclusive New Media Design is a research project which aims to identify the best ways to encourage web designers and developers to build websites accessible to people with intellectual disabilities.</p></blockquote>
<p>just summing up a few points which should by now be standard practice (WCAG 1.0 discussion points from <a href="http://www.cognable.com" target="_blank">Simon Evans</a>):<br />
<span id="more-240"></span></p>
<ul>
<li>do not use tables for layout &#8211; or forms (will not linearise well)<br />
tables if used at all &#8211; should lineraise well, ie strippped of any formatting via CSS for example &#8211; the table should still make sense</li>
<li>create content that can be presented in different ways,<br />
eg information, structure and relationships conveyed through presentation can be programatically determined and available through text</li>
<li>present page content in a meaningful sequence<br />
whenthe sequence in which the content is presented affects its meaning &#8211; a correct reading sequence can be programatically determined</li>
<li>marking up forms for accessibility
<ol>
<li>fieldset (grouping of form fields)</li>
<li>legend (title for a group of form fields)</li>
<li>label (title for a specific form input field)</li>
</ol>
<p>one approach to forms (by <a href="http://darrenwest.com" target="_blank">Darren West</a>):<br />
using unordered lists for list of options such as gender and status input fields &#8211; the layout will degrade gracefully and maintain a meaningful and visually decent layout</li>
</ul>
<p>a few useful links:</p>
<ul>
<li><a href="http://www.w3.org/TR/WCAG20/" target="_blank">WCAG 2</a></li>
<li><a href="http://www.w3.org/Mobile/" target="_blank">W3C Mobile Web</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://graphiceyedea.co.uk/wp/inmd-workshop-day-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>workshop with the master ;)</title>
		<link>http://graphiceyedea.co.uk/wp/workshop-with-the-master/</link>
		<comments>http://graphiceyedea.co.uk/wp/workshop-with-the-master/#comments</comments>
		<pubDate>Fri, 20 Jul 2007 21:46:42 +0000</pubDate>
		<dc:creator>prisca</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://www.graphiceyedea.co.uk/wp/?p=208</guid>
		<description><![CDATA[Eric is back in town ;) If you can spare the money and the time &#8211; this is a workshop you should not miss ;) This time around I am sadly not able to take part :&#8221;( &#8211; but I can tell you from attending last december that this is just a fantastic opportunity :) [...]]]></description>
			<content:encoded><![CDATA[<p><a title="read Eric's blog post" href="http://meyerweb.com/eric/thoughts/2007/07/19/london-workshop" target="_blank"><img class="floatright relative" src="http://www.graphiceyedea.co.uk/wp/wp-content/uploads/2007/08/eric.jpg" alt="eric meyer" /></a><a title="read Eric's blog post" href="http://meyerweb.com/eric/thoughts/2007/07/19/london-workshop" target="_blank">Eric is back in town ;)</a></p>
<p>If you can spare the money and the time &#8211; this is a workshop you should not miss ;) This time around I am sadly not able to take part :&#8221;(   &#8211; but I can tell you from attending last december that this is just a fantastic opportunity :) There&#8217;s nothing like hearing the master discussing CSS techniques and best of all being able to ask questions.</p>
<p>You probably know Eric through his books, articles and his blog &#8211; but it&#8217;s just nice to meet such an expert in person. He&#8217;s not only an inspiring speaker but also a really nice funny guy :) You&#8217;ll have a great time and learn a lot!</p>
<p>The price tag is quite steep and if you&#8217;re lucky enough to work somewhere you might be able to convince your boss to fork out the fee. If you are &#8211; like me &#8211;  a freelancer &#8211; it might be a bit steep. But I still found it worth every penny :)<br />
<a title="carson workshops - Eric Meyer" href="http://www.carsonworkshops.com/design-dev/meyer/13-14AUG2007.html" target="_blank">→ carson workshops / eric meyer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://graphiceyedea.co.uk/wp/workshop-with-the-master/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
