Skip to content

Tech Trek Idol is Officially Closed

MapEnglish edited this page Oct 1, 2014 · 9 revisions

So with the final merge of “A Map of Ice and Fire” we’re done. We should all be proud of ourselves for contributing to the open source community. We'll update this wiki as we go thru the judging. A big shout out to Amr Eldib for his inspiration and guidance on this contest.

Apps are here (scroll down the page)

Remember, Live by the Code:

//Run this script in your favourite browser’s console    
//Assumption 1: Your parents took you to movies when you were 5 years old
//Assumption 2: You were that old on May 25, 1977
var AGE_THRESHOLD = 42;
var your_age = prompt("Please enter your age", AGE_THRESHOLD)

if(isNaN(your_age))
{
  console.log("Your age must be numeric");
}
else
{
  var valediction = (your_age < AGE_THRESHOLD) ? "May the odds be ever in your favour!" : "May the force be with you!";
  console.log(valediction);
}
Clone this wiki locally