Earlier quoted context omitted.
A bug is a bug. "Why would anyone ever do XYZ" is a separate discussion. And if you write software for a living you know that there is always that one user who will do exactly XYZ.
Nope. Undefined behavior on obviously incorrect input isn't a bug in my world. ( might be in other circumstances )
Google Timer is back
21–30 of 99 posts
Re: Google Timer is back
#22and .... it's buggy try https://www.google.com/search?q=timer+724+years click on start, looses most of the time
Some kind of overflow, it resets timer to 40 hours. Same thing happens with 1 year, except timer is reset to 60 hours. Another interesting observation is that "timer 723 years" did not bring timer up, but "timer 722 years" did. Update: "timer 100 hours" works, but "timer 101 hours" does not. That is 100 hours is 144,000 seconds, does not seem to be anything special about this number.
Edit: this seems like it's just a display bug and the original time is still preserved. If you search "timer 100 year 1 second" then it formats to "876000h 00m 01s", then the next tick shows "0s", then the next tick shows "99h 59m 59s"
> Another interesting observation is that "timer 723 years" did not bring timer up
That is weird. Even weirder that "timer 723 year" (singular) does seem to work.
Re: Google Timer is back
#23Earlier quoted context omitted.
When would you ever need a timer for 724 years?
A bug is a bug. "Why would anyone ever do XYZ" is a separate discussion. And if you write software for a living you know that there is always that one user who will do exactly XYZ.
Re: Google Timer is back
#24and .... it's buggy try https://www.google.com/search?q=timer+724+years click on start, looses most of the time
..and curiously, with the little speaker icon 'on', it produces no audio alarm for me, (firefox 103.0.2). Whereas this[1] one produces a quite notable sound. [1] https://www.online-stopwatch.com/countdown-timer/
Ran into a related bug on a site I was working on the other day and had to learn this browser quirk the hard way.
Re: Google Timer is back
#25Re: Google Timer is back
#26Re: Google Timer is back
#27and .... it's buggy try https://www.google.com/search?q=timer+724+years click on start, looses most of the time
Re: Google Timer is back
#28Re: Google Timer is back
#29Earlier quoted context omitted.
Nope. Undefined behavior on obviously incorrect input isn't a bug in my world. ( might be in other circumstances )
You must be a C programmer.
I agree, upon further thought, that at least an error message would be better for the user (e.g. "Maximum timer duration exceeded").
Re: Google Timer is back
#30Earlier quoted context omitted.
A bug is a bug. "Why would anyone ever do XYZ" is a separate discussion. And if you write software for a living you know that there is always that one user who will do exactly XYZ.
Sure, a bug is a bug, but the original remark was that the software was "buggy". I read "buggy" as riddled with pretty obvious bugs. If we're calling software "buggy" for having any bugs, then, I guess, nearly all software is "buggy" (and the word looses its usefulness).
Try "timer 101 hours". The page title will (very quickly) show "10:05:9x" where x is the 10s digit of the seconds. While the page itself claims it's a one hour timer (59 minutes and some seconds). So the actual time is in there somewhere, just showing up wrong in both places.
It also doesn't seem to let me enter 30 minutes as a timer, but most other minutes times work. So, yes, it's buggy.
EDIT: It's not actually modulo 100 hours, I should note. The display is showing it that way, but since it has the real time stored internally it still counts down. If it were actually modulo 100 hours then it would zero out a 100 hour (or 200 or 300...) countdown immediately, instead these wrap to 99 hours, 59 minutes, and 59 seconds on the first tick.
EDIT: For grins I'd started a 101 hour timer a bit over an hour ago before stepping away from the computer. Despite the display silliness, it actually will run for 101 hours. After the first hour the displayed time rolls back to 99:59:59 and the page title updates correctly. I also noticed that there's a progress bar below the timer, it correctly shows the progress within the 101 hour timer the whole time.