background img

The New Stuff

MATRIX Effect Using Notepad


It is a bat file trick to perform a Matrix Effect . So open up your notepad and get started.


 1. Open Notepad and copy below code.

@echo off
color 0A
:A
echo b r E w e 4 e T r 8 M e F r a c h a S t 3 D a C r a s p e s T e 4 h 2 w r e G 2
ping -w .9 >nul
echo R E 9 8 8 R a t r e g 6 n u m A b R E X e Y A T u C 7 a D R a c r u C e B E p e
ping -w .9 >nul
echo c E B E s A d R u B R 3 H e R u D 7 g u d U 7 T a b u T 5 e p E 2 a v e 6 8 a Z
ping -w .9 >nul
echo n u r A X a j a s t a 9 h a 6 e h e G a s u t r a t r A y a f E q u 8 u b R u d
ping -w .9 >nul
echo k u v e 4 E 6 3 e t r a d r e f e y e q e 6 U H e z U b r u R a s 2 4 3 r A N a
ping -w .9 >nul
echo v u P R a b R u c e d U s w a h a c r a t h U 7 r a h u t u h u V e 7 U k u S a
ping -w .9 >nul
echo T e D r e 8 A p r a d a b u f U c u c E h E t 7 c r 5 s P a f r e t h u t 9 u t   
ping -w .9 >nul
echo b R u G e p a R e s a P H e P a 2 U d 4 P r e F A b a t h a t h U s w a d R U d
ping -w .9 >nul
echo v U Y a C R e T R 9 k u b e D r a T 6 u j e 5 2 4 e B a f 2 u b 5 w A p a y U Y
ping -w .9 >nul
echo b r E w e 4 e n r 8 M e F r a c h a S t 3 D a C r a s p e s T e 4 a 2 w r e G 2
ping -w .9 >nul
echo k u v e 4 E 6 3 e t r a d r e f e y e q e 6 U H e z U b r u R a s 2 4 3 r A N a
ping -w .9 >nul
echo v u P R a b s u c e d U s w a 3 a c r a t h U 7 r a k u t u h u V e 7 U k u S a
ping -w .9 >nul
echo n u r A X a j a s t a 9 h a 6 e h e G a s u t r a t r A y a f E q u 8 u b u u d
ping -w .9 >nul
goto A


  2. Save the file as matrix.bat  (.bat is must)
  3. Done enjoy !!

MATRIX Effect Using Notepad

MATRIX Effect Using Notepad


It is a bat file trick to perform a Matrix Effect . So open up your notepad and get started.


 1. Open Notepad and copy below code.

@echo off
color 0A
:A
echo b r E w e 4 e T r 8 M e F r a c h a S t 3 D a C r a s p e s T e 4 h 2 w r e G 2
ping -w .9 >nul
echo R E 9 8 8 R a t r e g 6 n u m A b R E X e Y A T u C 7 a D R a c r u C e B E p e
ping -w .9 >nul
echo c E B E s A d R u B R 3 H e R u D 7 g u d U 7 T a b u T 5 e p E 2 a v e 6 8 a Z
ping -w .9 >nul
echo n u r A X a j a s t a 9 h a 6 e h e G a s u t r a t r A y a f E q u 8 u b R u d
ping -w .9 >nul
echo k u v e 4 E 6 3 e t r a d r e f e y e q e 6 U H e z U b r u R a s 2 4 3 r A N a
ping -w .9 >nul
echo v u P R a b R u c e d U s w a h a c r a t h U 7 r a h u t u h u V e 7 U k u S a
ping -w .9 >nul
echo T e D r e 8 A p r a d a b u f U c u c E h E t 7 c r 5 s P a f r e t h u t 9 u t   
ping -w .9 >nul
echo b R u G e p a R e s a P H e P a 2 U d 4 P r e F A b a t h a t h U s w a d R U d
ping -w .9 >nul
echo v U Y a C R e T R 9 k u b e D r a T 6 u j e 5 2 4 e B a f 2 u b 5 w A p a y U Y
ping -w .9 >nul
echo b r E w e 4 e n r 8 M e F r a c h a S t 3 D a C r a s p e s T e 4 a 2 w r e G 2
ping -w .9 >nul
echo k u v e 4 E 6 3 e t r a d r e f e y e q e 6 U H e z U b r u R a s 2 4 3 r A N a
ping -w .9 >nul
echo v u P R a b s u c e d U s w a 3 a c r a t h U 7 r a k u t u h u V e 7 U k u S a
ping -w .9 >nul
echo n u r A X a j a s t a 9 h a 6 e h e G a s u t r a t r A y a f E q u 8 u b u u d
ping -w .9 >nul
goto A


  2. Save the file as matrix.bat  (.bat is must)
  3. Done enjoy !!

