Friday 20 May 2011

Login to Windows Live Messenger using any email account


Everybody has hotmail account, don’t they? I created my first email account in Hotmail 9 Years ago. MSN Hotmail and Yahoo were the heroes of free web mail system at that time, and still they are. Later in 2004, Gmail showed up with large email space capability. The only famous messenger was ICQ. Later Hotmail introduced MSN messenger, now they’ve named itWindows Live Messenger which we are using at the current date.
Since you have lots of email account in several domains, it is necessary to run their own messenger. Try to log in using your Gmail or Yahoo account, messenger will return with 80048821 error saying, Windows Live ID or Password is incorrect, because Gmail is not domain of MSN.
But after following this trick, you won’t have to open install multiple web messengers. Let met guide you how you can access Windows Live Messenger using your own email account which is not a domain of MSN. You’ll be able to login using Gmail, Yahoo or any email account you have.
Go to http://www.passport.net, after the page is loaded scroll down to Sign up today. As shown in figure, click on Get Started Now link of Use an e-mail address you already have.
Now fill up the form with the email address you want to sign up using Windows Live Messenger and other necessary information and click on Continue button.
In next page, retype the email address as shown in the left.
Now, it will inform you to confirm your account in next page. Click on Continue button.
Now you may close the page.
Next, we’ll need to confirm our mail. They’ll send you a confirmation link in the email address that you’ve specified earlier during form fill up.
Login to your Gmail or any email account using respective domain and look for Verification mail from Windows Live Team.
Read the mail properly and click on the confirmation link
Wait a minute! Confirmation is not over yet, you’ll have to login with the new email addressand password that you’ve filled up earlier in the form.
For the successful confirmation, you’ll be welcomed to this page.
Now try to login using your Gmail or any email account from Windows Live messenger.
Note: If you have not confirmed properly you’ll be notified.
If you see this screen at the top of your Windows Live Messenger, make sure that you’ve confirmed properly.
Hope this tutorial was really helpful to you.

Learn to hack from Real Hacking game for those who want


If you are very new in hacking world, before going to the article, I suggest you to read Learn How To Hack With The Hacker’s Underground Handbook before reading further article.
If you are already known to the hacking world then, welcome to the virtual simulation world of hacking environment.
If you really need some easy platform to practice hacking then I think this article will be a great help for you. Yes I am talking about the real hacking game, Hack The Game.
HackTheGame is a free 1MB file game which will introduce you to the real hacking word.
The real hack able DOS environment makes you feel like that you have finally accessed to US Defense system.
The game becomes much more interesting and fun because of the addition of sounds. The sounds includes typing and several warning announcement.
The user interface of HackTheGame is very friendly and easy. Just open the program and select your language, input any ID you may like.
There are several missions of this game. You’ll get the briefing of each mission in your inbox.
The mail itself includes several hints and processes.
If you find sounds irritating then, you can go to settings menu and disable sounds. But I bet you, enabling sounds makes your game play experience very easy.
I bet you’ll love this game.
No installation is needed to run this game and it is obviously safe to use because it utilizes local files which in game play acts as a remote files. You don’t have to worry about your security. If you doubt it, then play it offline.
This game can be downloaded from here, HackTheGame.

CSS Mouse Hover Tips To Beautify Your Web Templates


