Archive

Posts Tagged ‘Tips/Tricks’

Getting Visitors IP Address in PHP

Oct 26th, 2009

There are plethora of variables which can hold the Visitor IP address. One such variable is $_SERVER["REMOTE_ADDR"].
REMOTE_ADDR looks more close to our task as it has ‘remote’ inside it. But this variable can hold the private LAN IP address of the client machine’s server network and which is not… READ MORE

Permanent 301 Redirect, using HTML and PHP

Oct 25th, 2009

Yes, its true. You can 301 redirect using META HTML tag according to Sebastian. He says, Yahoo and Google accept it as 301 redirect. Though, it must be least preferred method. Using server side script or Server redirect (apache) is preferred method.
HTML 301 Permanent Redirect:

<html>
<head>
<title> –Title… READ MORE

Hi5 Image Downloader

Oct 13th, 2009

I had few images on Hi5 – a social networking site, I want to download. I had already deactivated the profile. I was not using it, but Thanks to Hi5,Hi5 has reactivated it. Only bad was that my name was search-able even after disabling it.
I had few very important… READ MORE

Images in Gmail’s Email Body

Sep 8th, 2009

Gmail does not allow directly to add insert images on email body. But there is a hack.If you want to insert images from online page then just copy that image. For copy image, right click, and click on View Image or View Background Image.

Now, only a image will be… READ MORE

Get Data from Internet

Aug 23rd, 2009

We are munching data from various sources and we need a way to go this without programming knowledge. Perhaps keeping this in mind, Yahoo has introduced YQL (Yahoo Query Language). It is like SQL where we will issue command for the result.
What is Yahoo Query Language?
The Yahoo! Query… READ MORE

Google Reader adds “Send To” feature

Aug 19th, 2009

Sharing has come to Google feed reader also. You can directlyshare whatever you are reading from feed reader. You may have noticed ‘Send To’ link at the bottom-right. Enjoy!
Read for more: Google Reader adds “Send To” feature

Integrate another Email Account with Gmail Account

Mar 22nd, 2009

Integrating another email account with Gmail is quite easy and free. You can integrate another email account (office account, etc) with google and send the email from gmail as an another account.
This can be useful for many reason. This can help you check your emails on various email account… READ MORE

Increase Ubuntu Performance

Jan 25th, 2009

Ubuntu is already fast but it can be faster. I felt it is not so fast or good in gui when I installed ubuntu on my grand old PC. It was not refreshing the screen properly on mouse movement. and another very bad thing was Firefox title bar was not… READ MORE

Bookmark/Jump in document; Interlink section of the document with different section of another document

Nov 26th, 2008

1) Bookmark/Jump in document
<span id=”a1″>This can be referenced by somewhere (id=1) </span>
For linking to the section in the same document:<a href=”#a1″ rel=”external”>go to section where id is 1. </a>. TestPlease, create a long data document to check the usability of this.
2) Interlink section of the document with… READ MORE

Table’s Width Fixing Hack

Nov 26th, 2008

I wanted to increase the table size (width). The HTML template was being used by many reports. And my report was not coming into the default size of 100%.
100 percent was not the total screen size available to my report. Instead it was wrapped in a fixed width table.… READ MORE