Algorithmic Questions

Because sometimes the most interesting problems are the ones you can't even understand.

Here are some of the most pressing questions facing our world today:

function isApocalypse() { return new Date().getDay() === 5; }
if (isApocalypse()) {
alert("You're a goner!");
} else {
document.getElementById('content').style.display = 'none';
document.getElementById('nav').style.display = 'none';
}