I'm a web developer and musician living in Bristol, currently working at Conscious Solutions.
This site contains various projects and demos, most of which are in a useable state.

Noughts and crosses, with a basic AI.

An online to-do list - currently only a demo.

A clone of the snake game found on old Nokia phones using Javascript and HTML canvas.

A clone of Pong, using Javascript and HTML canvas.
Now in single player and two-player!
Play noughts and crosses in the browser against a simple AI.
jQuery: Open external links in new tab
Use this snippet to make external links on a page open in a new tab:
$("a[href^='http']").attr('target','_blank');