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

Monkey Patching Django Model Class

Django is shipped with some useful application, also there are lots of third party re-usable application written for Django. Sometime you need to modify or customize these applications(Models of application) to meet your software requirements. One of the usual solution is adding a Model class to have a one-to-one relationship with the third party Models. This solution has some disadvantages such as having more tables and classes which can highly adversely affect database performance, scalability and add more complexity to the software development.  I think of another solution to this problem. I used Django South along with monkey patching of third party Model classes. I added a field to Django user class. Here is a walk through over this approach. 1. Add an application: python manage.py startapplication userpatch 2. Add the following  code to add the new field to the user class from django.db import models from django.contrib.auth.models import User ...