Slashdot Log In
Google Programming Contest Winner
Posted by
michael
on Fri May 31, 2002 08:27 AM
from the check-out-the-big-brain-on-brad dept.
from the check-out-the-big-brain-on-brad dept.
asqui writes "The First Annual Google Programming Contest, announced about 4 months ago has ended. The winner is Daniel Egnor, a former Microsoft employee. His project converted addresses found in documents to latitude-longitude coordinates and built a two-dimensional index of these coordinates, thereby allowing you to limit your query to a certain radius from a geographical location. Good for difficult questions like "Where is the nearest all-night pizza place that will deliver at this hour?". Unfortunately there is no mention whether this technology is on its way to the google labs yet. There are also details of 5 other excellent project submissions that didn't quite make it."
This discussion has been archived.
No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Full
Abbreviated
Hidden
Loading... please wait.
if i'd only known (Score:2, Interesting)
The winning idea was cool, but the rest looks
like free development for google rather
than something novel.
Re:if i'd only known (Score:4, Informative)
Let me quote from the homepage of the annual contest:
"Grand Prize
$10,000 in cash
VIP visit to Google Inc. in Mountain View, California
Potentially run your prize-winning code on Google's multi-billion document repository (circumstances permitting)"
Parent
Re:if i'd only known (Score:2)
Re:if i'd only known (Score:2)
Re:if i'd only known (Score:3, Funny)
I see one being implemented soon (Score:5, Interesting)
This may help to defeat the current practice of overloading the PageRank results of a given key word as to point to a given page by having people link to that page with a link containing that keyword, aka "Googlebombing". I do think that the winner is a very interesting and useful project, this latter one will probably be implemented ASAP.
Re:I see one being implemented soon (Score:2)
Re:I see one being implemented soon (Score:2, Informative)
Markovian Dependece [google.com]- The condition where observations in a time series are dependent on previous observations in the near term. Markovian dependence dies quickly, while long-memory effects like Hurst dependence, decay over very long time periods.
Markov processes (Score:3, Informative)
A Markov process is basically a series of random variables where the value of random variable X^(i+1) only depends on X^i. The idea is that if you want to predict the value of X^(i+1), all of the information you could possibly use is in the value of X^i.
Lots of processes are Markovian- for instance, a random walk. If you're at point x at time t, then you know that there's a fifty-fifty chance you will be at x-1 or x+1 at time t+1. Knowing all of the previous points along the random walk won't help you predict the next point any better than that.
I sent something into the contest. (Score:4, Funny)
Re:I sent something into the contest. (Score:2)
What a great idea (Score:4, Funny)
Google Search (Score:4, Funny)
Latitude/Longitude => 37/180, Pak
Capture
If this would have come out before we could have saved a country
Re:saved a country (Score:2)
US gov has been trying to
capture Bin Laden before 9/11.
At least some changes would
not have occured that fast.
Idea for a Google Query..... (Score:5, Funny)
- MP3's
- Warez
- Pr0n
- Explosives making instructions
And worst of all....- DeCSS
We've got to stop all of the terrorists in the categories mentioned above!"Google Sets" (Score:2)
more details (Score:5, Informative)
This is impressive bit of database manipulation. Somehow I didn't think that all of the datatypes, etc would be so easily parsed.
Although I do recall telephone directories that used to give you results for a specified radius for certain types of businesses
Re:more details (Score:3, Insightful)
Re:more details (Score:5, Insightful)
Parent
Re:more details (Score:4, Informative)
Although I do recall telephone directories that used to give you results for a specified radius for certain types of businesses
That's just a standard spatial query. It's easy to implement an R-Tree to be able to do (relatively) quick "give me points within x meters of this one" type of searches on a database. There's nothing extremely revolutionary about Daniel's project, anyone with some basic geometry knowledge and the patience to download the 33GB of TIGER data could have done it within the course of a few weeks. (Ironically enough I've been doing the same thing with 1.2 million addresses against TIGER data for the past month.)
But that's the true genius and beauty of it. Now that it's been said, it's such a mindbogglingly obvious and useful application of web search and spatial search technology that it's hard to believe nobody thought of it before.
I'd be honestly surprised if Google doesn't run with the ball and fold it into their main search engine. The only thing standing in the way is the storage space and CPU time to do it.
Parent
404 Page Not Found ? (Score:5, Interesting)
Shouldn't Google automatically check results that a user follows and flag those that cannot be displayed ?
Re:404 Page Not Found ? (Score:3, Insightful)
Thomas Phelps and Robert Wilensky, for their project, Robust Hyperlinks. Traditional hyperlinks are very brittle, in that they are useless if the page later moves to a different URL. This project improves upon traditional hyperlinks by creating a signature of the target page, selecting a set of very rare words that uniquely identify the page, and relying on a search engine query for those rare words to find the page in the future. For example, the Google programming contest can be found using this link.
Re:404 Page Not Found ? (Score:3, Informative)
Re:404 Page Not Found ? (Score:3, Interesting)
What should they do if a page is unavailable, though? What if it's only down for a few seconds?
Re:404 Page Not Found ? (Score:5, Insightful)
I would much prefer to see them improve the ease of browsing their cache. Specifically, if a cached site is 404, then present a cached version of the site where all clicks within the site simply link to the cached version, unlike today where all clicks are native (and therefore lead to more 404's). Granted that wouldn't be of any use for links to dynamic pages, but anything is better than what they have today.
Parent
Re:404 Page Not Found ? (Score:3, Informative)
Not earth shattering, but useful (Score:2, Informative)
Service already exists (Score:2)
Last time I used Lasoo was on Mother's Day, to find the closet florist to my mom's house.
Re:Service already exists (Score:3, Insightful)
The cool thing about the winning google entry is that it actually deduces the location of the search result by finding and parsing any address information that appears on the site!
I think that's pretty clever. - Does anyone know if it's limited to the US?
--
Andy
Nice (Score:3, Interesting)
What would be cool, would be the option to right click on the hyperlink and have the option "Find alternative location".
Or even cooler, have IE (or your favourite browser) on putting up the 404 message have a hyperlink which does the same. Hell, easy enough to do with apache.
I knew I should have patented it... (Score:2)
But the idea of using it just to find business within a certain radius is very limited thinking.
Mobile phones will soon be broadcasting their position. You want interactive guided tours of a city? How about playing full size monopoly? Driving directions? Any sign you currently see could be removed and replaced with a virtual sign? Any number of VR worlds played out in meat space? etc etc
I think that the ability to automatically tell someone where you are will prove to be a boon.
Kudos to the developer for carrying through, rather than my lazy ass postulating
runner up (Score:2)
sounds a lot like Google sets [google.com]
Robust Hyperlinks has to be my favourite.
NetGeo (Score:5, Informative)
Re:NetGeo (Score:2)
More uses (Score:5, Funny)
Results: Apt 2D
Re:More uses (Score:2, Funny)
But how many milliseconds would it take before she's slashdotted?
Re:More uses (Score:2, Funny)
Error: This server is too busy to deal with your request
watch out, google. (Score:2)
so as a former microsoft employee he's going to run his code on the google servers.
Nah, this one's too easy!
A project that really could be good for Google... (Score:5, Informative)
So you think that Google's results are fair? You're wrong. The best ranked results are from sites that heavily cheat.
Since Google has aggressively removed fake generated sites linking to each other, new ways of cheating have been immediately adopted.
Apart from cloaking (what the Google crawler sees is different from what user see), generated sites now include fake generated english-like sentences in order to make Google think the text is real. Spam indexing is now distributed on multiple IPs. Content is dynamic, it changes everyday (random links and texts are generated) . Temporary sites are hosted on external (yet non-blacklisted) cheap colocated servers. Invisible frames are added, etc.
I'm not innocently talking about that because the company I'm working for is actively doing it. And it works. And they say "Spam? Uh? Who's talking about Spam? It bring us money, so it's not spam, it's our business".
There are ways to prevents cheating on Google. It's probably very complex, but it's realisable. If any human looks at our 'spam site', he will immediately discover that it's not a real site. It's a mess, just for keywords and links.
If such a project had been made for the Google content, it would have been wonderful.
Google is still the best search engine out there. Their technology rocks, and they are always looking for innovation. But what could make an huge difference between and other search engines is : fair results. Same wheel of fortune for everybody.
Yet this is not the case. Trust me, all well ranked web sites for common keywords belong to a few companies that are actively cheating.
Not all well-ranked sites for common words cheat (Score:3, Interesting)
This statement is easily refuted. Type "linux". The 10 sites you see all belong there, and I can guarantee you that most of them are not engaging in cheating.
But since you admit that you work for a company that engages in this practice, perhaps it helps you sleep at night to believe that "everybody does it".
Daniel Egnor's "Iocaine Powder" (Score:4, Interesting)
In a weird coincidence, I just spent a half-hour last night lecturing about Daniel Egnor's Iocaine Powder [ofb.net], winner of the First International RoShamBo Programming Competition [ualberta.ca]. Credit this guy with two award-winning pieces of extreme programming cleverness!
More Information About the Winner (Score:5, Informative)
Smooth Move Google (Score:3, Insightful)
Re:good news for open source? (Score:2)
Re:About the "Former Microsoft Employee" bit.. (Score:2, Insightful)
Re:About the "Former Microsoft Employee" bit.. (Score:5, Funny)
Actually he was employed by XYZFind Corp. Literally. And it didn't show up.
Parent
Re:About the "Former Microsoft Employee" bit.. (Score:3, Funny)
Being a former M$ employee tells me he learned quite a bit.
Re:About the "Former Microsoft Employee" bit.. (Score:2)
Re:Geographical Approximation (Score:3, Interesting)
Re:Some might think.. (Score:2)
Though their operating systems may be riddled with bugs and security flaws of all sorts, look at their applications. They tend to be the epitome of quality software.
Yeah, right. That one dancing PaperclipDude was the "epitome of quality software".
Me: (starts writing a letter in Word)
PaperclipDude: "Hi there! It looks like you're writing a letter!"
No shit, Shirlock. What gave it away? The "Dear Sirs" opening line? Shees.
GMD