google hacks and tricks
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 837
Google Hacks 1.6
Google Hacks is a compact utility for different Google hacks, like a music search and a product key search. more>>
Google Hacks project is a compilation of carefully crafted Google searches that expose novel functionality from Googles search and map services.
For example, you can use it to view a timeline of your search results, view a map, search for music, search for books, and perform many other specific kinds of searches.
<<lessFor example, you can use it to view a timeline of your search results, view a map, search for music, search for books, and perform many other specific kinds of searches.
Download (1.1MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
530 downloads
Google Gears Beta
Google Gears project is an open source Firefox extension that enables web applications to provide offline functionality. more>>
Google Gears project is an open source Firefox extension that enables web applications to provide offline functionality using following JavaScript APIs:
- Store and serve application resources locally
- Store data locally in a fully-searchable relational database
- Run asynchronous Javascript to improve application responsiveness
<<less- Store and serve application resources locally
- Store data locally in a fully-searchable relational database
- Run asynchronous Javascript to improve application responsiveness
Download (0.42MB)
Added: 2007-06-01 License: Freeware Price:
1030 downloads
Google Search 0.1
Google Search is a desktop tool with you can search anything you want on the Google engine direct from your desktop. more>>
Google Search is a desktop tool with you can search anything you want on the Google engine direct from your desktop.
Installation:
To compile use qmake then make
Example:
bash: qmake mio.pro
bash: make
bash: ./mio
It uses firefox only. I will include konqueror in the next update.
Assign it a global shorcut.
<<lessInstallation:
To compile use qmake then make
Example:
bash: qmake mio.pro
bash: make
bash: ./mio
It uses firefox only. I will include konqueror in the next update.
Assign it a global shorcut.
Download (0.010MB)
Added: 2005-12-09 License: GPL (GNU General Public License) Price:
1471 downloads
Google PageRank Check 1.0.1
This allows you to check the Google Page Rank of a domain or website. more>>
Google PageRank Check 1.0.1 will surely help webmaster a lot. It is actually a project which is based on some Public Domain code. Google PageRank Check allows you to check the Google Page Rank of a domain or website.
This script is unique in that it queries multiple data centers for the Google Page Rank. This means that the user can get a full idea of what their Page Rank is, because sometimes Google's Toolbar is lagging behind Data Centres or ahead of them. It is fully configurable and allows the user to add his own data centres to query. This script is for educational purposes only.
Enhancements:
- Checking is done for invalid URLs and for lack of the file() function.
- Other error reporting was added.
- Spelling corrections were made.
Added: 2006-02-28 License: Public Domain Price: FREE
1 downloads
Google Calendar Notifier 2.5.3
Google Calendar Notifier brings you a powerful and extremely useful extension which provides robust notifications and display of your Google Calendars for today, as well as showing any upcoming all day events for tomorrow. more>> <<less
Added: 2008-07-16 License: MPL Price: FREE
1 downloads
Other version of Google Calendar Notifier
License:MPL (Mozilla Public License)
Google Maps Plugin 5.2
Google Maps Plugin is an easy way to embed custom Google Maps on a Web site. more>>
Google Maps Plugin is an easy way to embed custom Google Maps on a Web site. The project includes features such as multiple markers, paths, and general drawings.
If you use WordPress.org blogs, you will be able to install this software easily as a WP plugin.
<<lessIf you use WordPress.org blogs, you will be able to install this software easily as a WP plugin.
Download (0.019MB)
Added: 2007-05-22 License: GPL (GNU General Public License) Price:
897 downloads
Net::Google::Calendar 0.5
Net::Google::Calendar is a programmatic access to Googles Calendar API. more>>
Net::Google::Calendar is a programmatic access to Googles Calendar API.
SYNOPSIS
my $cal = Net::Google::Calendar->new( url => $url );
$cal->login($u, $p);
for ($cal->get_events()) {
print $_->title."n";
print $_->content->body."n*****nn";
}
my $entry = Net::Google::Calendar::Entry->new();
$entry->title($title);
$entry->content("My content");
$entry->location(London, England);
$entry->transparency(transparent);
$entry->status(confirmed);
$entry->when(DateTime->now, DateTime->now() + DateTime::Duration->new( hours => 6 ) );
my $author = Net::Google::Calendar::Person->new();
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);
my $tmp = $cal->add_entry($entry);
die "Couldnt add event: $@n" unless defined $tmp;
print "Events=".scalar($cal->get_events())."n";
$tmp->content(Updated);
$cal->update_entry($tmp) || die "Couldnt update ".$tmp->id.": $@n";
$cal->delete_entry($tmp) || die "Couldnt delete ".$tmp->id.": $@n";
<<lessSYNOPSIS
my $cal = Net::Google::Calendar->new( url => $url );
$cal->login($u, $p);
for ($cal->get_events()) {
print $_->title."n";
print $_->content->body."n*****nn";
}
my $entry = Net::Google::Calendar::Entry->new();
$entry->title($title);
$entry->content("My content");
$entry->location(London, England);
$entry->transparency(transparent);
$entry->status(confirmed);
$entry->when(DateTime->now, DateTime->now() + DateTime::Duration->new( hours => 6 ) );
my $author = Net::Google::Calendar::Person->new();
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);
my $tmp = $cal->add_entry($entry);
die "Couldnt add event: $@n" unless defined $tmp;
print "Events=".scalar($cal->get_events())."n";
$tmp->content(Updated);
$cal->update_entry($tmp) || die "Couldnt update ".$tmp->id.": $@n";
$cal->delete_entry($tmp) || die "Couldnt delete ".$tmp->id.": $@n";
Download (0.008MB)
Added: 2006-11-25 License: Perl Artistic License Price:
1063 downloads
google-gflags 0.1
google-gflags (gflags) project contains a library that implements commandline flags processing. more>>
google-gflags (gflags) project contains a library that implements commandline flags processing.
As such its a replacement for getopt(). It has increased flexibility, including built-in support for C++ types like string, and the ability to define flags in the source file in which theyre used.
<<lessAs such its a replacement for getopt(). It has increased flexibility, including built-in support for C++ types like string, and the ability to define flags in the source file in which theyre used.
Download (0.056MB)
Added: 2006-12-21 License: BSD License Price:
1038 downloads
Net::Google::Calendar::Entry 0.5
Net::Google::Calendar::Entry is an entry class for Net::Google::Calendar. more>>
Net::Google::Calendar::Entry is an entry class for Net::Google::Calendar.
SYNOPSIS
my $event = Net::Google::Calendar::Entry->new();
$event->title(Party!);
$event->content(P-A-R-T-Why? Because we GOTTA!);
$event->location("My Flat, London, England");
$event->status(confirmed);
$event->transparency(opaque);
$event->visibility(private);
my $author = Net::Google::Calendar::Person->new;
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);
<<lessSYNOPSIS
my $event = Net::Google::Calendar::Entry->new();
$event->title(Party!);
$event->content(P-A-R-T-Why? Because we GOTTA!);
$event->location("My Flat, London, England");
$event->status(confirmed);
$event->transparency(opaque);
$event->visibility(private);
my $author = Net::Google::Calendar::Person->new;
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);
Download (0.009MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1063 downloads
Google::Adwords::AccountService 0.6.0
Google::Adwords::AccountService is a Perl module to interact with the Google Adwords AccountService API calls. more>>
Google::Adwords::AccountService is a Perl module to interact with the Google Adwords AccountService API calls.
SYNOPSIS
use Google::Adwords::AccountService;
use Google::Adwords::AccountInfo;
use Google::Adwords::CoverageType;
use Google::Adwords::EmailPromotionsPreferences;
use Google::Adwords::CreditCard;
use Google::Adwords::Address;
my $service = Google::Adwords::AccountService->new();
# login to the Adwords server
$service->email($email)
->password($password)
->clientEmail($cemail)
->applicationToken($app_token)
->developerToken($dev_token);
# getAccountInfo
my $account = $service->getAccountInfo();
print "currencyCode : " . $account->currencyCode . "n";
print "descriptiveName : " . $account->descriptiveName . "n";
# getClientAccounts
my @emailaccounts = $service->getClientAccounts();
print "getClientAccounts : " . join(|, @emailaccounts) . "n";
# getCreditCard
my $creditcard = $service->getCreditCard();
# setLoginInfo
my $ret_setlogininfo= $service->setLoginInfo(email@example.com, toto);
# setLocalTimezone to brrr ...
my $ret_setlocaltimezone = $service->setLocalTimezone(America/Anchorage);
# setCreditCard
my $cc = Google::Adwords::CreditCard->new
->cardNumber(12345678912346)
->cardType(VISA)
->cardVerificationNumber(123)
->expirationMonth(1)
->expirationYear(2008);
my $addr = Google::Adwords::Address->new
->addressLine1(down the street)
->city(Paris)
->companyName(Up there)
->countryCode(FR)
->emailAddress(me@example.com)
->name(Up there)
->phoneNumber(+33112345678)
->postalCode(75020);
my $ret_setcreditcard = $service->setCreditCard($cc, $addr);
# createAdWordsAccount
my $emailPrefs = Google::Adwords::EmailPromotionsPreferences->new
->marketResearchEnabled(1)
->newsletterEnabled(1)
->promotionsEnabled(0);
my $covType = Google::Adwords::CoverageType->new
->optInContentNetwork(0)
->optInSearchNetwork(1);
my $ret = $service->createAdWordsAccount({
loginEmail => $loginEmail,
password => $password,
languagePreference => $lgPref,
emailPrefs => $emailPrefs,
currencyCode => $curCode,
cardInfo => $creditcard,
contactInfo => $address,
defaultAdsCoverage => $covType,
timeZoneId => $timeZoneId
});
# updateAccountInfo
$account->primaryBusinessCategory(Advertising, Marketing, SEO);
my $ret_updateaccountinfo = $service->updateAccountInfo($account);
This module provides an interface to the Google Adword AccountService API calls.
<<lessSYNOPSIS
use Google::Adwords::AccountService;
use Google::Adwords::AccountInfo;
use Google::Adwords::CoverageType;
use Google::Adwords::EmailPromotionsPreferences;
use Google::Adwords::CreditCard;
use Google::Adwords::Address;
my $service = Google::Adwords::AccountService->new();
# login to the Adwords server
$service->email($email)
->password($password)
->clientEmail($cemail)
->applicationToken($app_token)
->developerToken($dev_token);
# getAccountInfo
my $account = $service->getAccountInfo();
print "currencyCode : " . $account->currencyCode . "n";
print "descriptiveName : " . $account->descriptiveName . "n";
# getClientAccounts
my @emailaccounts = $service->getClientAccounts();
print "getClientAccounts : " . join(|, @emailaccounts) . "n";
# getCreditCard
my $creditcard = $service->getCreditCard();
# setLoginInfo
my $ret_setlogininfo= $service->setLoginInfo(email@example.com, toto);
# setLocalTimezone to brrr ...
my $ret_setlocaltimezone = $service->setLocalTimezone(America/Anchorage);
# setCreditCard
my $cc = Google::Adwords::CreditCard->new
->cardNumber(12345678912346)
->cardType(VISA)
->cardVerificationNumber(123)
->expirationMonth(1)
->expirationYear(2008);
my $addr = Google::Adwords::Address->new
->addressLine1(down the street)
->city(Paris)
->companyName(Up there)
->countryCode(FR)
->emailAddress(me@example.com)
->name(Up there)
->phoneNumber(+33112345678)
->postalCode(75020);
my $ret_setcreditcard = $service->setCreditCard($cc, $addr);
# createAdWordsAccount
my $emailPrefs = Google::Adwords::EmailPromotionsPreferences->new
->marketResearchEnabled(1)
->newsletterEnabled(1)
->promotionsEnabled(0);
my $covType = Google::Adwords::CoverageType->new
->optInContentNetwork(0)
->optInSearchNetwork(1);
my $ret = $service->createAdWordsAccount({
loginEmail => $loginEmail,
password => $password,
languagePreference => $lgPref,
emailPrefs => $emailPrefs,
currencyCode => $curCode,
cardInfo => $creditcard,
contactInfo => $address,
defaultAdsCoverage => $covType,
timeZoneId => $timeZoneId
});
# updateAccountInfo
$account->primaryBusinessCategory(Advertising, Marketing, SEO);
my $ret_updateaccountinfo = $service->updateAccountInfo($account);
This module provides an interface to the Google Adword AccountService API calls.
Download (0.041MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1070 downloads
Net::Google::Search 1.0.1
Net::Google::Search is a simple OOP-ish interface to the Google SOAP API for searching. more>>
Net::Google::Search is a simple OOP-ish interface to the Google SOAP API for searching.
SYNOPSIS
use Net::Google::Search;
my $search = Net::Google::Search->new(%args);
$search->query(qw(aaron cope));
map { print $_->title()."n"; } @{$search->results()};
# or
foreach my $r (@{$search->response()}) {
print "Search time :".$r->searchTime()."n";
# returns an array ref of Result objects
# the same as the $search->results() method
map { print $_->URL()."n"; } @{$r->resultElement()}
}
Provides a simple OOP-ish interface to the Google SOAP API for searching.
This package is used by Net::Google.
<<lessSYNOPSIS
use Net::Google::Search;
my $search = Net::Google::Search->new(%args);
$search->query(qw(aaron cope));
map { print $_->title()."n"; } @{$search->results()};
# or
foreach my $r (@{$search->response()}) {
print "Search time :".$r->searchTime()."n";
# returns an array ref of Result objects
# the same as the $search->results() method
map { print $_->URL()."n"; } @{$r->resultElement()}
}
Provides a simple OOP-ish interface to the Google SOAP API for searching.
This package is used by Net::Google.
Download (0.017MB)
Added: 2006-11-20 License: Perl Artistic License Price:
1069 downloads
Plone Google Sitemaps 0.5
Plone Google Sitemaps is a product which allows Plone websites to get better visibility for Google search engine. more>>
Plone Google Sitemaps is a product which allows Plone websites to get better visibility for Google search engine.
The product allows Plone websites to get better visibility for Google search engine by providing it with complete listing of URLs to website content.
What is Google Sitemaps
Google Sitemaps program allow webmasters and site owners to feed it pages theyd like to have included in Googles web index. Participation is free. Inclusion isnt guaranteed, but Googles hoping the new system will help it better gather pages than traditional crawling alone allows. Feeds also let site owners indicate how often pages change or should be revisited.
Usage
Install with Quick Installer.
Go to Google Sitemaps and add http://your.site/google-sitemaps.
Should be working without any intervention.
Enhancements:
- Fix up bug in sed command s
<<lessThe product allows Plone websites to get better visibility for Google search engine by providing it with complete listing of URLs to website content.
What is Google Sitemaps
Google Sitemaps program allow webmasters and site owners to feed it pages theyd like to have included in Googles web index. Participation is free. Inclusion isnt guaranteed, but Googles hoping the new system will help it better gather pages than traditional crawling alone allows. Feeds also let site owners indicate how often pages change or should be revisited.
Usage
Install with Quick Installer.
Go to Google Sitemaps and add http://your.site/google-sitemaps.
Should be working without any intervention.
Enhancements:
- Fix up bug in sed command s
Download (0.013MB)
Added: 2007-03-28 License: ZPL (Zope Public License) Price:
943 downloads
Net::Google::Service 1.0.1
Net::Google::Service is a SOAP widget(s) for Net::Google. more>>
Net::Google::Service is a SOAP widget(s) for Net::Google.
SYNOPSIS
use Net::Google::Service;
my $search = Net::Google::Service->search({debug=>1});
PACKAGE METHODS
__PACKAGE__->search(%args)
__PACKAGE__->spelling(%args)
__PACKAGE_->cache(%args)
<<lessSYNOPSIS
use Net::Google::Service;
my $search = Net::Google::Service->search({debug=>1});
PACKAGE METHODS
__PACKAGE__->search(%args)
__PACKAGE__->spelling(%args)
__PACKAGE_->cache(%args)
Download (0.017MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1061 downloads
WWW::Google::PageRank 0.12
WWW::Google::PageRank is a Perl module to query google pagerank of page. more>>
WWW::Google::PageRank is a Perl module to query google pagerank of page.
SYNOPSIS
use WWW::Google::PageRank;
my $pr = WWW::Google::PageRank->new;
print scalar($pr->get(http://www.yahoo.com/)), "n";
The WWW::Google::PageRank is a class implementing a interface for querying google pagerank.
To use it, you should create WWW::Google::PageRank object and use its method get(), to query page rank of URL.
It uses LWP::UserAgent for making request to Google.
<<lessSYNOPSIS
use WWW::Google::PageRank;
my $pr = WWW::Google::PageRank->new;
print scalar($pr->get(http://www.yahoo.com/)), "n";
The WWW::Google::PageRank is a class implementing a interface for querying google pagerank.
To use it, you should create WWW::Google::PageRank object and use its method get(), to query page rank of URL.
It uses LWP::UserAgent for making request to Google.
Download (0.004MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1070 downloads
Geo::Google::Location 0.02
Geo::Google::Location is a geographical point. more>>
Geo::Google::Location is a geographical point.
SYNOPSIS
use Geo::Google::Point;
# you shouldnt need to construct these yourself,
# have a Geo::Google object do it for you.
OBJECT METHODS
Geo::Google::Location objects provide the following accessor methods
Method Description
------ -----------
icon an icon to use when drawing this point.
id a unique identifier for this point.
infostyle unknown function.
latitude latitude of the point, to hundred-thousandth degree precision.
lines a few lines describing the point, useful as a label
longitude longitude of the point, to hundred-thousandth degree precision.
title a concise description of the point.
toString a method that renders the point in Google Maps XML format.
<<lessSYNOPSIS
use Geo::Google::Point;
# you shouldnt need to construct these yourself,
# have a Geo::Google object do it for you.
OBJECT METHODS
Geo::Google::Location objects provide the following accessor methods
Method Description
------ -----------
icon an icon to use when drawing this point.
id a unique identifier for this point.
infostyle unknown function.
latitude latitude of the point, to hundred-thousandth degree precision.
lines a few lines describing the point, useful as a label
longitude longitude of the point, to hundred-thousandth degree precision.
title a concise description of the point.
toString a method that renders the point in Google Maps XML format.
Download (0.010MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1062 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above google hacks and tricks search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed