vote up 334 vote down star
393

Nobody likes waiting but unfortunately in the Ajax application I'm working on at the moment, there is one fair-sized pause (1-2 seconds a go) that users have to undergo each and every time they want to load up a chunk of data.

I've tried to make the load as interactive as possible. There's an animated GIF alongside a very plain, very dull "Loading..." message.

So I thought it might be quite fun to come up with a batch of 50-or-so funny-looking messages and pick from them randomly so the user never knows what they're going to see. The time they would have spent growing impatient is fruitfully used.

Here's what I've come up with so far, just to give you an idea.

var randomLoadingMessage = function() {
    var lines = new Array(
    	"Locating the required gigapixels to render...",
    	"Spinning up the hamster...",
    	"Shovelling coal into the server...",
    	"Programming the flux capacitor"
    );
    return lines[Math.round(Math.random()*(lines.length-1))];
}

(Yes -- I know some of those are pretty lame -- That's why I'm here :)

The funniest I see today will get the prestigious "Accepted Answer" award. Others get votes for participation.

Enjoy!!

Edit: Why the downvote? I'll agree that this isn't about binary arithmetic or concatenating databases, but keeping users engaged in an unfortunately slow system is a system design issue.

flag
1  
I wouldn't bother. Even if you can find 50 "funny" entries (the vast majority of suggestions so far have been overwhelmingly unfunny), they won't be funny the second time you see them. A progress bar would be more useful, perhaps with a "Tip of the Day" to provide actual helpful information. – Dan Dyer Oct 11 '08 at 11:38
32  
Actually, you don't "program" a flux capacitor, you "charge" it. The difference may seem slight, but you'd definitely care if you suddenly found yourself in 1,000,000 BC instead of 2012 AD. Important safety tip. – Cyberherbalist Oct 13 '08 at 16:07
5  
I love the "why the downvote" edit now that the net votes are +168 :-) – paxdiablo Jan 20 at 8:07
3  
... "waiting for the tubes to be unclogged..." – DeadHead May 8 at 0:50
13  
There are lot of them in World Of Goo! – TheVillageIdiot Jun 26 at 4:05
show 10 more comments

238 Answers

prev 1 4 5 6 7 8
prev 1 4 5 6 7 8

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.