Thursday, January 31, 2008
Monday, January 28, 2008
Sunday, January 27, 2008

This time they've taken almost 300 of the most influential and successful websites and pinned them down to the greater Tokyo-area train map.
Labels: Design, Illustration
Friday, January 25, 2008
5 days on the web The Designer's Monarchy has changed domains and name to reformrevolution.com.
Labels: Design
Thursday, January 24, 2008
Wednesday, January 23, 2008
Tuesday, January 22, 2008
Monday, January 21, 2008
Sunday, January 20, 2008
Thursday, January 17, 2008
Wednesday, January 16, 2008
Tuesday, January 15, 2008
Been using this site quite a bit the last couple of days. It lists vector copies of various brands and logos from around the world... hence the name!
Labels: Design

The guys over at North Kingdom do it in style, winning both the FWA's Site of the Year and People's Choice Awards for Get the Glass!
Labels: Design
Monday, January 14, 2008
Sunday, January 13, 2008
Freelancing Resources
As I find myself doing more freelance work, it's helpful to get a bit of advice on dealing with projects, clients and professional procedures. A couple of sites I find myself to returning to are Freelance Switch and Behance.

I came across this about a month ago, unfortunately for me it was the 2007 session so I was about 11 months too late! But Saloman have just launched the 2008 Session of the Salomon Snowboards Artwork Contest.
Labels: Design, Illustration
Thursday, January 10, 2008
Tuesday, January 08, 2008
Most Common Entry in Array
This afternoon I ran into an issue where I was required to work out the most common answer submitted by the user, similar to the kind of what kind of person are you, if you answer mainly As you are... mainly Bs etc, here's the way to work out such scenarios in AS2.
var options:Array = [
{val:1, count:0},
{val:2, count:0},
{val:3, count:0}
];
// Submitted Answers
var answers:Array = [1,2,1,2,3,3,3];
var options:Array = [
{val:1, count:0},
{val:2, count:0},
{val:3, count:0}
];
for (var i:Number = 0; i<answers.length; i++) {
for (var j:Number = 0; j<options.length; j++) {
if (answers[i] == options[j].val) {
options[j].count += 1;
}
}
}
// Returns 3, the most common answer in the array
trace(options[(options.length-1)].val);
Labels: AS2
Monday, January 07, 2008
Sunday, January 06, 2008
Friday, January 04, 2008
Wednesday, January 02, 2008
Available through iStock and suppliers of fine photography, preview at his flickr account.
Labels: Photography







