Google

Google search goes social with Social Search Results - The Facebook effect ?

2010
11
May

The following is the screenshot of Google Search result page when searched for something my friend has blogged on.

Google Social Results

Is google moving towards a social networking side ?
Google is slowly adding the "Social" aspect to all its products. After launching Buzz on Gmail, "Social Results" aspect in "Google Search" results too reveals this trend.

Read More

Installing Google Chrome on Ubuntu 9.10

2009
09
Dec

Google Chrome on Linux Ubuntu

Installation

Click Here to install Google Chrome on Ubuntu.



How to Integrate another Website to Google Analytics Tracking and Adsense

2009
30
Nov

This was supposed to be obvious, but I couldnt find easily how to integrate Google Adsense and Analytics to track your Adsense Ad performance on google analytics. Make sure you display ads on your page and the analytics tracking code. Make sure you have linked the adsense and analytics together before doing this. The following is to add one more site to track adsense.

And then Getting straight to the answer, put the following script on the head.

<script type="Text/javascript">window.google_analytics_uacct = "UA-XXXXXX-X";</script>

Read More

Installing Google Go on Linux Ubuntu

2009
22
Nov
3

One command install, Bash script to install Google Go in one Go

#!/bin/bash
ARCH=386 #CHANGE this setting to amd64 if you are on 64 bit.
sudo apt-get install bison make gcc libc6-dev ed mercurial
{
cat ~/.bashrc; cat <<EOF
export GOROOT=$HOME/go
export GOARCH=$ARCH
export GOOS=linux
export GOBIN=$HOME/gobin
export PATH=$PATH:$GOBIN
EOF
}  > ~/temp.bashrc
 
mv ~/.bashrc ~/.bashrc.old
mv ~/temp.bashrc ~/.bashrc
 
export GOROOT=$HOME/go
export GOARCH=$ARCH
export GOOS=linux
export GOBIN=$HOME/gobin
export PATH=$PATH:$GOBIN
 
mkdir $GOBIN
hg clone -r release https://go.googlecode.com/hg/ $GOROOT
cd $GOROOT/src
./all.bash

Read More

Google Go HelloWorld Example Program

2009
22
Nov

code

File : hello.go

package main
import "fmt"
 
func main() {
	fmt.Printf("Hello World !!! \n")
}

Compiling & Running

 8g hello.go 
 8l hello.8
 ./8.out

Output

Hello World !!!

(Obviously Grinning )



Optimize Javascript files with Google Closure compiler

2009
06
Nov

Google has released / open sourced one of its internal tools, the javascript closure compiler. The closure compiler is used to optimize javascript files. It works by analyzing the code and removing redundancies and shortening variable names.
This tool can be used to compress javascript files, (similar to the famous packer), results in lesser code to download, execute, obfuscation and faster user experience.

Read More

Syndicate content