Beautiful web template is what everyone expects to have in their site. Moreover making it is much more challenging. Previously websites were designed in tabled form. Later the tabled forms were replaced by Cascading Style Sheets (CSS).
CSS is the versatile method to design website, while HTML as the platform. Today, for interactive websites, mostly flash based movie files are used. However Flash is not based on any HTML program. Plus, it needs additional plug-in and applets in browser to view the flash based website. This is the main backward feature of flash based websites.
However with the release of new HTML 5 and CSS, it is now possible to achieve interactive websites more versatile than Flash based interactive websites.
Today, in this post, we’ll discuss about few methods that we can apply in HTML and CSS only to achieve highly dynamic and interactive web templates.
Using pseudo classes
CSS pseudo-classes are used to add special effects to some selectors. For example, some popular and widely used pseudo classes are:
:link, :visited, :hover, :active.
Following example demonstrates the use of pseudo class in <a > tags.
a:link {color:#FF0000;}      /* unvisited link */
a:visited {color:#00FF00;}  /* visited link */
a:hover {color:#FF00FF;}  /* mouse over link */
a:active {color:#0000FF;}  /* selected link */
It can also be applied to lists and divisions to add more hover effects to the web page.
For example, the following images shows how it can be applied to divisions to add content highlight effect.
We’ used hover to one of the class for division.
Here is the basic CSS code:
<style>
.home {
Background:#333;
}
.home:hover {
background:#0C6;
}
</style>
And for the HTML part:
<div>
Every contents located here will have mouse highlighting effect.
</div>
Method to add image link hover effect
Bascially, we apply background image to a:link and another background image to a:hover to have background image hover effect in CSS. It is ok with all of the browsers as most of them supports it.
But incase you are using large size image then you’ll have a problem here. What exactly the above method does is that, whenever the link is in normal state (i.e. mouse is not over the link) the browser will in default load the background image specified in a:link CSS class, but when mouse is hovered over the link, it will load background image from a:hover class. If the image is larger in size then it will take time to load.
Let us discuss alternative method which will load both of the images at the of page load.
Look at the HTML code below:
< a href="link.html">
<img alt="image" src="images/image.png" class="nohover" />
<img alt="imagehover" src="images/image.png" class="hover" />
</a>
We have two images inside <a> tag each of the image have specific class defined.
We can hide one of the image when hovering with the help of CSS.

img.nohover {
border:0
}
img.hover {
border:0;
display:none
}
a:hover img.hover {
display:inline
}
a:hover img.nohover {
display:none
}
In above four different CSS functions, at first when no mouse is hovered over the link image, the image defined with class “nohover” will take in action, resulting only one image to be viewed. In other words, one image is set to hidden while other one is set to visible. We do this by the help of display:none;
Now when a link image is hovered, we’ll apply display:none; to the image that must be hidden when hovered. And for the one that must be visible, we’ll apply display:inline;
Copy and try the above codes. Play with it, you’ll learn more when you research it yourself.
This works in all the version of browsers, so you won’t have cross browser compatibility problem.
The rise of CSS3 have made more thing possible, the above tutorial is classified under CSS 2.1 version.
In this way you can utilize the pseudo class hover to make your web page much more user friendly and interactive.

Hacking CSS For Rounded Colors In All Browsers No Images And No Javascript


There are lots of tricks to get rounded/curved corners for our CSS websites. For example, you may want rounded corner for a box. You may easily think of using images and aligning it top left, top right, bottom left and bottom right. It sounds easy, but is way too complicated as we’ll need to create large number of blank divisions. Also another minus point can be, it is little bit harder to crop the exact pixel of the corner. Consequently, we’ll have something irregular display of corners and the plain line.
Also we’ve another technique, border-radius, which is supported from CSS3. But CSS3 is not supported in enemy of web developers, i.e. Internet Explorer. However CSS3 is partially supported in other popular browsers like Chrome, Firefox, Safari, etc.
The main problem here became the internet explorer. Even Internet Explorer 8 doesn’t support CSS3 rounded corners. However, it is expected in Internet Explorer 9.
Now, instead of trying images and CSS3, we’ll focus on CSS2 as every of the browsers supports it.
Before creating rounded corners we must technically have pixel to pixel knowledge about rounded corners.
Rounded corners are created from pixels. Imagine a bunch of few lines combining to form a rounded corner. To get clearer, refer to following example:
The above illustration is the illustrated microscopic view of rounded corner in raster image.
Again when the lines come closer together, then it looks like this:
Finally when all of the line combines then it gives a pixilated image of rounded corner.
In normal view, a rounded corner will look like the image below:
We are going to work on the same principle.
Assume that you want rounded corner of about 6 pixel, then you’ll need 7 different lines of 1 pixel height with several width.
As you can see the first line illustrated image above, the height is made constant with few gaps and the width keeps increasing by 1px or few more pixels.
For your easy, again refer to following illustration.
The first line is 93px long, and second line is 2px more than first one. After that the width of the line is kept increasing by 1px till it gives 99px.
Note:  For larger radius, you’ll need larger number of lines.
Now we’ll do the CSS trick here which is applicable as CSS2.
We’ll create 6 spans with different classes. We’ll name the class as class1, class2, class3, class 4, class5, class6. And we’ll put each line in each span class. But we are not going to place image, we’ll be instead using background color for each span.
You might question right here, why 6 classes only when we have 7 lines in above image. Well, this is because, the last two lines have similar width and we can set the height to make it as two lines.
Again to define the width of each span, we’ll use margin, where the actual width remains same but the background color will skip the marginal areas. And we’ll again set the height of each span.
OK, now let me show you how this can be accomplished in CSS script.
We will first set default values for all the classes that lies in span.
.class1, .class2, .class3, .class4, .class5, .class6 {
display:block;
overflow:hidden;
}
This will make each span as a block instead of inline content and set the overflow hidden.
We’ll now set the width of each line. But we are not using width CSS code as we actually will have dynamic div wrapping this. So we are doing only pixels work here not a line. Therefore, we’ll use margin.
Here is a code for each class,
.class1 {
Height:1px
Background:#ddd;
Margin:0 6px; /* this will make the first line of the rounded corner 6px smaller than normal maximum line width */
}
.class2 {
Height:1px
Background:#ddd;
Margin:0 4px; /* this will make the second line of the rounded corner 4px smaller than normal maximum line width */
}
.class3 {
Height:1px
Background:#ddd;
Margin:0 3px; /* this will make the third line of the rounded corner 6px smaller than normal maximum line width */
}
.class4 {
Height:1px
Background:#ddd;
Margin:0 2px; /* this will make the fourth line of the rounded corner 2px smaller than normal maximum line width */
}
.class5 {
Height:1px
Background:#ddd;
Margin:0 1px; /* this will make the fifth line of the rounded corner 2px smaller than normal maximum line width */
}
.class6 {
Height:2px /* this will double the line */
Background:#ddd;
Margin:0 0; /* this will make the last line of the rounded exactly the maximum width of the wrapper */
}
Now we’ll be coding for XHTML.
<div class=”outerwrapper”>
<span></span><span class="class2"></span><span></span><span class="class4"></span><span></span><span class="class6"></span>
<div class="content">
Rounded Corner here!!
</div>
<span></span><span class="class5"></span><span></span><span class="class3"></span><span></span><span class="class1"></span>
</div>
The bottom rounded corner must have reversed order of span class. Like we have class1 then class 2 then class 3 then class 4 up to class 6 for the top rounded corner. We’ll need exactly reverse, class6 then class5 … for the bottom rounded corner.
Finalized style sheet:
<style>
.outerwrapper {
Width:960px;  /* whatever width you set here, the rounded corner will automatically adjust itself to it.
}
.class1, .class2, .class3, .class4, .class5, .class6 {
display:block;
overflow:hidden;
}
.class1 {
Height:1px
Background:#ddd;
Margin:0 6px; /* this will make the first line of the rounded corner 6px smaller than normal maximum line width */
}
.class2 {
Height:1px
Background:#ddd;
Margin:0 4px; /* this will make the second line of the rounded corner 4px smaller than normal maximum line width */
}
.class3 {
Height:1px
Background:#ddd;
Margin:0 3px; /* this will make the third line of the rounded corner 6px smaller than normal maximum line width */
}
.class4 {
Height:1px
Background:#ddd;
Margin:0 2px; /* this will make the fourth line of the rounded corner 2px smaller than normal maximum line width */
}
.class5 {
Height:1px
Background:#ddd;
Margin:0 1px; /* this will make the fifth line of the rounded corner 2px smaller than normal maximum line width */
}
.class6 {
Height:2px /* this will double the line */
Background:#ddd;
Margin:0 0; /* this will make the last line of the rounded exactly the maximum width of the wrapper */
}
.content {
Padding:5px;
Background:#ddd;
}
</style>
Apply the above code and see the result in every browser. It is supported in every browser, as we have used nothing complicated here.
Hope this was helpful.

AirCrack 2.1, AirSnort 0.2.6, AeroPeek 2.02


Aircrack ng is an 802.11 WEP and WPA PSK keys cracking program that can recover keys once enough data packets have been captured. It implements the standard FMS attack along with some optimizations like KoreK attacks, as well as the all new PTW attack, thus making the attack much faster compared to other WEP cracking tools. In fact, Aircrack ng is a set of tools for auditing wireless networks.
AirSnort is a wireless LAN (WLAN) tool which recovers encryption keys. AirSnort operates by passively monitoring transmissions, computing the encryption key when enough packets have been gathered. 802.11b, using the Wired Equivalent Protocol (WEP), is crippled with numerous security flaws. Most damning of these is the weakness described in Weaknesses in the KeyScheduling Algorithm of RC4 by Scott Fluhrer, Itsik Mantin and Adi Shamir. Adam Stubblefield was the first to implement this attack, but he has not made his software public. AirSnort, along with WEPCrack, which was released about the same time as AirSnort, are the first publicly available implementaions of this attack.
AiroPeek NX captures and decodes packets, with special emphasis on the 802.11 protocol. AiroPeek NX receives all wireless LAN packets based on user settable configuration parameters and stores these packets in memory. For example, you can set a filter to capture all packets, only 802.11 authentication request frames, or all frames except beacons frames. Just about any combination of packet types and protocols are possible.

Free WIFI Software Downloads

Here I present you 2 free WIFI software that can recover WEP, WPA PSK keys and more. Enjoy!

1) WIFI Hacking Software

This tool has many different tools to hack and crack wifi so you can use your neighbours internet and do whatever. Tools for Windows and Linux also some nice extra tools!
Windows : Aircrack, Wireshark, Ettercap, Netstumbler, Airsnare, WIFIfofum, Wdriver, Pong, CommView, Airsnort, AiroPeek, Knsgem 2, Aptools, And A Nice PDF File
Linux Hacks: Airpwn, WEPcrack, Prismstumbler, WIFIscanner, Airfart, Magicmap, WPA-cracker , Wellenreiter , Void, Kismet, Cowpatty, WIFIzoo, And A Nice PDF File

Wednesday 18 May 2011

How To Tell If Someone Has Blocked You From Skype

In this post I will show you simple way to know if someone has blocked you from skype. Just follow steps below.

1) Go to http://www.amiblocked.com/ and simply filling out the top of the page.
2 ) Type the screenname, and simply click submit
3) The page will then tell you if your contact is Online or Offline, and you can figure out if they blocked you or not.

