iPhone 5 Rumor Bingo

Keep the hope alive!

I know, I know! They say it won't happen, but can't a boy dream!

Just in case all the analysts are wrong we present: Apple iPhone 5 Rumor Bingo.

As with the WWDC version, simply click the squares as Steve announces new features and products. Don't like your card, simply refresh the page for a new one.

Play Apple iPhone 5 Rumor Bingo!

iPhone5 Rumor Round-Up

Named iPhone 4S This would go along with rumors of continuation of the current design. The iPhone 4 has seen strong and consistent demand, but my feeling is that a minor bump would open the door for the competition.

Named iPhone 5 I think this the smarter move on Apple's part branding wise as it gives a consumers a clear distinction between the next generation and the last.

A5 Processor This is just a gimme. With the iPad featuring the dual-core A5 processor, and dual-core becoming something of a standard in the current crop of Android phones, this is pretty much a certainty.

8MP Camera While the iPhone 4 camera got strong marks in the image quality department, it lagged on the megapixel scale especially as compared with some Android models.

September Release This seems to be consensus time-frame.

That's it for now. Heard of anything else in the works? Let us know and we'll add it.

Apple, Bingo

Apple WWDC 2011 Keynote Rumor Bingo

Play along as Steve Jobs reveals all that Apple has in store for us at the 2011 WWDC Conference with our Apple WWDC 2011 Keynote Rumor Bingo.

Simply click the squares as Steve announces new features and products. Don't like your card, simply refresh the page for a new one.

Play Apple WWDC 2011 Keynote Rumor Bingo!

Rumor Round-Up

iCloud This was a rumor until Apple had to go and spoil all the fun with a press-release. Oh well. Still what is it really?

New Notification System Hurry up and already and give us a better notification system – what is this, 2007?

Wireless Synch Cables are so 2010.

Free MobileMe Is MobileMe now iCloud? If so then free that. Everyone loves free.

New MacBook Air It's about time.

Heard of any other rumors? Let me know and I will add them to the list.

Apple, Bingo

Raphael.js Sketch Animation

Just a simple script to animate Raphael.js paths. The code takes an object array list of strokes with a time value to wait between strokes.

var strokes = [ { stroke: "M50 500", time: 0}, { stroke: "l200 60", time: 800}, { stroke: "l300 -400", time: 600}, { stroke: "l-150 -20", time: 300}, { stroke: "l-180 350", time: 200}, { stroke: "l-160 -80", time: 800}, { stroke: "L50 500", time: 600}];
var drawnPath = strokes[0].stroke;
var paper = Raphael(10, 10, 800, 600);
var myPath = paper.path(drawnPath);
var section = 1;
myPath.attr({ "stroke-width": 4, "stroke": "#060", "stroke-opacity": 0.5 });
animatePath();
function animatePath() {
  if (section < strokes.length) {
    drawnPath += strokes[section].stroke;
    myPath.animate({ path: drawnPath }, strokes[section].time, animatePath);
    section++;
  }
}

http://jsfiddle.net/CkL5F/1/

JavaScript

Galaxy Map Prototype for Asteroid Miner

This is a 3D galaxy map prototype that I created for the Asteroid Miner game. You can click on star to zoom to them, then click on the galaxy image to pull back out. The mouse wheel will rotate the galaxy along the x-axis.

Games, Prototypes