Keyboard LED light Dancing Trick


It will let your keyboard led light to dance. Basically we will be creating a vbscript to make caps lock, num lock and scroll lock to perform this trick. So lets get started.

How To Make Keyboard LED Dance ?

   1. Open Notepad and copy below codes into it.

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop 

    2. Then save this file as led.vbs (.vbs is must)
    3. Open your save file and see your keyboard led blinking lights.

How To Disable Blinking LED ?

       1. First open Task Manager (ctrl+alt+del)
       2. Then Go to process tab.
       3. Select wscript.exe 
       4. Click on End process.

Keyboard LED light Dancing Trick

Keyboard LED light Dancing Trick


It will let your keyboard led light to dance. Basically we will be creating a vbscript to make caps lock, num lock and scroll lock to perform this trick. So lets get started.

How To Make Keyboard LED Dance ?

   1. Open Notepad and copy below codes into it.

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop 

    2. Then save this file as led.vbs (.vbs is must)
    3. Open your save file and see your keyboard led blinking lights.

How To Disable Blinking LED ?

       1. First open Task Manager (ctrl+alt+del)
       2. Then Go to process tab.
       3. Select wscript.exe 
       4. Click on End process.

How To Password Protect Any Folder Without Any Software





1. Open Notepad and Copy code given below into it.