Opening A Set Of Multiple Programs From A Single Click

If you are a web designer, graphics designer, desktop publisher or even just a basic user of Windows you may have habit top open some specific programs. For example, a web designer will have Adobe Fireworks, Adobe Dreamweaver, Notepad and browsers always opened. He may want this entire file in front of his eyes without need to double click each of the file. Or you may be a graphic designer who wants Photoshop, Illustrator always opened. Or you may be just a basic windows user who surfs net and listen to music and you may want Windows media player and browser opened together without any hassle.
In this tutorial I will teach you how to accomplish multiple file execution from just a single click. This might be just a useless tip for them who might have other method or already knows how to do this. If you don’t know how to do this then read on. If you know, even then read this post and comment for better upgrade.
As we used batch scripting before to accomplish several easy task and tweaks to windows, we’ll again be using batch scripting here. If you don’t know what batch scripting is then search in our blog at the right sidebar for batch scripting and learn basics of it.
OK now let me guide you how to do this.
In this tutorial I will assume that you are a basic web user who listens to music while surfing. You’ll basically open all programs you need on hand. For example, you may want Google Chrome, Microsoft word and Windows Media Player always opened.
After you list the necessary programs, we must know where the programs are installed.
You can do this by right-clicking on the shortcut icon and click on properties. In target field you’ll find the location of the program file.

