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 …
read onThis is the script for sandeep when he asked me how to delete a directory in perl. rmdir function only removes empty directories. So we need to remove the contents of the directory before removing the directory. So if the directory contains more directories / …
read onThis is a tool, I wrote for my Main Project a while back so I thought of putting it up here. The suite imtool was written to convert JPEG file to a RAW format for use with FPGA.
The imtool utility can do much more …
read on
#!/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 < ~/temp.bashrc
mv ~/.bashrc ~/.bashrc.old
mv ~/temp.bashrc ~/.bashrc …
read on
Go is a new language from Google, and here is the first step to learn it:
File : hello.go
package main
import "fmt"
func main() {
fmt.Printf("Hello World !!! \n")
}
8g hello.go
8l hello.8
./8.out
Hello …
read on
This is an application that takes screenshots of websites. It can take screenshots as rendered by both Internet explorer and Mozilla Firefox, which currently is not supported by any of the softwares out there. This is a software that is an HTML to JPEG, HTML …
read onA reference to 'XXXXX.dll' could not be added. A reference to the component 'XXXXX.dll' already exists in the project.
This occurs when you add 2 versions of the same dll into your project. Before adding a reference to a new DLL you have to remove …
read onSo when I was sitting idle, moosa asked me how to add dynamic textboxes into a form without loosing values of the form values on the previous textboxes.
So I thought of documenting the method here just in case anyone of you might want this. …
read onDoes this window appear when you open CHM files ?
This happend to me after upgrading to Internet Exporer 7.
If you are wondering why you cant read the CHM files, just do the steps below :
Ubuntu 9.10 ships with the new GRUB (Grand Unified Boot Loader 1.97 beta) in plain words its the software that boots the operating system you choose when you boot the computer. In earlier versions of Ubuntu / Grub to change the menu on the grub …
read onGoogle 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 …
read onNowadays most camera's produce so big photos like you could make a big banner with those. Inorder to upload photos to web to photo sharing services like Flickr or Picasa, or Social Networking sites such as Orkut and Facebook, we should reduce the image resolution …
read on