Skip to main content

Google search tricks

1)Find any album:In this trick you no need to struggle for long keywords entering in google search. Following google search trick will takes you to your destination.
Open www.google.com
Put the string as shown below in google search :
?intitle:index.of? mp3
Your job is add song/album/artist/singer
For example :
?intitle:index.of? mp3 justin timberlake 
2) Find Key for any software, games etc:
Well this is a cute google search trick. Just enter the code below in google search.
94FBR : your software name
In place of “your software name “ enter the software or game name which you have required.
3) Open www.google.com
Enter the string which is shown below
inurl:Mcft filetype:iso
Now change the string in search to exactly what you desire. for example Mcft to Ad@be, ISO to zip/rar and so on.
4)How to open hidden links in google?? Well google will not display few links even though they are indexed in google.
Just enter the strings below which can open hidden links in google search.
“parent directory ” Gamez -xxx -html -htm -php -shtml -opendivx -md5 -md5sums

“parent directory ” MP3 -xxx -html -htm -php -shtml -opendivx -md5 -md5sums

“parent directory ” Name of artist or album -xxx -html -htm -php -shtml -opendivx -md5 -md5sums

“parent directory ” /appz/ -xxx -html -htm -php -shtml -opendivx -md5 -md5sums

“parent directory ” DVDRip -xxx -html -htm -php -shtml -opendivx -md5 -md5sums

“parent directory “Xvid -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
Now enter search phrase for every parent directory? change, and you can use whatever phrase or word that suits you and a lot of otherwise hidden links will turn up.
5)Open secret sites which you desire:
Many search engines will not allow hidden files and articles. These websites can be seen using robots.text This is a great trick which you can open hidden websites and articles.
Open www.google.com
Just enter the string as given below
“robots.txt” “disallow:” filetype:txt
You will find the robots.txt file from sites that uses disallow command in it.
Now you can open hidden texts in few websites.

6)Google calculator:
Every operating system has calculator which is inbuild. Some times you feel lazy to open your inbuild calculator. This is a simple google search trick where you can do calculations by just entering what you required. This is simply amazing stuff accomplished by Google.
for example : open www.google.com
type in google search as 100 + 500 - 100 = and press search button.
7)Logarithm Functions:
To calculate logarithm base 10 values, type log (100) in search box and press search button to show the result.

8)Currency Conversion
To convert the 100 USD in British pounds, type 100 USD in British pounds and press search button to show the result.
Google can do all the below calculations.
(simple Arithmetic function, Trigonometric, Inverse trigonometric, Hyperbolic and Logarithm functions).
9)Definitions: Frankly speaking there is no need to open dictionary or dictionary websites. Google itself acts as dictionary. Well you can search definitions as just shown below.
define: keyword
in place of keyword enter the meaning which you required.
10) Few important syntax are shown below:
Open www.google.com and type
Population country name
In place of country name type which country you required.
from iranproud.

Comments

Popular posts from this blog

Installing MS SQL Server driver on Ubuntu Linux

Although making a connection to SQL Server can be done using unixODBC and FreeTDS, it does not work with some collations on SQL Server 2008. Recently, Microsoft released an ODBC driver for Linux that works on 64-bit systems only. Installing the driver is tricky. I begin by installing the build-essential, which is required for compiling from source. Checkinstall can be installed if you want to add the following application to the package manager. $ sudo apt-get install build-essential  Download unixODBC-2.3.0  and Microsoft ODBC dirver  and extract. $ sudo wget ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.0.tar.gz $ tar xvf unixODBC-2.3.0.tar.gz $ wget http://download.microsoft.com/download/6/A/B/6AB27E13-46AE-4CE9-AFFD-406367CADC1D/Linux6/sqlncli-11.0.1790.0.tar.gz $ tar xvf sqlncli-11.0.1790.0.tar.gz  Install the unixodbc using the following commands: $ ./configure --disable-gui --disable-drivers --enable-iconv --with-iconv-char-enc=UTF8 --with-ico...

Installing pyodbc on ubuntu

Installing pyodbc is straight forward but if  getting     "error: command 'gcc' failed with exit status 1"  when installing pyodbc, make sure you have installed  requirements  as below. sudo apt-get install unixODBC-dev g++ pip install pyodbc

Installing Django on IIS 7 Using PyISAPIe

PyISAPIe is an ISAPI extension which can be downlod from here . Download the latest extension according to installed python version. Just make sure that ISAPI and ISAPI filters has been installed on IIS (During IIS installation these two component should have checked). Copy PyISAPIe.dll file and Http folder into your Django website project.Example: Suppose your website folder path is: "C:\Python25\Lib\site-packages\MySite" "C:\Python25\Lib\site-packages\MySite\PyISAPIe.dll" and "C:\Python25\Lib\site-packages\MySite\Http" will be the result. Copy and replace the isap.py from "PyISAPIe\Examples\Django" folder to "C:\Python25\Lib\site-packages\MySite\Http" IIS need to have access to your project folder and also django folder. so you need to give access "Network Service" to these folder. Right click on site folder "C:\Python25\Lib\site-packages\MySite"  click on properties. On properties window choose the sec...