In the above case, the installed location of Google chrome is, C:\Programs\Chrome\Application\chrome.exe

Copy the location of each program in similar ways.
Now open Notepad (Start>Run>type notepad).
In Notepad screen type following information:
Start "" "C:\Programs\Chrome\Application\chrome.exe"
Note: Don’t copy and paste it since it is for demo only.
Do same for all programs.
Note: refer to above syntax again.
When your path is enclosed in quotes, START interprets it as the title for the window. Adding the “” makes it see your path as the program to run.
Now save it as “browsing.bat”(with quotes).

Change the icon if you want.
Double click on the browsing.bat, it will open all the programs that you’ve specified inside it.
You can create similar set of programs to open from single click and have it at desktop.

Hope this tutorial was helpful.

Disable USB Storage Devices In Your Desktop And Get Secured

Have your personal information ever been copied or pirated? It might be your years of project or your secret video; you’ll obviously feel not well when you know that it has been copied by someone by accessing your computer. Most of the files are copied to removable storage media like USB drives.

Today in this tutorial, I am going to show you how you can make USB storage devices totally useless without your permission.
You won’t need any special utility or software, just a tweak in Registry editor is enough to enable or disable the USB drive.
To block all the storage device in your Windows, run registry editor by typing regedit in RUN command.
In the registry editor, at left side navigation pane, navigate to following location:
HKEY_LOCAL_MACHINE > SYSTEM > CurrentControlSet > Services > USBSTOR
Now at the right side double click on Start.

