Saturday, November 07, 2009
Google development Kit
Tuesday, July 21, 2009
Adsense + Photosense
Saturday, July 18, 2009
Submit your blog to google
Am I a spammer
Sunday, June 28, 2009
Google Street View yes or no
Wanna buy a home?? Go to your garage pick your car and move on to your area. Or you can just log on to Google Street View. Search your new home. Google is making our life easy. But still there is lots of debate about Google Street View. It has already covered the important areas of the world. Pictures of those places are pretty much clear. And don’t be very much astonished if you get yourself on Google Street View. So here is the problem. Legally you can take any picture around the road and use it for your purpose. But if someone’s picture comes up within this there are few issues. Google may have a lot of option on this. May be you can report a particular snap from Google Street View. Regarding all this, the followoing video may be interesting. In this video there are few snaps which really needs a little more consideration.
Saturday, June 27, 2009
Monday, June 01, 2009
This is my Idea for Google...
Sunday, February 01, 2009
The code is very simple.. Just the Google Add scriptlet and then the Sample PHP code from facebook developer. In a whole it looks like below.
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
// Copyright 2007 Facebook Corp. All Rights Reserved.
//
// Application: nothing
// File: 'index.php'
// This is a sample skeleton for your application.
//
echo "This is my FB app";
require_once '/home/da2642e0/facebook/facebook-platform/client/facebook.php';
$appapikey = 'Your App ID';
$appsecret = 'The secret Key';
/*$facebook = new Facebook($appapikey, $appsecret);
$user_id = $facebook->require_login();
// Greet the currently logged-in user!
echo "
Hello,
";
// Print out at most 25 of the logged-in user's friends,
// using the friends.get API method
echo "
Friends:";
$friends = $facebook->api_client->friends_get();
$friends = array_slice($friends, 0, 25);
foreach ($friends as $friend) {
echo "
$friend";
}
echo "
";
?>
