I have created Play Cricket game. MUST VISIT
Android App
https://play.google.com/store/apps/details?id=com.aa.playcricket
Provide your comments/suggestion.
Thank you.
You may not be away of bookmarklets which are an underused tool in web designer or developer’s toolbox. A bookmarklet is a a term that merges bookmark and applet to add functionality to a web browser. They can be stored in the bookmark bar of any browser and used from there to perform useful tasks and consist primarily of Javascript code.
As Javascript is synonymous with web development, some clever developers have created some extremely helpful bookmarklets that can improve your day to day work. Here are ten of the best available.
All web designers and developers should be familiar with Firebug (if for some reason you’re not then go now) and Firebug Lite is a striped down version that works on all browsers. Especially useful for fixing IE issues.
Interesting fact: Firebug inspired the name for Inspect Element.
Enter the name of any selector into the text box and click the MRI button and this bookmarklet will highlight all of those selectors on the page.
Very simple, click on the following links to resize your browser window to these common resolutions. Only works in Firefox but that’s most of you who read Inspect Element.
1024 x 768 | 1280 x 1024 | 1440 x 900 | 1680 x 1050
One of the most useful bookmarklets for development is ReCSS. It reloads the CSS file independent of the HTML which speeds up work considerably when you’re only writing CSS code.
Delicious is one of, if not the most, popular way of saving articles especially in the web design and development community. This bookmarlet provides a quick way to save the current page to Delicious. Give it a go and save this article to Delicious!
Bookmark this page on Delicious
Sure, you can preview edits of HTML text using Firebug or WebKit’s Web Inspector but this bookmarklet turns the whole page into a WYSIWYG editor. Of course these changes aren’t permanent and are only local to your machine but gives you a good idea of what changing content does to the page.
Similar to Firebug Lite in that you can inspect elements on a page but much clearer to see what you have selected. Also seems to be quicker.
Having trouble lining up elements on a page? Andy Budd’s layout grid bookmarklet will come in handy as it overlays a transparent image of a grid, complete with pixel rulers along the X and Y axis.
The Favelet Suite bookmarklet is the Swiss Army knife of the web design bookmarklet world. It includes the following features:

Searching and Installing packaages on Centos
yum search jdk
This will find out all available package with name jdk
yum install java-1.6.0-openjdk
This will install package java-1.6.0-openjdk
To See all running services
ps -Al
ps -a
This is like task manager of windows. It will show all proccess being running in console
Download file/folder from internet
lwp-download http://www.perl.com/CPAN/src/latest.tar.gz
and
wget http://www.perl.com/CPAN/src/latest.tar.gz
This will download latest.tar.gz from given url
Create and Edit file
vi filename
saving file
ESC + : +wq
Quit without saving
ESC + : q!
Creating folder
mkdir foldername
Deleting file
rm filename
rm file1 file2 ------ deleting multiple files at a time
Deleting folder
rm –rf foldername
Open File and See content
cat filename
Finding File
find -name ‘*.txt’
and
locate "*.c" -n 10 ---- -n 10 limit result to 10
Copy file to directory
cp file dir1/dir2
Copy folder to directory
cp –r folder dir1/dir2
Renaming file
mv filename1 filename2
Moving file to directory
mv file dir1/file2
Find all username who has currently login
who
Find username of me
whomi
Send message to other user
write username/ip
Change permission on file
chmod 777 filename
Point Tables
R W X
4 2 1
Owner Group Other
Owner = rwx = 4+2+1=7
Group = rwx = 4+2+1=7
Other = rwx = 4+2+1=7
Text Editor Commads
vi filename
Save changes to buffer
ESC + :w
Save changes and quit vi
ESC +:wq
Save file to new file
ESC +:w filename
Quit without saving
ESC + :q!
Save lines to new file
ESC + :10,15w file
Restarting Server
reboot
start/stop/restart services
service httpd start
service httpd stop
service httpd restart
Stoping firewall
iptables stop