38 comments

[ 2.5 ms ] story [ 97.9 ms ] thread
I've been using http://e.ggtimer.com/ for a while, seems a bit more comprehensive.
Yes, its the same principle, but tested for years. They also have a non-flash ("mobile") version: e.ggtimer.com/m/5minutes
thx to this comment, i created now a fluid-app for me with eggtimer.com! there is always a time when u need one (and ur too lazy to ask siri to do it ;) )

but now i would love to have a option on fluid, that ask me for parameter when it starts, so i can set the timeframe when i start the "app"

Am I misunderstanding something? I tried starting it thusly: http://alrt.io/3%20hours%2022%20minutes

Is the point not that it can handle a variety of input?

There's a clear bug in the parser. If you change 'minutes' with 'seconds', it works.

Sloppy programming :/

If you change "minutes" to "minute", it seems to work.
i fixed it, the parsing regex should be more stable now
(comment deleted)
I think it needs to be able to flash the favicon, when you have several tabs open, you can't see the title change.
If you pin the tab, Firefox and Chrome should glow the favicon on title change.
Well there's one hour and three seconds I'll never get back.

Neat idea - will be great for timing board games.

would be nice to have window.focus() added to your notifyWindow() javascript function, that way it gets my attention. :-)
This is pretty neat. But I'm having a hard time understanding why should this be a web app ? When are we getting seamless installation of things like that ?
if on a public computer it would probably be a pain to find an alarm to go off after a certain amount of time. i think it could be pretty handy. easier than getting phone out and setting one there
(comment deleted)
I think you missed the point of this. Try again.
Note: if you put in a time in hours higher than http://alrt.io/80063993375h (such as http://alrt.io/80063993376h ), your timer may go off a second early, as it skips the first :59 on Mac OS X Safari/Chrome, going straight from :00 to :58.

I don't imagine this bug would cause much misfortune, though.

Now, on alert completion do this:

  window.location.href = 'nyan.cat';
Neat little app, nice to see a simple non-Flash version of http://e.ggtimer.com
This would be great. It could definitely use a fun alert or a way for a user to make their own alert via some url.
Simple and cool. How about making the URLs more human readable:

    alrt.io/2minutes50seconds
or

    alrt.io/2m50s
instead of

    alrt.io/2%20minutes%2050%20seconds
The %20 makes it really hard to parse.
Not sure if it's updated since you wrote this, but you can do

    alrt.io/2m50s
Still %20s in long format URLs though
The timeLeft -= 1000 approach is not the best one because setTimeout doesn't guarantee when the next tick is gonna happen.

Just open the JS console and type:

  for (var i = 0; i < 1e7; i++) {}
You will block the JS execution and your next tick will happen when the loop finishes. Using new Date().getTime() should do the job.

Edited for formatting.

Scrolling in iOS also stops setTimeout being called.
Cool, always good to have a countdown timer for monotonous things like stretching.
what about milliseconds? no love there? :)
Cool. I wrote something like this to alert me when its time to pick up my daughter from school. Though in my implementation it starts playing a very annoying alarm (I always have headphones on). Congrats on shipping!
there is a progress indicator in the favicon now!