To block USB storage Medias, change the value data to 4.

If you want to unblock USB storage Medias just navigate to the same location and change th value data to 3.

If you don’t want to bother tweaking registry then I’ve made a simple program to Block and Unblock USB device.
You can download it from here.
USB BLOCKER- HacksPC
USB UNBLOCKER- HacksPC
Download both of them and open it to toggle between Block and Unblock USB storage media.
You can hide it in desktop or anywhere favorable to you.
Next time I’ll be posting a tutorial about disabling copy and paste. So, don’t forget to bookmark us.
Hope this tutorial was helpful.

Create A Dynamic Digital Clock Using JavaScript And Images

We’ve already published similar article before about creating JavaScript Date header for blog and websites. This tutorial is especially for web developers who are just learning web developing technology. In this tutorial, I am teaching you how to set up a dynamic clock in your website or blog by using a JavaScript with image digits.
Though it is not necessary to include current local time in your website, it might be pretty attracting and mesmerizing.
Now lets begin with the tutorial.
First of all we’ll be creating images of numbers “0-9” colon “:” and “AM/PM. You can create the separate images in any image editing software or you can download the bundle of images directly from here.
Now all the images needed for a digital clock is ready. Next, we’ll be assigning each image for each digits and colons. For instance, refer to the following example:
dgt1 = new Image;
dgt1.src = “dgt1.gif”;
In above sample, we defined that dgt1 will have the new image in the first line. Now, since dgt1 carries an image with it, in second line we again defined the location of source of image that dgt1 will be holding. We’ll be doing this to all of them.
dgt1 = new Image;
dgt1.src = “dgt1.gif”;
dgt2 = new Image;
dgt2.src = “dgt2.gif”;
dgt3 = new Image;
dgt3.src = “dgt3.gif”;
dgt4 = new Image;
dgt4.src = “dgt4.gif”;
dgt5 = new Image;
dgt5.src = “dgt5.gif”;
dgt6 = new Image;
dgt6.src = “dgt6.gif”;
dgt7 = new Image;
dgt7.src = “dgt7.gif”;
dgt8 = new Image;
dgt8.src = “dgt8.gif”;
dgt9 = new Image;
dgt9.src = “dgt9.gif”;
dgt0 = new Image;
dgt0.src = “dgt0.gif”;
dgtam = new Image;
dgtam.src = “dgtam.gif”;
dgtpm = new Image;
dgtpm.src = “dgtpm.gif”;
dgtcolon = new Image;
dgtcolon.src = “dgtcolon.gif”;
dgtblank = new Image;
dgtblank.src = “dgtblank.gif”;
Note: “dgt1” is just a naming and variable, you can replace it anything you want. However numbering is recommended, for example, num1, digit1, symbol1, etc.
Now we’ve assigned images to each of the values in digital clock.
Next, we’ll be creating a function that does the main work of a digital clock.
Let’s name the new function as UpdateClock. And set the needed variables to get the digital values from clock.
function UpdateClock(){
var time= new Date();
hours = time.getHours();
mins = time.getMinutes();
if (!document.images) return;
dgt = mins % 10;
document.images.minsones.src=eval(“dgt”+dgt+”.src”);
dgt = (mins – (mins % 10))/10;
document.images.minstens.src=eval(“dgt”+dgt+”.src”);
if (hours > 12)
document.images.ampm.src=dgtpm.src;
else
document.images.ampm.src=dgtam.src;
if (hours > 12) hours = hours – 12;
dgt = hours % 10;
document.images.hoursones.src=eval(“dgt”+dgt+”.src”);
dgt = (hours – (hours % 10))/10;
document.images.hourstens.src=eval(“dgt”+dgt+”.src”);
document.images.colon.src=dgtcolon.src;
setTimeout(“UpdateClock()”,30000);
}
The script part highlighted in red will determine to replace AM with PM or PM with AM. If the time hour value is greater than 12 then it will load image with PM written in it, else it will return AM image.
This JavaScript function actually shows you the digital clock with 24 hours time format. But we’ve AM/PM image which means that we’ll be showing clock in 12 hours format. Since we’ll need only 12 hours we’ll be substracting each of the value greater than 12 from 12.
Now, if it is 13 hour it will return 13-12 = 1. This is defined in code in orange color. And rest of the codes are used for setting up clock.
And at the end of the code, we’ll be calling the function:
UpdateClock();
Now we’ve created the backend of a digital clock. You’ll have to arrange all the codes above in similar format below:
<SCRIPT>
if (document.images) {
dgt1 = new Image;
dgt1.src = “dgt1.gif”;
dgt2 = new Image;
dgt2.src = “dgt2.gif”;
dgt3 = new Image;
dgt3.src = “dgt3.gif”;
dgt4 = new Image;
dgt4.src = “dgt4.gif”;
dgt5 = new Image;
dgt5.src = “dgt5.gif”;
dgt6 = new Image;
dgt6.src = “dgt6.gif”;
dgt7 = new Image;
dgt7.src = “dgt7.gif”;
dgt8 = new Image;
dgt8.src = “dgt8.gif”;
dgt9 = new Image;
dgt9.src = “dgt9.gif”;
dgt0 = new Image;
dgt0.src = “dgt0.gif”;
dgtam = new Image;
dgtam.src = “dgtam.gif”;
dgtpm = new Image;
dgtpm.src = “dgtpm.gif”;
dgtcolon = new Image;
dgtcolon.src = “dgtcolon.gif”;
dgtblank = new Image;
dgtblank.src = “dgtblank.gif”;
}
function UpdateClock(){
var time= new Date();
hours = time.getHours();
mins = time.getMinutes();
if (!document.images) return;
dgt = mins % 10;
document.images.minsones.src=eval(“dgt”+dgt+”.src”);
dgt = (mins – (mins % 10))/10;
document.images.minstens.src=eval(“dgt”+dgt+”.src”);
if (hours > 12)
document.images.ampm.src=dgtpm.src;
else
document.images.ampm.src=dgtam.src;
if (hours > 12) hours = hours – 12;
dgt = hours % 10;
document.images.hoursones.src=eval(“dgt”+dgt+”.src”);
dgt = (hours – (hours % 10))/10;
document.images.hourstens.src=eval(“dgt”+dgt+”.src”);
document.images.colon.src=dgtcolon.src;
setTimeout(“UpdateClock()”,30000);
}
UpdateClock();
</SCRIPT>
The above codes goes inside the <head> tag of your html template.
Again we’ll need to arrange the placement of the images. Following code will do it.
<IMG SRC=”dgtblank.gif” border=0 name=”hourstens”>
<IMG SRC=”dgtblank.gif” border=0 name=”hoursones”>
<IMG SRC=”dgtblank.gif” border=0 name=”hoursones”>
<IMG SRC=”dgtblank.gif” border=0 name=”minstens”>
<IMG SRC=”dgtblank.gif” border=0 name=”minsones”>
<IMG SRC=”dgtblank.gif” border=0 name=”ampm”>
Orange colored HTML code will place two image sources for hour format in ones and tens numbers.
The brown colored code will place one colon image in it.
The green colored will have ones and tens minute.
The red colored will define AM/PM.
Copy the above code wherever you want inside the <body> of your webpage or blog.
Upload all the images that you’ve created or downloaded to the root directory of your webpage.
If you are having a digital clock in index.html then put the images where index.html is located.
If everything went well, you’ll have a working digital clock.

