Google timer
google.com
Google timer
1–10 of 157 posts
Re: Google timer
#2Re: Google timer
#3Re: Google timer
#4It seems that if they continue to do things this way, sooner or later, Google is likely to replace thousands of utility websites.
This seems like a change in their philosophy from sending users to other websites in as little time as possible, to using Google as a portal.
Interestingly, this change in philosophy by Yahoo from a search engine to a portal was what made Yahoo lose out to Google.
Re: Google timer
#5 #!/usr/bin/env ruby
done = Time.now + ARGV[0].to_i
while(true) do
sleep(10)
`say "Time's up!"` if Time.now > done
end
Or the alarm clock version: #!/usr/bin/env ruby
require 'time'
done = Time.parse(ARGV[0])
while(true) do
sleep(10)
`say "Time's up!"` if Time.now > done
endRe: Google timer
#6Re: Google timer
#7Nothing happens at that page for me. Could the reason be that I'm redirected to google.se (which does not have this feature, yet)?
Re: Google timer
#8which comes up top of the google search results for "timer for 1 hour" for me. Now there is absolutely no way they can compete with Google's own offering from an SEO perspective.
While this example is trivial to some extent, does it set a precedent that while you can advertise and compete with Google, they can always have the unfair advantage at being top of the list.
Re: Google timer
#9(I'm shouting both because it's very important advice and because I'm now deaf)
Re: Google timer
#10Interesting side effect. There's this web site: http://www.online-stopwatch.com/timer/1hour/ which comes up top of the google search results for "timer for 1 hour" for me. Now there is absolutely no way they can compete with Google's own offering from an SEO perspective. While this example is trivial to some extent, does it set a precedent that while you can advertise and compete with Google, they can always have the…