google

Changing embedded google videos src

Im trying to recreate the functionality on google video where you can access certain parts of a video by putting #1h1m1m in the url So i have an embedded google video and links to the right that i want to link to certain times in that video. I can do this with a page refresh but im trying ot do it via javascript so i don't have to. I ...

Access to old, no longer available, Feed entries.

I am working on a project that requires reliable access to historic feed entries not necessarily available in the current feed of the website. I have found several ways to access such data, but none of them give me all the characteristics I need. Look at this as a brainstorm. I will tell you how much I have found and you can contribute ...

google finance - what type of development/lang go into building the site?

I'd like to get into financial programming?, if thats even the correct term. I love the usability of Google finance. What should I learn to get me started on that path. ...

Code to verify updates from the Google Safe Browsing API

In order to verify the data coming from the Google Safe Browsing API, you can calculate a Message Authentication Code (MAC) for each update. The instructions to do this (from Google) are: The MAC is computed from an MD5 Digest over the following information: client_key|separator|table data|separator|client_key. The separator...

Google Calendar like interface

I need to write an application that essentially functions like a week-view of a calendar, columns for the days and then rows for appointments. Where the height of the appointment box visually represents time. In my case, I just don't want the time of day as the vertical axis, I just want hours or mins. The Google AJAX approach is very...

Google Page Rank - New Domain / Link Structure Migration

i've been tasked with re-organizing a pure HTML site into a CMS. if all goes well, the new site will eventually become the main URL, and the old domain will be phased out. the old domain has a decent enough page rank, and the company wishes to mitigate any loss of page rank for that. in looking over the options available, i've discovered...

Is there something like the Google Safe Browsing API that is more stable?

The Google Safe Browsing API allows for URLs to be checked against Google's database of malware and phishing domains. However, on the Developer's Guide page, it says that the API is experimental and the data format is likely to change. Although I have had good experiences with a number of Google's APIs in the past, they have all been fa...

First Google Search Result (SEO?)

When a site gets into the first position of Google's organic search results, Google sometimes renders additional links for the sections of that website. For example, if you search for jQuery, jQuery.com is the first search results. In addition to a link to jQuery.com, the jQuery Documentation, Tutorials, Plugins, Download, Works, Ui, Abo...

Thoughts on Google 20%?

As an interesting motivation technique (usually called Innovation Time Off), all Google engineers are encouraged to spend 20% of their work time (one day per week) on projects that interest them. Does your company offer something similar? Is it a good idea? Should you encourage developers to work on other projects? The company that...

Is there anything like C# (.NET) Library that works as API for Google?

I'd like to write a script to search and analyze results at google.com. Recently, I've been ng looking for Google API but it seems they do not issue it to developers anymore. Is there any (likely free) library for C#(.NET) development that would allow me to search over Google with parameters? Thanks for your response. ...

How does Google Desktop Search manage to stay light and fast?

I always wondered what different methods Google Desktop Search is using so that it uses least CPU and memory while indexing a computer containing more 100,000 files on an average. In just few hours it has indexed the whole system and I did not see it eating up my CPU, memory etc. If any of you have done some research, please do share. ...

What is Google's language of choice?

What is Google's language of choice for backend development on their webapps? For the longest time I have thought it was Python. Is there a definitive source on this? ...

Converting a Google search query to a PostgreSQL "tsquery"

How can I convert a Google search query to something I can feed PostgreSQL's to_tsquery() ? If there's no existing library out there, how should I go about parsing a Google search query in a language like PHP? For example, I'd like to take the following Google-ish search query: ("used cars" OR "new cars") -ford -mistubishi And turn ...

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 the real advantages of using google.load("jquery", "1.2.6") vs. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/lib...

What's wrong with my sitemap?

Hi, We have a sitemap for our site http://www.appsamuck.com/ The sitemap is here http://www.appsamuck.com/sitemap.xml But Google seems to hate it. My question is why? I'm just staring at it now saying to myself it looks right. Am I missing something? 3 Paths don't match We've detected that you submitted your Sitemap using a URL pat...

google analytics tracking in iframe feeding to different partners

our partners sites leverages our iframes in their own websites. I was wondering if there is a way to track the analytics on the iframes. The problem is, if we also utilize these iframes on our own website, how do i avoid duplicate tracking where a visit is counted on our domain's analytics and also counted again in iframes? is there a ...

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 helps. But they must have millions of simultaneous hits to the box sitting on the web that DNS lists as "www.google.com". All of you who have ...

Why doesn't Google index some words on page?

I've created a program in Delphi that uses Google's AJAX Search API to evaluate search phrase occurrences on specific sites, mine included. What surprised me was it doesn't appear Google is indexing some words on my pages, or I am forming my search queries via the API incorrectly. For example the search site:www.delphi.org -"delphi p...

How do I create a Google Sitemap for my ASP.NET website?

I'm using DotNetNuke, so the whole site is basically dynamically driven and I'm clueless to how to go about creating a Google sitemap for it. Any help will be greatly appreciated. Thanks, John ...

Forcing Google Analytics Tracking Code to Sleep

To use Google Analytics, you put some JavaScript code in your web page which will make an asynchronous request to Google when the page loads. From what I have read, this shouldn't block or slow down page load times if you include it directly before the end of your HTML Body. To verify this, I want to make the request after some period ...