If you still have a problem, refer to following illustrations on placement of JavaScript and HTML code.

Hope this was helpful.

Disable Cut, Copy and Paste in Windows

How often do you leave your PC unattended? How many people can access our workstation or home PC? And what do you keep in your hard disk? If you leave your PC unattended and anyone or few can access your home/work PC then your data and information is in risk. One can easily copy your documents and files.
You may have secured your PC by setting password. But you won’t be putting password in screensaver mode, will you?
In this tutorial I am going to show you how you can prevent your files from being copied illegally to any storage media or even inside one folder location to another location of same hard drive.
Before we begin with the tutorial, download this free utility which will be playing main role in this tutorial.
The downloaded file is a zip file; you’ll need to extract it.
After extraction install the program. Remember the location of the installation folder. It is usually in %systemroot%/Program Files/Prevent . The installer only extracts the file and while running toggles the registry values.
Go to the location where Prevent utility is installed. And open Prevent.exe.

Click on Define HotKey Field and press the shortcut keys you want to disable the copy and paste.
I clicked on the text input area of Define HotKey and pressed CTRL+ Shift + Q simultaneously.
Now Click on Activate button. After pressing Activate button, it will save the HotKey you defined with following screen:

As soon as you press activate button it will disable the copy paste feature of windows.
Now to disable it you’ll need to press the defined HotKey.
When you press the Hotkey in any part of the Windows it will enable copy/paste again with following screen:

