<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><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:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Gareth Jones</title>
	
	<link>http://blog.garethj.com</link>
	<description />
	<pubDate>Fri, 26 Sep 2008 12:57:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/garethj" type="application/rss+xml" /><item>
		<title>Big Blue goes green</title>
		<link>http://feeds.feedburner.com/~r/garethj/~3/403751611/</link>
		<comments>http://blog.garethj.com/2008/09/26/big-blue-goes-green/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 12:57:25 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
		
		<category><![CDATA[making me smile]]></category>

		<category><![CDATA[award]]></category>

		<category><![CDATA[environment]]></category>

		<category><![CDATA[green]]></category>

		<category><![CDATA[recycled]]></category>

		<category><![CDATA[sustainable]]></category>

		<category><![CDATA[thanks]]></category>

		<guid isPermaLink="false">http://blog.garethj.com/?p=109</guid>
		<description><![CDATA[I received an IBM Thanks! award recently from Darren for helping out with the Feel Good Inc. Extreme Blue project. One of the choices was a &#8216;Recycled Office Pack&#8217; which sounded interesting and so I thought I&#8217;d go for that:

All items say things like &#8216;made from recycled paper and card&#8217;, &#8216;using sustainable timber&#8217; etc.
]]></description>
			<content:encoded><![CDATA[<p>I received an IBM Thanks! award recently from <a href="http://pointawayfromface.com/">Darren</a> for helping out with the <a href="http://blog.feelgoodinc.eu/">Feel Good Inc.</a> Extreme Blue <a href="http://services.alphaworks.ibm.com/groupvis/">project</a>. One of the choices was a &#8216;Recycled Office Pack&#8217; which sounded interesting and so I thought I&#8217;d go for that:<br />
<a href="http://www.flickr.com/photos/gjones/2889174391/" title="IBM Recycled Office Pack by gjones, on Flickr"><img src="http://farm4.static.flickr.com/3122/2889174391_d3a019e960.jpg" width="500" height="375" alt="IBM Recycled Office Pack" /></a><br />
All items say things like &#8216;made from recycled paper and card&#8217;, &#8216;using sustainable timber&#8217; etc.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/garethj?a=eGkMHn.p"><img src="http://feeds.feedburner.com/~f/garethj?i=eGkMHn.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=xcYMML.p"><img src="http://feeds.feedburner.com/~f/garethj?i=xcYMML.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=1VitnJ.P"><img src="http://feeds.feedburner.com/~f/garethj?i=1VitnJ.P" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garethj/~4/403751611" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.garethj.com/2008/09/26/big-blue-goes-green/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.garethj.com/2008/09/26/big-blue-goes-green/</feedburner:origLink></item>
		<item>
		<title>Going green… slightly</title>
		<link>http://feeds.feedburner.com/~r/garethj/~3/382447303/</link>
		<comments>http://blog.garethj.com/2008/09/03/going-green-slightly/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 16:04:01 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
		
		<category><![CDATA[techy solutions]]></category>

		<guid isPermaLink="false">http://blog.garethj.com/?p=60</guid>
		<description><![CDATA[A simple thing but one that made me feel quite virtuous. I&#8217;ve written a very very simple script that turns off the screen whenever I lock the computer. Should save some energy every time I go to a meeting or off for a cuppa.
For anyone interested, it&#8217;s a Perl script which watches for the D-Bus [...]]]></description>
			<content:encoded><![CDATA[<p>A simple thing but one that made me feel quite virtuous. I&#8217;ve written a very very simple script that turns off the screen whenever I lock the computer. Should save some energy every time I go to a meeting or off for a cuppa.</p>
<p>For anyone interested, it&#8217;s a Perl script which watches for the D-Bus signals from gnome-screensaver. Code is as follows:<br />
<code><br />
my $cmd = "dbus-monitor --session \"type='signal',interface='org.gnome.ScreenSaver',member='SessionIdleChanged'\"";<br />
open (IN, "$cmd |");<br />
while (<IN>) {<br />
&nbsp;&nbsp;if (m/^\s+boolean true/) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;system(&#8217;/etc/acpi/screenblank.sh&#8217;)<br />
&nbsp;&nbsp;}<br />
}<br />
</code></p>
<p>Note that it relies you running Linux, using GNOME and there being a screen blanking script &#8216;<code>/etc/acpi/screenblank.sh</code>&#8216; (which in turn executes &#8216;<code>/usr/share/acpi-support/screenblank</code>&#8216; for every display). Not too much to ask I&#8217;m sure <img src='http://blog.garethj.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/garethj?a=FNxt8q.p"><img src="http://feeds.feedburner.com/~f/garethj?i=FNxt8q.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=drrf7w.p"><img src="http://feeds.feedburner.com/~f/garethj?i=drrf7w.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=GZCSdk.P"><img src="http://feeds.feedburner.com/~f/garethj?i=GZCSdk.P" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garethj/~4/382447303" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.garethj.com/2008/09/03/going-green-slightly/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.garethj.com/2008/09/03/going-green-slightly/</feedburner:origLink></item>
		<item>
		<title>Paying off that mortgage</title>
		<link>http://feeds.feedburner.com/~r/garethj/~3/344823231/</link>
		<comments>http://blog.garethj.com/2008/07/24/paying-off-that-mortgage/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 17:40:32 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
		
		<category><![CDATA[anything else]]></category>

		<category><![CDATA[oneaccount banking mortgage]]></category>

		<guid isPermaLink="false">http://blog.garethj.com/?p=58</guid>
		<description><![CDATA[Just a warning: I&#8217;m now going into sales-pitch mode. I do not work for the One Account but I think it&#8217;s brilliant (well, brilliant for me, I take no responsibility if you listen to me and end up huge great hole of debt). Having said that, I could get some money if you sign up [...]]]></description>
			<content:encoded><![CDATA[<p>Just a warning: I&#8217;m now going into sales-pitch mode. I do not work for the <a href="http://www.oneaccount.com/">One Account</a> but I think it&#8217;s brilliant (well, brilliant for me, I take no responsibility if you listen to me and end up huge great hole of debt). Having said that, I could get some money if you sign up and say I recommended you but that&#8217;s not the point of this post. Really it isn&#8217;t. That *would* be nice though&#8230;</p>
<p>The One Account is one of those &#8216;offset everything you own against your mortgage&#8217; type accounts. This means that you merge your mortgage, savings and current accounts in a single pot so any money you have is constantly offset against your mortgage. This means the actual amount of money you&#8217;re borrowing at any one time is less that it otherwise would be and hence you pay less in interest. Ok&#8230; sounds interesting but what does that actually mean? Well, it gives you a variety of options but the most important one for me is that you can pay of your mortgage in a much shorter time period.</p>
<p>We signed up for the One Account at the beginning of this year and set the ambitious aim of paying our (not insignificant) mortgage off in 4 years instead of the usual 20-25. What?! 4 years? Are you freakin&#8217; crazy I hear you say? [Well you might not be saying that but it makes this post far more interesting for me if I imagine you are so I'll pretend.] We didn&#8217;t pluck the 4 year figure out of thin air; the One Account website has a handy <a href="http://http://www.oneaccount.com/onev3/calculator/index.html">Mortgage Shrinker</a> you can use as a guide. The following graph gives you an idea how this works:</p>
<p><a href='http://blog.garethj.com/wp-content/uploads/2008/07/oneaccount.png'><img src="http://blog.garethj.com/wp-content/uploads/2008/07/oneaccount.png" alt="" title="One Account example graph" width="500" height="250" class="aligncenter size-full wp-image-59" /></a></p>
<p>As you can see, salary comes in every now and then which reduces how me we owe to the bank and then this amount slowly increases as we spend money before the next salary payment. More importantly, the amount it increases to each time is lower than the previous amount, i.e. the mortgage is getting smaller.</p>
<p>So half a year in, how&#8217;s it looking? Pretty darn good actually. Amazingly, that ability to offset your salary payments against your mortgage until you spend them, plus the ability to effectively pay off bits of your mortgage constantly has left us in pretty good shape. We are entirely on track to pay the thing off in 4 years, if not sooner.</p>
<p>P.S. Worth noting that just because you can pay off loads of your mortgage quickly, doesn&#8217;t mean you can&#8217;t spend it too. Effectively you could end up only having paid off interest after 20 years and no capital, or pay off £20k and then blow it on a new car or something. Only a good idea if you have some self-control over your finances!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/garethj?a=VP3HqA.p"><img src="http://feeds.feedburner.com/~f/garethj?i=VP3HqA.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=wDPIwP.p"><img src="http://feeds.feedburner.com/~f/garethj?i=wDPIwP.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=Myy8eT.P"><img src="http://feeds.feedburner.com/~f/garethj?i=Myy8eT.P" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garethj/~4/344823231" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.garethj.com/2008/07/24/paying-off-that-mortgage/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.garethj.com/2008/07/24/paying-off-that-mortgage/</feedburner:origLink></item>
		<item>
		<title>Things to do in Toronto</title>
		<link>http://feeds.feedburner.com/~r/garethj/~3/338390595/</link>
		<comments>http://blog.garethj.com/2008/07/17/things-to-do-in-toronto/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 21:04:57 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
		
		<category><![CDATA[out and about]]></category>

		<category><![CDATA[holiday]]></category>

		<category><![CDATA[recommendations]]></category>

		<category><![CDATA[toronto]]></category>

		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://blog.garethj.com/?p=55</guid>
		<description><![CDATA[I went on a brief trip to Toronto a few weeks ago and a friend of mine asked for recommendations on things to do. Here are mine - please make add any comments/suggestions 

Things to do

CN Tower: tallest building in the world and some fantastic views, try and go when it&#8217;s quiet though as there&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>I went on a brief trip to Toronto a few weeks ago and a friend of mine asked for recommendations on things to do. Here are mine - please make add any comments/suggestions <img src='http://blog.garethj.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://www.flickr.com/photos/gjones/2610261550/" title="Well done Canada! by gjones, on Flickr"><img src="http://farm3.static.flickr.com/2320/2610261550_5bf1f9f4ca_m.jpg" width="240" height="180" alt="Well done Canada!" class='alignright' /></a><br />
<strong>Things to do</strong></p>
<ul>
<li><a href="http://www.cntower.ca/">CN Tower</a>: tallest building in the world and some fantastic views, try and go when it&#8217;s quiet though as there&#8217;s not much space to move around</li>
<li><a href="http://www.torontoeatoncentre.com/">Toronto Eaton Centre</a>: a large shopping mall that feels quite impressive and plenty of shops to wander round</li>
<li><a href="http://www.stlawrencemarket.com/">St. Lawrence Market</a>: a really fun and interesting market with all kinds of food</li>
</ul>
<p><strong>Bars/restaurants</strong></p>
<ul>
<li><a href="http://www.jackastors.com/">Jack Astor&#8217;s</a> on <a href="http://www.torontolifesquare.com/">Toronto Life Square</a>: a chain bar but pretty cool and this one has some great skyline views</li>
<li><a href="http://arrabiata-trattoria.com/">Arrabiata</a>: a fantastic Italian restaurant on Yonge street with great staff, food and atmosphere</li>
<li><a href="http://www.eggspectation.ca/">Eggspectations</a>: a fun place with an egg-related theme, very good for brekky <img src='http://blog.garethj.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li><a href="http://www.springrolls.ca/">Spring Rolls</a>: a chic Thai restaurant right by <a href="http://www.stlawrencemarket.com/">St Lawrence Market</a> with some amazing food and not too pricey</li>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/garethj?a=IiZMnM.p"><img src="http://feeds.feedburner.com/~f/garethj?i=IiZMnM.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=LXuhTY.p"><img src="http://feeds.feedburner.com/~f/garethj?i=LXuhTY.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=DeNAMQ.P"><img src="http://feeds.feedburner.com/~f/garethj?i=DeNAMQ.P" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garethj/~4/338390595" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.garethj.com/2008/07/17/things-to-do-in-toronto/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.garethj.com/2008/07/17/things-to-do-in-toronto/</feedburner:origLink></item>
		<item>
		<title>Dojo checkboxes</title>
		<link>http://feeds.feedburner.com/~r/garethj/~3/325602794/</link>
		<comments>http://blog.garethj.com/2008/07/03/dojo-checkboxes/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 08:17:28 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
		
		<category><![CDATA[techy solutions]]></category>

		<category><![CDATA[checkbox]]></category>

		<category><![CDATA[dojo]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.garethj.com/?p=54</guid>
		<description><![CDATA[I recently hit this snag when working with Dojo. Basically I wanted to set the checked status of a checkbox on a webpage programmatically. Simple you might think? Apparently not as easy as it should be.
Interaction with checkboxes has changed slightly in Dojo 1.1 (apparently) but myCheckbox.setValue(true) should be valid. When calling dojo.byId('my-checkbox-id').setValue(true), I was [...]]]></description>
			<content:encoded><![CDATA[<p>I recently hit this snag when working with <a href="http://dojotoolkit.org/">Dojo</a>. Basically I wanted to set the checked status of a checkbox on a webpage programmatically. Simple you might think? Apparently not as easy as it should be.</p>
<p>Interaction with checkboxes has changed slightly in Dojo 1.1 (<a href="http://dojotoolkit.org/book/dojo-1-1-release-notes">apparently</a>) but <code>myCheckbox.setValue(true)</code> should be valid. When calling <code>dojo.byId('my-checkbox-id').setValue(true)</code>, I was getting an error saying the method didn&#8217;t exist. The object was definitely the checkbox as I could determine the correct checked state from that object (<code>myCheckbox.checked</code>) so I was very confused. I then remembered another way to access objects with Dojo is using the HTML attribute &#8216;<code>jsId</code>&#8216;. This creates a global javascript variable referring to that object in the DOM. So I set something like <code>jsId='myCheckbox'</code> and then called <code>myCheckbox.setValue(true)</code> and it worked!</p>
<p>Very odd behaviour. I can only guess that the javascript object created by Dojo using <code>jsId</code> and <code>dojo.byId()</code> is a different bit of code and creates an object pointing to the DOM checkbox object in a different way. Very strange but at least there&#8217;s the workaround above&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/garethj?a=SBBom8.p"><img src="http://feeds.feedburner.com/~f/garethj?i=SBBom8.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=k2f0B5.p"><img src="http://feeds.feedburner.com/~f/garethj?i=k2f0B5.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=fKuquc.P"><img src="http://feeds.feedburner.com/~f/garethj?i=fKuquc.P" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garethj/~4/325602794" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.garethj.com/2008/07/03/dojo-checkboxes/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.garethj.com/2008/07/03/dojo-checkboxes/</feedburner:origLink></item>
		<item>
		<title>Me - a professional BSL interpreter?</title>
		<link>http://feeds.feedburner.com/~r/garethj/~3/325062663/</link>
		<comments>http://blog.garethj.com/2008/07/02/me-a-professional-bsl-interpreter/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 17:33:21 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
		
		<category><![CDATA[all about me]]></category>

		<category><![CDATA[sign language]]></category>

		<category><![CDATA[ben]]></category>

		<category><![CDATA[bsl]]></category>

		<category><![CDATA[interpreter]]></category>

		<category><![CDATA[language]]></category>

		<category><![CDATA[sign]]></category>

		<guid isPermaLink="false">http://blog.garethj.com/?p=53</guid>
		<description><![CDATA[Ok, so that&#8217;s definitely not true but I try. Although he often has interpreters coming into the office, I regularly act as a backup interpreter for Ben for small meetings etc. The other day however, his interpreter had an accident and Ben was supposed to be giving a talk in the auditorium at Hursley where [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so that&#8217;s definitely not true but I try. Although he often has interpreters coming into the office, I regularly act as a backup interpreter for <a href="http://benfletcher.wordpress.com/">Ben</a> for small meetings etc. The other day however, his interpreter had an accident and Ben was supposed to be giving a talk in the auditorium at Hursley where we work. Can you guess what happened next? <img src='http://blog.garethj.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So I stood up to the challenge and tried to interpret Ben&#8217;s talk to the audience. It was a very strange experience as I&#8217;d never really interpreted from BSL to English apart from in small groups, or even seen it done very often - most interpreters I see are from English to BSL for Ben&#8217;s benefit. I wasn&#8217;t sure how well it went as knew I didn&#8217;t manage to get everything across, my language was quite simple compared to what Ben was trying to articulate, and I did swap from the 1st person (the correct method where I pretend to be Ben) to the 3rd a couple of times. However, a few people (including <a href="http://twitter.com/bjfletcher/statuses/844021696">Ben himself</a>) were extremely generous with their praise which was fantastic to hear (e.g. <a href="http://twitter.com/andypiper/statuses/844001274">here</a>, <a href="http://twitter.com/rooreynolds/statuses/844003770">here</a>, <a href="http://twitter.com/andysc/statuses/844000597">here</a> and <a href="http://twitter.com/lauracowen/statuses/843994835">here</a>).</p>
<p>Following that talk I was full of confidence and so then happily interpreted for Ben at the next one (someone else on stage, English to BSL). Definitely got a rush that day, very exciting. Maybe I&#8217;ll do more of this in the future&#8230;</p>
<p>P.S. I know I&#8217;ve done more signed versions of BSL-related posts in the past but I&#8217;m finding it quite hard to find the time to do it. Writing is much quicker for me and to then translate I need to get a camera, work out what I want so sign, how to translate etc. Maybe it would be better to start with a BSL version and translate that to English instead. I&#8217;ll have a think about it and see what I can do.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/garethj?a=mPQnBY.p"><img src="http://feeds.feedburner.com/~f/garethj?i=mPQnBY.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=k8hkEY.p"><img src="http://feeds.feedburner.com/~f/garethj?i=k8hkEY.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=PXosmc.P"><img src="http://feeds.feedburner.com/~f/garethj?i=PXosmc.P" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garethj/~4/325062663" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.garethj.com/2008/07/02/me-a-professional-bsl-interpreter/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.garethj.com/2008/07/02/me-a-professional-bsl-interpreter/</feedburner:origLink></item>
		<item>
		<title>Some interesting deaf-related things online</title>
		<link>http://feeds.feedburner.com/~r/garethj/~3/324935508/</link>
		<comments>http://blog.garethj.com/2008/07/02/some-interesting-deaf-related-things-online/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 14:33:32 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
		
		<category><![CDATA[sign language]]></category>

		<category><![CDATA[some recommendations]]></category>

		<category><![CDATA[bsl]]></category>

		<category><![CDATA[deaf]]></category>

		<category><![CDATA[language]]></category>

		<category><![CDATA[links]]></category>

		<category><![CDATA[resources]]></category>

		<category><![CDATA[sign]]></category>

		<guid isPermaLink="false">http://blog.garethj.com/?p=52</guid>
		<description><![CDATA[My BSL Level 3 class has now finished temporarily for the summer and I figured it would be a good idea to let them know the interesting deaf-related blogs etc that I keep an eye on. So here we have a very brief but hopefully useful and interesting compilation of things I know about:
Blogs

Benfletcher&#8217;s Weblog [...]]]></description>
			<content:encoded><![CDATA[<p>My BSL Level 3 class has now finished temporarily for the summer and I figured it would be a good idea to let them know the interesting deaf-related blogs etc that I keep an eye on. So here we have a very brief but hopefully useful and interesting compilation of things I know about:</p>
<p><strong>Blogs</strong></p>
<ul>
<li><a href="http://benfletcher.wordpress.com/">Benfletcher&#8217;s Weblog</a> (from my good friend Ben)</li>
<li><a href="http://bsljeff.wordpress.com/">Bsl Jeff&#8217;s Vlog</a></li>
<li><a href="http://gwallgofi.com/">gwallgofi</a></li>
<li><a href="http://www.alisonbryan.com/thoughts/">Noesis</a></li>
<li><a href="http://www.grumpyoldeafies.com/">Grumpy Old Deafies</a></li>
<li><a href="http://blog.garethj.com/tag/bsl/">This site</a> (anything tagged &#8216;bsl&#8217; that I put up here)</li>
</ul>
<p><strong>Online dictionaries</strong> (there&#8217;s many more but here&#8217;s a couple)</p>
<ul>
<li><a href="http://mobilesign.org/">Mobilesign</a></li>
<li><a href="http://www.slcresources4ict.net/">ICT Dictionary</a> (a list of some common technical BSL signs)</li>
</ul>
<p><strong>Other resources</strong></p>
<ul>
<li><a href="http://del.icio.us/garethjones/bsl">My bookmarks tagged &#8216;bsl&#8217;</a> (should have everything here already and will be updated as and when I find anything interesting)</li>
<li>Some <a href="http://www.rod-parrott.pwp.blueyonder.co.uk/bsl_images/multi_channel/multichannel.html">multi channel signs</a></li>
<li><a href="http://bda.org.uk/">BDA Sign Community</a></li>
<li><a href="http://www.deafpulse.com/">DeafPulse.com</a></li>
</ul>
<p>For the non-technical amongst you it&#8217;s worth pointing out that all these blogs (and some of the other sites) have <a href="http://en.wikipedia.org/wiki/Web_feed">feeds</a> that can be subscribed to so you are notified of new posts. Worth checking out rather than regularly going to each and every page looking for updates. <a href="http://google.com/reader">Google Reader</a> is a fairly good aggregator to use for this purpose - check out <a href="http://www.commoncraft.com/rss_plain_english">this video</a> for a really good simple explanation of it all.</p>
<p>If anyone has any more recommendations, please add them as comments below or let me know some other way.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/garethj?a=L7azTL.p"><img src="http://feeds.feedburner.com/~f/garethj?i=L7azTL.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=P925rC.p"><img src="http://feeds.feedburner.com/~f/garethj?i=P925rC.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=4L8esK.P"><img src="http://feeds.feedburner.com/~f/garethj?i=4L8esK.P" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garethj/~4/324935508" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.garethj.com/2008/07/02/some-interesting-deaf-related-things-online/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.garethj.com/2008/07/02/some-interesting-deaf-related-things-online/</feedburner:origLink></item>
		<item>
		<title>Links for 2008-06-09 (kind of)</title>
		<link>http://feeds.feedburner.com/~r/garethj/~3/308165624/</link>
		<comments>http://blog.garethj.com/2008/06/09/links-for-2008-06-09-kind-of/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 17:20:47 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
		
		<category><![CDATA[some recommendations]]></category>

		<guid isPermaLink="false">http://blog.garethj.com/?p=50</guid>
		<description><![CDATA[Del.icio.us seems to have not wanted to publish my recent bookmarks for some reason so here&#8217;s manual (boo!) list of things that might be of interest:


    YouTube - SIGNING FOR DEAF (WITH TRANSLATION FOR DUMB)
    A video on YouTube providing a different audio feed for BBC News 24 based [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://del.icio.us/garethjones">Del.icio.us</a> seems to have not wanted to publish my recent bookmarks for some reason so here&#8217;s manual (boo!) list of things that might be of interest:</p>
<ul>
<li>
    <a href="http://www.youtube.com/watch?v=Zvul3DC4l4E">YouTube - SIGNING FOR DEAF (WITH TRANSLATION FOR DUMB)</a><br />
    A video on YouTube providing a different audio feed for BBC News 24 based on the BSL signer in the corner. Very funny but probably not politically correct <img src='http://blog.garethj.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
  </li>
<li>
    <a href="http://mobilesign.org/">MobileSign</a><br />
    A BSL dictionary site aimed for mobile devices but with quite a good collection of signs.
  </li>
<li>
    <a href="http://www.morguefile.com/">morgueFile</a><br />
    A great resource for free photos (commercial use allowed). Handy for presentations.
  </li>
<li>
    <a href="http://bkkeepr.com/">bkkeepr | Track your reading and bookmark on the go</a><br />
    Publish and keep track of the books you&#8217;re reading via twitter using ISBN numbers
  </li>
<li>
    <a href="http://tombuntu.com/index.php/2008/06/03/canonical-announces-the-ubuntu-netbook-remix/">Canonical Announces the Ubuntu Netbook Remix</a><br />
    A version of Ubuntu designed for small computers such as the Asus Eee PC
  </li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/garethj?a=vQCJjb.p"><img src="http://feeds.feedburner.com/~f/garethj?i=vQCJjb.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=nxDahV.p"><img src="http://feeds.feedburner.com/~f/garethj?i=nxDahV.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=E4plKn.P"><img src="http://feeds.feedburner.com/~f/garethj?i=E4plKn.P" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garethj/~4/308165624" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.garethj.com/2008/06/09/links-for-2008-06-09-kind-of/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.garethj.com/2008/06/09/links-for-2008-06-09-kind-of/</feedburner:origLink></item>
		<item>
		<title>links for 2008-05-27</title>
		<link>http://feeds.feedburner.com/~r/garethj/~3/298748807/</link>
		<comments>http://blog.garethj.com/2008/05/27/links-for-2008-05-27/#comments</comments>
		<pubDate>Tue, 27 May 2008 01:32:03 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
		
		<category><![CDATA[some recommendations]]></category>

		<guid isPermaLink="false">http://blog.garethj.com/2008/05/27/links-for-2008-05-27/</guid>
		<description><![CDATA[

BSL multi-channel signs
A collection of BSL multi-channel signs from Redditch Deaf Club
(tags: bsl sign language multi-channel)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.rod-parrott.pwp.blueyonder.co.uk/bsl_images/multi_channel/multichannel.html">BSL multi-channel signs</a></div>
<div class="delicious-extended">A collection of BSL multi-channel signs from Redditch Deaf Club</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/garethjones/bsl">bsl</a> <a href="http://del.icio.us/garethjones/sign">sign</a> <a href="http://del.icio.us/garethjones/language">language</a> <a href="http://del.icio.us/garethjones/multi-channel">multi-channel</a>)</div>
</li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/garethj?a=odXeWk.p"><img src="http://feeds.feedburner.com/~f/garethj?i=odXeWk.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=pX49po.p"><img src="http://feeds.feedburner.com/~f/garethj?i=pX49po.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=4M62FN.P"><img src="http://feeds.feedburner.com/~f/garethj?i=4M62FN.P" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garethj/~4/298748807" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.garethj.com/2008/05/27/links-for-2008-05-27/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.garethj.com/2008/05/27/links-for-2008-05-27/</feedburner:origLink></item>
		<item>
		<title>Garden Hose - A BSL story (/homework!)</title>
		<link>http://feeds.feedburner.com/~r/garethj/~3/298555871/</link>
		<comments>http://blog.garethj.com/2008/05/26/garden-hose-a-bsl-story-homework/#comments</comments>
		<pubDate>Mon, 26 May 2008 18:24:54 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
		
		<category><![CDATA[sign language]]></category>

		<category><![CDATA[bsl]]></category>

		<category><![CDATA[homework]]></category>

		<category><![CDATA[language]]></category>

		<category><![CDATA[sign]]></category>

		<category><![CDATA[story]]></category>

		<guid isPermaLink="false">http://blog.garethj.com/?p=48</guid>
		<description><![CDATA[As we had a half term escape from my sign language course this week, we were given a monster homework. Translate an entire story from English to BSL. Here is my attempt - see if you can work out what the story is about  
 
]]></description>
			<content:encoded><![CDATA[<p>As we had a half term escape from my sign language course this week, we were given a monster homework. Translate an entire story from English to BSL. Here is my attempt - see if you can work out what the story is about <img src='http://blog.garethj.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/9Wc6BdozCi0"></param> <embed src="http://www.youtube.com/v/9Wc6BdozCi0" type="application/x-shockwave-flash" width="425" height="350"></embed></object></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/garethj?a=xSB6KW.p"><img src="http://feeds.feedburner.com/~f/garethj?i=xSB6KW.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=E9smKm.p"><img src="http://feeds.feedburner.com/~f/garethj?i=E9smKm.p" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/garethj?a=J0HGgU.P"><img src="http://feeds.feedburner.com/~f/garethj?i=J0HGgU.P" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garethj/~4/298555871" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.garethj.com/2008/05/26/garden-hose-a-bsl-story-homework/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.garethj.com/2008/05/26/garden-hose-a-bsl-story-homework/</feedburner:origLink></item>
	</channel>
</rss>
