Stack Overflow ranks #2 for Google Search for "Stack Overflow"
111–120 of 131 posts
Re: Stack Overflow ranks #2 for Google Search for "Stack Overflow"
#112Re: Stack Overflow ranks #2 for Google Search for "Stack Overflow"
#113May be someone fixed something , but I'm seeing stackoverflow as the top result now for both with or without inverted commas.
Re: Stack Overflow ranks #2 for Google Search for "Stack Overflow"
#114Stack Overflow ranks #1 for Bing Search for "Stack Overflow".
Granted I didn't get many worthwhile hits, but I did get some. Google simply provided me with the results of "C++ 14", which is pretty useless.
Re: Stack Overflow ranks #2 for Google Search for "Stack Overflow"
#115Gotta wonder though: should StackOverflow.com rank high for "stack overflow"? After all, a "stack overflow" isn't necessarily related to programming questions. Yes, you can ask questions on StackOverflow.com about stack overflows, but that's missing the point. So if I have a domain name that's a thing, but my site has very little content related to that thing, should I rank high for queries about that thing?
Would a person struggling with a stack overflow actually google "stack overflow", though? Surely only a very fresh programmer would need to google it, and only if he/she knew what the concept was. But here's what an infinite recursion in a C program prints if I run it: Segmentation fault: 11 Well, that's C for you. If I try Ruby: test.rb:2: stack level too deep (SystemStackError) Ok, still not the same nomenclature.…
It's why this is a top story on Headquarters of Noobs. Not surprising. You mean Lenny Kravitz didn't write American Woman?
Re: Stack Overflow ranks #2 for Google Search for "Stack Overflow"
#116Google's algorithm has gotten so big and so complicated over the years, that there are so many cracks and special cases that can cause sites to disappear from or be poorly ranked in search results, unless you're lucky enough to be huge in the tech scene or post here and get your comment seen by a Googler (as I have on occasion). Any Googlers reading this, I'm looking into rebuttals of false DMCA requests being ignore…
If a Googler sees this, the site is http://starbuckslocations.com - please look into it!
Re: Stack Overflow ranks #2 for Google Search for "Stack Overflow"
#117Earlier quoted context omitted.
Yes. And DuckDuckGo. And Google. Why give all your searches to one search engine and one company? Depending on what you're searching for, Google doesn't always provide the best results.
Google almost universally provides the best results if you are actually searching for something. Compare the results for queries like "that movie where a computer plays tic tac toe" A very reasonable search if you forget what the name of War Games is, but bing fails it utterly and completely; not a single mention of War Games until the second results page, and the wikipedia page for it doesn't appear until the third.…
Hm. There is no one google. In the google that I see, for that search, it's the other way around: "Benjamin Button" is #1, and "The Box" is #2 (both on IMDB).
Life before search engines was different and it's easy to be blasé. IMHO, getting the one that you are vaguely thinking of anywhere in the top 5 is a great and amazing technical feat. And also good enough to jog your memory, so #1 or #2 makes no difference.
Re: Stack Overflow ranks #2 for Google Search for "Stack Overflow"
#118Looks like it's a cut/paste error. If you do wget www.doioig.gov, this is the page you get. Notice the meta refresh that points to stackoverflow.com. window.location.href = "http://www.doi.gov/oig/index.cfm" Page Redirection If you are not redirected automatically, please click the link to continue to the U.S. Department of the Interior Office of Inspector General.
Why would this rank them so high though? Does the googlebot actually follow the http-equiv="refresh". If so, would changing http://stackoverflow.com to say http://dell.com make them rank #1 for searching for dell as well?
Re: Stack Overflow ranks #2 for Google Search for "Stack Overflow"
#119Earlier quoted context omitted.
Would a person struggling with a stack overflow actually google "stack overflow", though? Surely only a very fresh programmer would need to google it, and only if he/she knew what the concept was. But here's what an infinite recursion in a C program prints if I run it: Segmentation fault: 11 Well, that's C for you. If I try Ruby: test.rb:2: stack level too deep (SystemStackError) Ok, still not the same nomenclature.…
> Actually, an infinitely recursing function in Go never completes on my machine. Maybe your function is tail-recursive? Try to use the return value from the recursive call in a nontrivial way, so that stack storage is necessary to store some local variable.