Use this tag for programming questions related to Google's API's
325
votes
9answers
29k views
Best way to use Google's hosted jQuery, but fall back to my hosted library on Google fail
What would be a good way to attempt to load the hosted jQuery at Google (or other Google hosted libs), but load my copy of jQuery if the Google attempt fails?
I'm not saying Google is flaky. There ...
149
votes
16answers
164k views
How to call SOAP web service with Android
I am having a lot of trouble finding good information on how to call a standard SOAP/WSDL web service with Android. All I've been able to find are either very convoluted documents and references to ...
141
votes
6answers
16k views
“Breaking” Google By Sending “${” Search Query? [closed]
Well, apparently you can "break" Google by sending it a search query like "${." It strips the Google.com page of its tab separators and whatnot.
Is there any apparent reason for this? I imagine ...
110
votes
27answers
9k views
What are the best Google Tech Talks? [closed]
What are the most interesting programming-related Google Tech Talks?
101
votes
3answers
30k views
Downloading jQuery CSS from Google's CDN
I am planning on using Google to download the jQuery lib for both UI and Core. My question is, do they allow me to download the CSS for it or should I have to host it myself?
Also if I use Google to ...
98
votes
5answers
56k views
89
votes
19answers
8k views
How can Google be so fast?
What are the technologies and programming decisions that make Google able to serve a query so fast?
Every time I search something (one of the several times per day) it always amazes me how they ...
80
votes
16answers
59k views
Google Interview Questions [closed]
I am preparing for an interview with Google (Mountain View) I was wondering if anybody could share some of the questions and experiences.
I have been told that they ask both brain teasers and ...
79
votes
4answers
11k views
How does Google Instant work?
Any ideas on exactly how the new google instant search works? It seems to just be AJAX calls to the old search, but it's pretty hard to simplify Google that much. Anybody have speculations?
EDIT:
I ...
78
votes
8answers
17k views
Is there already a Google+ API?
I would like to know if there is already a Google+ API available to the developers. I have not yet found something?
The API is now here available: http://developers.google.com/+/
70
votes
4answers
10k views
Heavy usage of Python at Google [closed]
Google's heavy usage of Python, is it just a matter of taste or does it give them a competitive advantage?
66
votes
15answers
26k views
Where do you include the jQuery library from? Google JSAPI? CDN?
There are a few ways to include jQuery and jQuery UI and I'm wondering what people are using?
Google JSAPI
jQuery's site
your on site/server
another CDN
I have recently been using Google JSAPI, ...
61
votes
11answers
16k views
Where can I learn more about the Google search “did you mean” algorithm? [closed]
Possible Duplicate:
How do you implement a “Did you mean”?
I am writing an application where I require functionality similar to Google's "did you mean?" feature used by their ...
58
votes
3answers
7k views
Using HTML5/Canvas/Javascript to take screenshots
Google's "Report a Bug" or "Feedback Tool" lets you select an area of your browser window to create a screenshot that is submitted with your feedback about a bug.
screenshot by Jason Small, posted ...
46
votes
1answer
5k views
Delegate OpenID to Google (NOT Google Apps)
OK, I searched this question on SO but no good answer. After spent some time I figured out how to do it. I'm going to answer this myself as a way to share it.
45
votes
9answers
2k views
Google homepage not valid html
I was looking at the www.google.com in Firebug and noticed something odd: The Google logo is centered using a center tag.
So I went and checked the page with the W3C validator and it found 48 errors. ...
44
votes
3answers
3k views
How does today's (Jules Verne) Google's Doodle work?
I am sure many of you have already checked on today's (2011-02-08) Google's doodle (link to article on CNN if doodle changes). It was awesome and I tried figuring out about its implementation in ...
35
votes
8answers
5k views
The Guava library for java; what are its most useful and/or hidden features
I have had a quick scan of the guava api and the new collection types it provides(multimap and bimap for example appear useful) and I am thinking of including the library in the project(s) I work on. ...
35
votes
7answers
21k views
Is there a Google Voice API?
Is there an API (officially or unofficially) for Google Voice? I would like to have an API to work with voicemails, send/receive SMS messages, initiate calls, etc. What is the Android client using? ...
32
votes
9answers
22k views
31
votes
3answers
2k views
Why would Google use a font tag?
So, I couldn't help noticing while demonstrating Chrome's DOM browser thing to my brother, that Google uses a <font size=-2> tag.
I know this is a stupid question, but from a programming point ...
31
votes
8answers
13k views
Gmail Task API exist?
Inside Gmail, there is a small function called "Task". It can allow me to enter a to-do-list. I'm wondering if there is any official / unofficial Google API to access / update the list by Java ...
31
votes
9answers
43k views
How can I get stock quotes using Google Finance API?
I'm looking for access to financial data from Google services.
I found this URL that gets the stock data for Microsoft.
What are all the possible parameters that Google allows for this kind of HTTP ...
30
votes
3answers
2k views
Why does Google append while(1); in front of their JSON responses?
This is something I've always been curious about, is exactly why Google appends while(1); in front of their (private) JSON responses.
For example, here's a response while turning a calendar on and ...
28
votes
9answers
10k views
Google +1 Button not W3C compliant
So I've been playing with Google's +1 button trying to get it on my website, but it's not W3C compliant.
Here's the code:
<!-- Place this tag in your head or just before your close body tag ...
27
votes
8answers
15k views
What are advantages of using google.load('jQuery', …) vs direct inclusion of hosted script URL?
Google hosts some popular JavaScript libraries at:
http://code.google.com/apis/ajaxlibs/
According to google:
The most powerful way to load the libraries is by using google.load() ...
What are ...
26
votes
7answers
2k views
How does google do the barrel roll?
If you Google, 'do a barrel roll', the whole page does a 360 rotation. Does anyone have any guesses as to how Google is doing this? I disabled javascript, and it still occurred, so maybe a css ...
26
votes
4answers
1k views
Google Interview: Arrangement of Blocks
You are given N blocks of height 1…N. In how many ways can you arrange these blocks in a row such that when viewed from left you see only L blocks (rest are hidden by taller blocks) and when seen from ...
24
votes
1answer
833 views
Dynamic programming question
"Observe that when you cut a character out of a magazine, the character on the reverse side of the page is also removed. Give an algorithm to determine whether you can generate a given string by ...
23
votes
3answers
4k views
Google Search from a Python App
I'm trying to run a google search query from a python app. Is there any python interface out there? If there isn't does anyone know which Google API will enable me to do this. THanks
23
votes
9answers
2k views
Should I link to Google API's cloud for JS libraries?
I'm looking for the pros/cons of pulling jQuery & other JS libraries from Google API's cloud as opposed to downloading files and deploying directly.
What say you?
My decision
The likelihood ...
21
votes
5answers
3k views
How to screenshot website in JavaScript client-side / how Google did it? (no need to access HDD)
I'm working on web application that need to render page and make a screenshot on client (browser) side. I don't need screenshot to be saved on local HDD though, just kept in RAM and send to ...
21
votes
3answers
1k views
How is click-fraud detected?
Which methods do Google (and other PPC companies) use to prevent click fraud?
21
votes
6answers
21k views
Is there a speech to text API by Google?
In Android, you can say something and it will search it for Google.
Google can turn speech into text.
How can I leverage this API?
21
votes
3answers
4k views
Does Google use Python for anything but internal utilities and administration?
I'm curious...I've read much of Python being on the approved list of languages used by Google employees, and I know they employ Guido. That said, is their use of Python focused mainly on managing ...
21
votes
5answers
10k views
Accessing Google Spreadsheets with C# using Google Data API
I'm having some information in Google Spreadsheets as a single sheet.
Is there any way by which I can read this information from .NET by providing the google credentials and spreadsheet address. Is it ...
20
votes
7answers
767 views
How do I approximate “Did you mean?” without using Google?
I am aware of the duplicates of this question:
How does the Google “Did you mean?” Algorithm work?
How do you implement a “Did you mean”?
... and many others.
These questions are interested in ...
19
votes
4answers
8k views
Merits of Amazon book API versus Google book API?
If one wanted to build a web site around books, would it be better to use Amazon's web services API or the Google book API? All aspects of the question are welcome discussion fodder: technical ease, ...
18
votes
3answers
996 views
To hashbang or not to hashbang?
I'm developing a new website and I'd like to make use of AJAX as much as possible. Basically, I want users to almost never navigate away from the homepage and have everything displaying in popup ...
18
votes
5answers
36k views
Overlapping Views in Android
Is it possible to have overlapping views in Android? I would like to have an ImageView with a transparent png in the front and another view in the background.
edit:
This is what I have at the ...
16
votes
5answers
8k views
Noscript Tag, JavaScript Disabled Warning and Google Penalty
I have been using a noscript tag to show a warning when users have JavaScript disabled or are using script blocking plugins like Noscript. The website will not function properly if JavaScript is ...
16
votes
9answers
1k views
How do you scale HTTP server like Google?
I often marvel at how I can go to www.google.com, from anywhere in the world at any time, and get the returned page so fast.
Sure, they compress their output and keep to a minimal design - that ...
15
votes
6answers
2k views
Google using # instead of search? in URL. Why?
I'm not sure how long they've been doing it but I just noticed google using # in their search url instead of search?.
New way
http://www.google.com/#q=stackoverflow
Old way
...
15
votes
6answers
5k views
MapReduce implementation in Scala
I'd like to find out good and robust MapReduce framework, to be utilized from Scala.
15
votes
24answers
2k views
Which applications would you like to see integrated with Google Wave?
Google Wave has some very interesting features in it, mostly the integration ones. Which applications (web or not) would you like to see integrated with it first, when it launches?
15
votes
6answers
8k views
15
votes
9answers
2k views
Building a web search engine [closed]
I've always been interested in developing a web search engine. What's a good place to start? I've heard of Lucene, but I'm not a big Java guy. Any other good resources or open source projects?
I ...
14
votes
1answer
2k views
What's new in Google Guice 3?
Guice 3 is just around the corner, but I cannot find a page telling me what's new in this version. So, what's new in Guice 3?
14
votes
3answers
1k views
How do I make my page look good in Google Instant Previews?
When you view a page from my site in Google Instant Previews, you see an AJAX error message (caused by some AJAX that fires on document ready):
I assume the way to fix this is to make my javascript ...
14
votes
6answers
598 views
how do Google and Yahoo replace the URL in the browser status bar?
On the Google and Yahoo search pages, the URLs of the 10 search result links actually point to google.com or yahoo.com. The URLs have extra arguments that allow google.com or yahoo.com to redirect to ...