cls
@ECHO OFF
title coolhacking-tricks.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this folder? (Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== tricktiptrap goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End

Protect Any Folder Without Any Software

How To Password Protect Any Folder Without Any Software





1. Open Notepad and Copy code given below into it.

cls
@ECHO OFF
title coolhacking-tricks.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this folder? (Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== tricktiptrap goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End

Hacker’s Underground Hand book 

it's really awesome book for beginners, It contains all the basic knowledge of hacking.
you'll get a basic idea of hacking after read this e book...

the topics are as follow.


1.Programming
2,Linux
3.Passwords
4.Network Hacking
5.Wireless Hacking
6.Windows hacking
7.Malware
8.Web hacking


I am sure once you read this whole book you will learn many more things.


OR

Hacker’s Underground Hand book

Hacker’s Underground Hand book 

it's really awesome book for beginners, It contains all the basic knowledge of hacking.
you'll get a basic idea of hacking after read this e book...

the topics are as follow.


1.Programming
2,Linux
3.Passwords
4.Network Hacking
5.Wireless Hacking
6.Windows hacking
7.Malware
8.Web hacking


I am sure once you read this whole book you will learn many more things.


OR

10 Tips to protect your Facebook account from being hacked


You have probably already heard that Facebook accounts are hacked to gain personal information.
but you might not be aware of how easy that just might be for hackers
especially innocent peoples want to know about hacking and how hackers hacking to get your accounts.
so you want to protect your self.

Step 01 - create your password strong and hard to guess  (change your facebook password often as 
possible if you get any suspecious activity on your wall and don't give your facebook password to anyone ,
 even your friends )
Step 02 - you want to secure your Facebook account with Email so you create a strong password even 
Email.
Step 03 - check the url in address bar   (only login if it says "https://www.facebook.com")
Step 04 - set up a good security question and answer which is not easy to guess.
Step 05 - don't forget to Log off after using Facebook.  ( on other's computer or browsing centers)
Step 06 - enable Email and sms notification while login Facebook account. ( Go to "account setting" in 
top right corner then click "security" then click "Login Alerts" and Enable "Login Notification" )
Step 07 - Enable your secure browsing in Facebook   (go to "account setting" > Security and Enable)                                                  
Step 08 - Don't type your password to any software.
Step 09 - Check keyloggers when you are typing your password in browsers (on other's computer)
Step 10 - don't type your password to other fake pages.    ( phishing)


                                    Protect your Facebook account from being Hacked  !!

10 Tips to protect your Facebook account

10 Tips to protect your Facebook account from being hacked


You have probably already heard that Facebook accounts are hacked to gain personal information.
but you might not be aware of how easy that just might be for hackers
especially innocent peoples want to know about hacking and how hackers hacking to get your accounts.
so you want to protect your self.

Step 01 - create your password strong and hard to guess  (change your facebook password often as 
possible if you get any suspecious activity on your wall and don't give your facebook password to anyone ,
 even your friends )
Step 02 - you want to secure your Facebook account with Email so you create a strong password even 
Email.
Step 03 - check the url in address bar   (only login if it says "https://www.facebook.com")
Step 04 - set up a good security question and answer which is not easy to guess.
Step 05 - don't forget to Log off after using Facebook.  ( on other's computer or browsing centers)
Step 06 - enable Email and sms notification while login Facebook account. ( Go to "account setting" in 
top right corner then click "security" then click "Login Alerts" and Enable "Login Notification" )
Step 07 - Enable your secure browsing in Facebook   (go to "account setting" > Security and Enable)                                                  
Step 08 - Don't type your password to any software.
Step 09 - Check keyloggers when you are typing your password in browsers (on other's computer)
Step 10 - don't type your password to other fake pages.    ( phishing)


                                    Protect your Facebook account from being Hacked  !!


Make your search more efficient by using some tips



Try these tips :


1. Use Of '+' sign 

This ensures that the results returned to you will definatly consist of the word following the '+' sign. 
For Eg : Search: reviews of +iPhone and iPod
This will show results containing the word reviews or iPod but the results will definitely consist of iPhone.

2. Use Of '-' sign
Using '-' sign before any word will ensure that the particular word will not be included in the results.

3. Use Of '~' sign

Using '~' before any word will return the results also containing the synonyms of the word.4. Search a particular site
To search a particular website you can use the following syntax in the google search
Search: site:www.123.com 456
For Eg :
Search: site:http://tricktiptrap.blogspot.com/ Google Search Tips

5. Define a word

To get the definition of a word just use :
Search: define:abc
For Eg : Search: define:Computer
This will return you results which define 'Computer'.

6. Find Pages similar to a pageTo find a page similar i.e. consisting of same type of content, use the following syntax :
Search: related:http://www.123.com/7. Search for exact phrase :To search a set of words exactly together i.e.
For Eg :

Search: "contact us"
This will return the results containing both contact and us together !

8. Using the wild card '*' :The * sign can be used in places where the whole word is not known.
For Eg:
Search: friend*This will return the results containing friend , friends , friendship.

9. Using the '?' sign :This is used when the full spelling of the word is not known.
For Eg:
Search: fri??d
This will result that in the results in which any alphabet can take the place of '?' sign.

10. Use of boolean operators :The boolean operators like AND,OR,NOT can be used in search box to connect the words !
The search engine understands them as what they mean but the must be in capital letters !
For Eg:
Search: swim OR floatThis will return the results containing either swim or float.

Google Search Tips

Make your search more efficient by using some tips



Try these tips :


1. Use Of '+' sign 

This ensures that the results returned to you will definatly consist of the word following the '+' sign. 
For Eg : Search: reviews of +iPhone and iPod
This will show results containing the word reviews or iPod but the results will definitely consist of iPhone.

2. Use Of '-' sign
Using '-' sign before any word will ensure that the particular word will not be included in the results.

3. Use Of '~' sign

Using '~' before any word will return the results also containing the synonyms of the word.4. Search a particular site
To search a particular website you can use the following syntax in the google search
Search: site:www.123.com 456
For Eg :
Search: site:http://tricktiptrap.blogspot.com/ Google Search Tips

5. Define a word

To get the definition of a word just use :
Search: define:abc
For Eg : Search: define:Computer
This will return you results which define 'Computer'.

6. Find Pages similar to a pageTo find a page similar i.e. consisting of same type of content, use the following syntax :
Search: related:http://www.123.com/7. Search for exact phrase :To search a set of words exactly together i.e.
For Eg :

Search: "contact us"
This will return the results containing both contact and us together !

8. Using the wild card '*' :The * sign can be used in places where the whole word is not known.
For Eg:
Search: friend*This will return the results containing friend , friends , friendship.

9. Using the '?' sign :This is used when the full spelling of the word is not known.
For Eg:
Search: fri??d
This will result that in the results in which any alphabet can take the place of '?' sign.

10. Use of boolean operators :The boolean operators like AND,OR,NOT can be used in search box to connect the words !
The search engine understands them as what they mean but the must be in capital letters !
For Eg:
Search: swim OR floatThis will return the results containing either swim or float.

 Hi  Viewers   !!!   

Welcome to my new blog. 

This is my first post and i'm going to share with you , all Informations  about Tricks , Tips and Traps that you are facing from the COMPUTER world. Advanced thanks to all viewers and help us to grow.

WELCOME

 Hi  Viewers   !!!   

Welcome to my new blog. 

This is my first post and i'm going to share with you , all Informations  about Tricks , Tips and Traps that you are facing from the COMPUTER world. Advanced thanks to all viewers and help us to grow.

Popular Posts