Now go to the folder location where you’ve installed Prevent utility.

Right click on Prevent.exe, go to send to menu and create desktop shortcut.
This will create shortcut to desktop.

You may rename it whatever you want.
Now you can open Prevent utility from shortcut and always activate it if you’ve disabled it once.
This utility not only allows you to disable cut, copy and paste but also Delete, Copy To, Move To, Sent To, Renaming, Task manager’s End Process button.

Task manager before activating Prevent utility.

Task manager after activating Prevent utility.
Hope this was helpful tutorial

You also can be a Master of Yahoo Chat room....

                                                        Hay Guys,
                   Now you can also be the Master of yahoo chat room. You only need to Download the software which will help you to be a superior to other yahoo chat room fellows.
Click hear and start your Downloading........ and be a Master.. 
                                
               

Monday 16 May 2011

Opening Two Or Multiple Pages From One Hyperlink

Once in ever you may think that is it possible to open one or more pages from just a single click? And if you have only basic knowledge on HTML and web programming you may get confused right here. Opening more than multiple pages from just a single click might be very useful especially when you want to show two different information pages about a link.
We can get a hyperlink to open more than two pages via several methods. One of them might be creating a link to a page that will open a pop-up window from it. But this may not sound practical as most of the browser have pop-up blocker enabled in it. Using pop-up cannot be good idea to open multiple pages.
Another best method can be using iframes. Iframes enables us to add two or more different pages to a single page. We can create a single page with two iframes in it and hence can add two different pages in it. Again, this idea becomes flop because; the iframes are not commonly used. Plus, it adds confusion to the visitor because of multiple information in a single page.
If you have been trying to open two pages using hyperlink and searching around the web but unable to find then you are here at right place.
I am going to teach you how you can accomplish this by just a single careful and tricky step.
We all know JavaScript, it can do lots of magic that html cannot do. If you are déjà vu at JavaScripting then you I hope you started getting hint.
Yes, we’ll be using OnClick method and window.open() function.
The default code to open a link from html is:
Onclick=”window.open(‘http://www.google.com’)”
The above code is a JavaScript code that will open Google HomePage. This is a basic code for hyperlinking using javascript.
Now let’s see at the HTML version of hyperlinking:
<a href=”http://www.google.com”>Page link</a>
We all know what that does.
Now when we add onclick parameter to the above HTML hyperlink then we can do any JavaScript magic we want.
See the example below to know what I mean exactly.
<a href=”http://www.example.com” onclick=”window.open(‘http://www.google.com’);”>Page link </a>
In above code, we added onclick parameter to <a> tag. This will enable Page link to carry multiple function. One is default HTML hyperlinking function and another is any javascript function. OnClick is event loader, i.e. when any part of the object between this tag, <a>, is clicked new event will be loaded which will be predefined.
In simple terms, it will load two different links.
Try the above code and play with it.
Not only can two you open unlimited number of different pages just by single click by applying this javascript tweak.
<a href=”#link1″ onclick=”window.open(‘#link2′); window.open(‘#link3′)”>Page link </a>
You can open multipage using the above pattern.
Hope this tutorial was helpful.

Save The Current Windows Session And Restore Them Later

Have you ever needed to restart your Windows, but you may not want to lose the open windows and current situation of your desktop. Hibernation also loads the windows session but it does not actually restart your PC actually. If you really need a cold boot then you’ll obviously lose the current situation. You might have wished that you could save the current session of Windows as you can do in browsers like Opera and Firefox. You’ll never notice it’s need until you have lots of windows open and working in all of the windows at once.
Well if you are worrying about this then no more worries. I am here with a step by step tutorial to guide you through every step you need to save the current session of your desktop for later restoration.
You’ll need Cache My work which can be downloaded from here.
After the page is loaded click on green download button as illustrated in image below:

After you downloaded the program, install and open it.
Using this tool is very simple and easy. Just check on the boxes favorable to you and click on save.

Next, go to Tools > Option. In new option window check on Restore Previous explorer windows at next logon.

Now you may close the window.
Now onwards, it will start to cache your windows when system is being booted and reload the cache in next system start.
Just like hibernate, it stores the current cache of windows to seprate location of your hard drive. Since catching needs writing hard drive, you’ll feel that your system is being slow while shutting down and loading up. This is not a big deal as it takes time to read and write data to and from hard drive.
Using this technique will possibly save a lot of time. This also enables you to get familiar with the environment you were in the screen before windows restart.
Hope this tutorial was helpful.