google

setValue to QUERY() formula doesn't work?

Part of my spreadsheet's script runs the following piece of code: temp.getRange(1, 1).setValue("=QUERY(data!A1:H125, \"Select A\")"); As you might expect, this puts =QUERY(data!A1:H125, "Select A") into the A1 cell BUT the formula gives an error (#NAME, error: Unknown range name data!A1). I know the formula is correct because if I c...

Hwo to build google google-breakpad for windows?

I am trying to build google breakpad for windows. I don't get it. I tried installed autoconf and m4 for Windows which seems to work. But running m4 CXXFLAGS=-m32 CFLAGS=-m32 CPPFLAGS=-m32 ./configure results in func_dirname () { # Extract subdirectory from the argument. func_dirname_result=NONE:0: m4: ERROR: EOF in string aft...

google maps reverse geocoding xml problem

i need to extract data from an xml file but have a problem with a sintax for an addressline im using this $node->AddressDetails->Country->SubAdministrativeArea->AddressLine; if also tried $node->AddressDetails->Country->SubAdministrativeArea->PostalCode->AddressLine; this is the result , on P3 (La Julia ) http://maps.google.com/map...

Scraping a google search page for the top 10 search links for a keyword

i want to scrape the top 10 search links from a google page on searching a keyword. i am using webharvest . Planning to scrape the href links and filter out the top 10 using some attribute pattern? Is it the right way,its not working at the moment. Any other simple way to do it ? :( ...

how to implement the realization/download of google ebooks from onix

Hi friend, I am with a specific doubt regarding the realization/download of ebooks from google. Currently in our site , we store the onix(metadata) in our database. my question is that How I can download the books whose ONIX exist in our database and after purchase the relevent book . We need to integrate same functionality to our web s...

Clearing preferences in SharedPreferences in Android, not just Values

Hello there, from what I can incur out of the SharedPreferences documentation, I can update a preference, add one or clear all preference values in a shared preference file. But I want to completely clear everything inside a shared preference file, not just the values, but the preferences they refer to as well. ...

Sending email with PHP after Google Apps

I am thinking about using Google Apps to handle email for my server. After changing MX records and pointing everything at Google, will my server still be able to send email through PHP? I run an install of OSCommerce which uses PHP to send order confirmation emails and I need to be sure that they will not be interrupted by this change. ...

How to automate a Google text-messaging app?

I have a group that needs to send out announcements and current events via phone text message. I want to have a central phone number that when it receives a text message, it rebroadcasts that message to a growing list of subscribers. I'm hoping to use a Google Voice number to avoid buying an actual phone number. Any ideas? I've thought ...

To display traffic using the google map flash api

Hi, I've been wondering to to display traffic information using google maps flash api. I've read google maps api references but i couldn't find anything like Traffic layer in the google maps JS api v3. Is it unavailable to display traffic information using google maps flash api? Or any alternate way to display traffic info in the flash...

Hide Balloons from google maps routes

Hi, I need to hide the green balloons that google earth creates for each point when I create a route using loadFromWaypoints. I need to create routes and put some custom pins, but I have too many points on the route and too many balloons with "A", "B", "C"... descriptions hidding my custom pins. I need to hide or replace the ballons. ...

How do I drop spots on Google Map in an Android app?

Hi! I'm developing an Android application where I want to pin out certain spots/addresses on a google map. I have managed to add point to a mapView using OverlayItem and a Drawable. That works great. But I have installed an application where the pins/spots are added asynchronously, and it looks like they are dropped from the top of the...

How does one implement Google Federated Login using dotnetopenauth

Hi all, From what I read, Google Federated Login is OpenID and OAuth together. I've read the samples included with dotnetopenauth (theres a Gmail Contacts one in there) and sort of get it. What is freaking me out, then, is if Google Federated Login is a combination of these two protocols, how on earth am I supposed to implement it when...

How to return a Date value from JSON to Google Visualization API

is there a way to retrieve date value from JSON in Google Visualization API? Here is the snipplet for playground please copy the code below into it When you run the code you won't have anything in result. you should remove the quotes from the date value I marked with comment in order to retrieve result. function drawVisualization() { ...

How do I get of the most common words in various languages?

Stackoverflow implemented its "Related Questions" feature by taking the title of the current question being asked and removing from it the 10,000 most common English words according to Google. The remaining words are then submitted as a fulltext search to find related questions. How do I get such a list of the most common English words?...

How is Google's buckyball doodle implemented?

I've had a look at the markup it creates, namely a bunch of images for the atoms, and a big background image, which is used rather strangely to create the bonds. There are some things that I can't work out: Where the javascript is What makes the bonds at the rear narrower Why the atoms also have the bond background applied ...

Google chart api: why my url doesn't work ?

I tried to generate a candlestick chart http://code.google.com/intl/en/apis/chart/docs/gallery/compound_charts.html#candlestick_charts I generate this but it doesn't any candlestick why ? http://chart.apis.google.com/chart?cht=lc&chs=650x300&chd=t0:-1,1.49629,1.51431,1.49545,1.51357,-1|-1,1.51355,1.51404,1.49581,1.50067,-1|-1,1...

Google Maps API V3: fromContainerPixelToLatLng

I'm currently working on a project that requires that I have a div stacked above a Google Map. However, I need to pass the mousemove event of the div to the Map. To do that, I need to find the LatLng co-ordinates from the map container pixel co-ordinate (since triggering the Maps mousemove event requires the LatLng co-ordinates). Is the...

setSiteRestriction not working on a specific website

On my search I want to filter results to my website, I tried the following: webSearch.setSiteRestriction("orkutmanager.net"); But it doesn't work... If I set it to amazon.com webSearch.setSiteRestriction("amazon.com"); It works. Searching on Google's main page it works normally, e.g. orkut site:orkutmanager.net Is it a bug? Is th...

How can I get google to quickly show new pages on my site?

For example, if you asked a question on yahoo answers, it'd get shown in google results within minutes. For my site, it takes days. ...

Extend google.maps.Map.Class

Hi, I would like to extend google.maps.Map (v3). I have read that the Map-Class implements the MVCObject(). So what i have already done is the following code: function MyMap(id) { google.maps.Map.call(this, document.getElementById(id)); } MyMap.prototype = new google.maps.MVCObject(); Is this the correct way? thx ...