Wednesday, May 26, 2010

www.g??gle.com -- Google secrets



  1.  "xxxx" / will look for the exact phrase. (google isnt case sensitive)
  2.  -x / will search for something excluding a certain term
  3.  filetype:xxx / searches for a particular file extention (exe, mp3, etc)
  4.  -filetype:xxx / excludes a particular file extention
  5.  allinurl:x / term in the url
  6.  allintext:x / terms in the text of the page
  7.  allintitle:x / terms in the html title of that page
  8.  allinanchor:x / terms in the links
How to find Cracks using G??GLE.....

just type 
crack: app name


Tuesday, May 25, 2010

www.g??gle.com -- Google secrets



put these strings in google search:
  1. "parent directory " /appz/ -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
  2. "parent directory " DVDRip -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
  3. "parent directory " Gamez -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
  4. "parent directory " MP3 -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
  5. "parent directory " Name of Singer or album -xxx -html -htm -php -shtml -opendivx -md5 -md5sums

Notice that it only changing the word after the parent directory, change it to what you want and you will get a lot of stuff.

Saturday, May 22, 2010

Add album art to any music folder


There is a coolest features in Windows, which is album thumbnail generator. It automatically places the appropriate album cover art on the folder to which you are copying music (generally in WMA format). 

But what if you have already copied CDs to the hard drive using MP3 format? 
  1. You can download album cover art from sites such as http://www.cdnow.com or http://www.amguide.com, 
  2. Then use the new Windows folder customize feature to display the proper image for each folder.
But this takes time, you have to manually edit the folder properties for every single folder--and you will lose customizations if you have to reinstall the OS.

There's an excellent solution,

When you download the album cover art from the Web, 
  1. Just save the images as folder.jpg each time and place them in the appropriate folder. 
  2. Then, Windows will automatically use that image as the thumbnail for that folder and, best of all, will use that image in Windows Media Player for Windows, if you choose to display album cover art instead of a visualization. And the folder customization is automatic, so it survives an OS re-installation as well. 
Your music folders never looked so good!
Album cover art makes music folder thumbnails look better than ever!

Wednesday, May 19, 2010

WIN XP Tip 01 - Hidden Back-up utility


  1. Insert your windows XP disc into your PC.
  2. Click exit, after installation screen comes up.
  3. Now go to your CD drive in "My Computer". 
  4. Right-click and select open.
  5. Choose VALUE ADD\MSFT\NT BACK-UP FILE.
  6. In the "files of type" drop down list be sure that "select all files" is on.
  7. Click on the NTBACK-UP.msi file and click ok.
  8. Click the finish button.
  9. Go over to the start button\ALL PROGRAMS\ACCESSORIES\SYSTEM TOOLS\ and there it is now.
  10. BACK-UP FILES.

Tuesday, May 18, 2010

What is HACKING???


The term "Hacking" is totally misunderstood word in computer science...

The term "hacking" in the 1980's became a buzzword in the media which was taken to be derogatory and which by misuse and overuse was attached to any form of socially non-acceptable computing activity outside of polite society. Within this context "hackers" were assumed to be the fringe society of the computing fraternity, mainly characterized as "youngsters" who did not know any better and who had obtained access to a technology with which they terrorized the world of communications and computing. To be tagged as a "hacker" was to portray a person as member of a less than acceptable group of near criminals whose activities were not be to be undertaken by the upright citizenry. These connotations are in contrast to the use of the term in the 1950's and 1960's when hackers were at least to be tolerated for their potential, though not necessarily displayed in public.

Only in more recent times has there been a confusion between the terms "hacker", "petty criminal" and possibly "nerd".

taken from --> J.A.N.Lee 1991 January 23 Final Draft

Then what is HACKING???

Hacking is about gaining more knowledge through the use of computers.

Let me share my computer knowledge with you ...

Wednesday, May 12, 2010

Increment / decrement Variable in XSLT

There is no standard way to increment a variable in XSLT. variables in XSLT are immutable (Once a variable has been defined, it cannot be changed). 
instead we can use recursion combined with template parameters can achieve similar results.
here the part of the code i used to do decrement in XSLT.
Using a recursive call-template does the trick..
Basically we call a template from within one template with a parameter that is set
to the beginning of the increment.
call the same template, this time incrementing the value of the included parameter
by whatever you want by adding the necessary arithmetic within the select statemen
t.

Wednesday, May 5, 2010

How to set up Git server on Linux

Step 1: Set up the server

First, if you haven’t done so already, add your public key to the server:
ssh user@server.com mkdir .ssh
scp ~/.ssh/id_rsa.pub user@server.com:.ssh/authorized_keys

and then SSH into our server and install Git:
ssh server.com
sudo apt-get update
sudo apt-get install git-core

or you can install git using tar.bz2 or tar.qz file available in http://git-scm.com/ 

Step 2: Adding a user

So, add a Git user:
sudo adduser git (here "git" is user name of your user account in the Linux machine)

Now you’ll need to add your public key to the Git user’s authorized_keys:
sudo mkdir /home/git/.ssh
sudo cp ~/.ssh/authorized_keys /home/git/.ssh/
sudo chown -R git:git /home/git/.ssh
sudo chmod 700 !$
sudo chmod 600 /home/git/.ssh/*

If this commands not working for you try it to do manually (carefully)

Now you’ll be able to authenticate as the Git user via SSH. Test it out:
ssh git@server.com

Step 3: Add your repositories

If using the Git user, log in as them:
login git

Now we can create our repositories:
mkdir myrepo.git
cd !$
git --bare init    (this creates an empty Git repository)

Step 4: Configure your development machine

First, add the remotes to your local machine.
git remote add origin git@server.com/myrepo.git
git push origin master

If you’ve already defined a remote named origin
git remote rm origin