-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added timeframe property to allow finer-grained search. Modified URL and newURL accordingly #26
Conversation
I like this, but please make the following modifications:
|
Sure thing, I'll see what I can do. Pretty new to web development so github is borderline Magic to me! |
…and newURL accordingly source: http://webdistortion.com/2012/02/19/need-a-more-realtime-google-search-try-this-hack gist: ... secret lies in this query parameter “&tbs=qdr” – QDR I assume stands for “Query defines Relevance” &tbs=qdr:h – this brings back information indexed in the past hour &tbs=qdr:d – this brings back information indexed in the past day (24 hours) &tbs=qdr:w – this brings back information indexed in the past week &tbs=qdr:m- this brings back information indexed in the past month and so on. Nothing magical about that..however, to get information which is fresher than an hour, you can do this directly in the browser &tbs=qdr:n10 – this brings back information indexed in the past ten minutes &tbs=qdr:s100 – this brings back information indexed in the past 100 seconds.
OK went ahead and:
Also I learned a bit about the power of rebase. Cheers! |
Ok, almost there :) But now there is no update to the README file at all? The README docs were good, it's just that there were multiple commits to the README when there should of only been one. Just add this new feature to the README and then I'll merge :) Thanks! |
Ah, I think it got Rebased out of existence. Hopefully taken care of. |
Hmm, maybe because so many requests are being made so quickly and google is blocking? What happens if you open three console windows and run the tests three times simultaneously, does one of them fail? |
Wow. That took WAY longer to fix than I care to admit hahah. I was calling 'done' multiple times. Fixed test case and all tests should pass. |
Added timeframe property to allow finer-grained search. Modified URL and newURL accordingly
I renamed |
Cheers for the useful tool! |
Playing with google search urls and thought this is super useful.
Source: http://www.webdistortion.com/2012/02/19/need-a-more-realtime-google-search-try-this-hack/
Gist:
add param to url: 'tbs=qdr:time_val'
Updated README with more info.