Tech + creative + win
Every now and again, we stumble over ideas that just make us think 'oh snap, wish we'd thought of that...'
<stumble>
Read on for the Vimeo
HTC 1 + lovely
We may love Apple industrial design big-style at Red Green & Blue, but never let it be said that we don't appreciate quality design developed elsewhere. Case in point; Designer Andrew Kim has developed his own concept phone under the HTC brand, that checks pretty much every box we can think of. Quality, simple hardware which doesn't scream me2 iPhone; UI that borrows elements from iOS, Windows Phone Series 7 and, bizarrely, five's stings it seams; and some truly unique ideas that would bring something fresh to the shelf of your local Car Phone Warehouse.
It's all good, and HTC would do well to watch closely; we'll be doing likewise!
Of actionscript and emotion
function random(min:Number, max:Number):Number {
var randomNum:Number = Math.floor(Math.random() * (max - min + 1)) + min;
return randomNum;
}
function Spotify() {
var r:Number = Math.round(random(0,1));
if (r == 1) {
var emotion:String = "likes";
} else {
var emotion:String = "loathes";
}
trace ("decides that today he "+emotion+" Spotify");
}
Spotify();
