The Art of Procrastination

Procrastination is not a disease, it's a lifestyle.

Or, rather, it's a necessary evil for those of us who value creativity and comfort.

Here are some philosophical musings on the subject:

Procrastination is Not a Sin

It's just a matter of redefining what needs to be done.

// The Procrastination Algorithm
if (urgency > comfort)
{
  procrastinate();
  console.log('I'll get right on it... tomorrow');
}
else
{
  doItNow();
  console.log('Woohoo! I did it!');
}