google

Software alternatives to Google Search Appliance (GSA)

I am interested in software alternatives to the Google Search Appliance (GSA) for use in a (large) university context. Has anyone experiences of migrating from GSA to an alternative solution? If so, what were the reasons for doing this (technical, financial, staff effort, etc) and have the experiences been positive? ...

iPhone App Google Analytics

I am having issues setting up Google Analytics for my iPhone Application. I have a website that I have sucesfully been using Google Analytics on, and so I am pretty familiar with how it works. I set up a new fake domain with the following formation: myapp.mysite.com. I got the UA ID that was made and used that as shown below. In my iPh...

Getting implicit property names on a db.Model in Google App Engine?

How can I get access to the implicit property names of a db.Model in Google App Engine? In particular, assume I have the following: class Foo(db.Model): specific = db.IntegerProperty() class Bar(db.Model): foo = db.ReferenceProperty(Foo, collection_name = "bars") if I attempt to get the property names on Foo, like so: my_foo = ...

How do I track Fancybox clicks in Google Analytics?

I have a page with 24 links that each open up a .html file in a modal window with Fancybox, and each .html file has a video embedded in it. How do I track to see who is opening which videos? ...

How Do I Add A Push Pin

Hi, I have created a map to a location following this tutorial Here But no matter what I do I cannot add the push pin, when I get to here "To add a marker to the map, you first need to define a class that extends the Overlay class:" I get stuck, I have tried to add a MapOverlay following the HelloGoogleMaps tutorial on android develop...

Help with Google Bookmarks search skills

Google Bookmarks is a good tools for me,but sometimes i need search tags , the query words should be like this: label:php if I need to search for more tag,how to input the query words ? label:php and javascript?? ...

How Google Books and Google Docs Viewer Work?

Guys, Google Books Viewer and Docs Viewer are driving me crazy, do you know how they are working PLEASE? For example: Google Docs Viewer: http://docs.google.com/viewer?url=http://labs.google.com/papers/bigtable-osdi06.pdf It seems that books/docs are stored/being converted to IMAGES, you can know this by righting click a page and then ...

key_name and entities groups

Can i have two entities in the same model , but in different entities groups, with the same key_name? Thank Joel ...

reading Google calendar values

I have set an event successfully using myEntry.setTitle(new PlainTextConstruct("TEST")) myEntry.setContent(new PlainTextConstruct("See how much text will fit in there")) Then I have successfully read the event record. This works myTitle = ret.getTitle().getPlainText() But this throws an error myTitle = ret.getContent().getPlainTe...

Make a POST request

I would like to know how to make a HTTP POST request like it's described there http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#UploadingMetadata (Creating an empty document). My code looks like this: <?php $headers = array( "POST /feeds/default/private/full HTTP/1.1", "Host: docs.google.com", "...

Zend Gdata export files

Hey guys need some help. With your help I figured out how to upload files, but now I need to learn how to export them from my google docs directory to my web site. All I know is the name of file I want to download. Can you help me with the class?... ...

Iphone , how to read mp3 google tts in iPhone

I use the sample code in this link http://cocoawithlove.com/2009/06/revisiting-old-post-streaming-and.html its work for all http link mp3 file but its not work for @"http://translate.google.com/translate_tts?q="; because it is html 5 page can i help me please for read this link ...

List of websites

Is there a way to get the url's of google results on big scale? So instead of 10 results 100 or 1000? (example: http://goohackle.com/tools/google-parser/) ...

GWT getting RPC StatusCodeException when deploying from a MAC

Ive successfully run and deploy a google appengine app from a windows machine for months. Now i on a mac and my app works fine running locally (both in hosted mode and compiled mode). However, after doing a mvn gae:deploy my app starts spitting out RPC StatusCodeExceptions through javascript only. There is no exception on the Server side...

Python: Google Checkout Signature Function

I am attempting to integrate Google Checkout into my website. I have created the following function for generating the hmac-sha-1 signature requred: def make_signature(cart_xml): import hmac import hashlib import base64 # The number is a psuedo-merchantID, cart_xml contains a string with the # shopping cart xml as o...

How to display the direction properly by bounding the map with 2 cities with google map in Qt?

Hi, I have tried with the following code to properly display the direction line between 2 cities, however the line between 2 cities is not properly set. If distance between 2 cities is long enough then one city icon is displayed and to get see the other city icon displayed on the map, I have to go to the place. please check the code be...

Is there a Google Search API I can call, server-side, no strings attached?

I would like to use Google Search to power my site search, without having to use Google-supplied JavaScript or overly-specific (if they need me to say “Powered by Google,” that’s fine). I don’t want to send users to Google’s domain, and I don’t want them to see a Google Custom Search logo. Is there an API for this? ...

Controlling tabs in a Chrome extension

Hi, I am new to the world of creating Chrome extensions. My extension will not require any type of UI. I would like the extension to run in the background and take note whenever a new tab is created and when a tab is closed. Later on I'd like the extension to do other things but I'll be happy with just receiving tab "close" and tab "...

SQL Search Statement like Google?

Is there some kind of SQL Statement that I can used to do a search on 1 Column in my table that is similar to what I am looking for. Like if I am looking for something to do with a "Car" but I spell it as "Kar" it must return items of "car". Or If I am looking for "My Company" and I spell it as "MyCompany" it must still retun "My Com...

RootPane.get("something") with GWT Designer

I've been working a little with GWT and I managed to do some small aplications. But now I started playing with GWT Designer, there is a little thing that I just couldn´t acomplish yet. When working with standard gwt, if I want to add some control or element, I just write this: RootPane.get("something").add(somePanel); And gwt render...