A live video show I directed, co-wrote (and maybe starred in a certain feature) whilst at the University of Sussex in Brighton. We had around 50 viewers, and despite the actor’s understandable nerves, the show was a great success!
Category Archives: Articles
A Project Guide to UX Design
For UX Designers in the Field or in the Making
Just ordered A Project Guide to UX Design from Amazon as it seems to be the second most recommended UX book after Steve Krug’s Don’t Make Me Think! (which if you haven’t read, read.).
IE Detection in 7 Bytes – Javascript
Great bit of javscript code that detects if a browser is Internet Explorer in just 7 bytes:
if(!+"\v1") // true only in IE
(via http://webreflection.blogspot.com/2009/01/32-bytes-to-know-if-your-browser-is-ie.html)
.plist (Property List) File Mime Type
Most plist (property lists) files generated by iOS are just xml, so use the mime type:
application/xml
By default plist files created by Mac OS X use binary with the mime type:
application/x-plist
Dynamically Update Copyright Year with PHP
Here’s a little php code snippet to make sure the copyright year in your site footer is always up to date:
Copyright -
Now this will auto update your page with the current year 😉
