Monday, June 17, 2013

How To Activate Windows 7

Is you Windows 7 showing that " This copy of windows is not genuine" ????
Just remove that mark and get a new windows 7 with out any format or installation.... Just follow the steps.
1. Click on start button, write cmd in search box.
2. Right Click on cmd and click Run as administrator.
3. Click on yes, when pop up window comes, & command prompt will open.
4. Write slmgr -rearm . Press Enter
5. A message will come "Command completed successfully. Restart your system."
6. Enjoy!!!!!!!!!!©

PASSWORD PROTECTION IN USB WITHOUT ANY SOFTWARE!!!


So guys today we gonna learn how to make your USB password protected without any software,

I'll show you a simple trick to lock your USB drive without using any 3rd party software.


So let's see how to set a password protect on your USB without using any software.


Insert your USB drive to computer
Click on Start
In "Search programs and files" box, type Bitlocker Drive Encryption
Now launch that application.
Password Protection to USB Drive without using Software
Then look for your USB drive and click on Turn on Bitlocker
Password Protection to USB Drive without using Software
Windows will ask you to set a password.
Now set a strong password.

Click on Next
Password Protection to USB Drive without using Software
If you want save the password in a safe place.
And click on Next
Password Protection to USB Drive without using Software
Now click on Star Encrypting
Password Protection to USB Drive without using Software
That's all !!!

From right now if someone tries to access your USB, Windows will ask him/her to enter the current password.

How to create facebook Chat codes

Have you seen People sending Smiles and images that are not part of Facebook Traditional chat codes.
Here in this post You will see how easy it is to create these codes and Impress you Facebook friends
Like, The best part is you can create your Unique codes . You can create codes of any image stored in you computer, by following these steps

Follow these Steps :- 
1. Go to Smileyti

2. Click on "Browse" and select The  picture you want to use in facebook chat.

3. Enter captcha code.[If you get one]

4. Click on "Upload Now" .

5. It will generate code in few seconds in This form<< [[512585645451273]] [[512585638784607]] >>
Copy The code
   
6. Paste it in facebook chat and hit enter.
 DONE :D


How to Speedup Your Internet connection upto 20%.

Microsoft reserves 20% of your available bandwidth for their own purposes like Windows Updates and interrogating your PC etc. Don't you want to get it back for your self? Here is the trick how to get 100% of your available bandwidth.

Step 1: Click Start then Run and type "gpedit.msc" without quotes. This opens the "group policy editor" and go to: "Local Computer Policy"

Step 2: Then click on "Computer Configuration" Then"Administrative ­ Templates"

Step 3: Now select "Network" then "QOS Packet Scheduler"

Step 4: After that select "Limit Reservable Bandwidth".

Step 6: Double click on Limit Reservable bandwidth. It will say it is not configured, but the truth is under the'Explain' tab i.e." By default, the Packet Scheduler limits the system to 20 percent of the bandwidth of a connection, but you can use this setting to override the default."

So the trick is to ENABLE reservable bandwidth, then set it to ZERO. This will allow the system to reserve nothing, rather than the default 20

Chat with friends using Command Prompt

1) All you need is your friend's IP Address and your Command Prompt.

2) Open Notepad and write this code as it is.....!

@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A

3) Now save this as "Messenger.Bat".

4) Open Command Prompt.

5) Drag this file (.bat file) over to Command Prompt and press Enter.

6) Now, type the IP Address of the computer you want to contact and press enter
Now all you need to do is type your message and press Enter.
Start Chatting....

Hacking Your PSP with 6.60 version

Installing Pro CFW on a PSP 3000

Installing a Custom Firmware on your PSP 3000 has never been so easy. In this page I’m describing the easiest possible way for you to install the most reliable Custom Firmware on your PSP: Pro CFW.
Installing Pro CFW on your PSP3000 is simple, free, and is not much risky than installing a Firmware update on your device. It does not require any advanced hack technique or hardware modification. There’s basically 3 easy steps (easy huh? yes it is):

1. Download the necessary files



2. Update your PSP To firmware 6.60

Skip this step if you already have Firmware 6.60 installed on your PSP.
In order to install Pro CFW on your PSP, you will need to first update your PSP to the 6.60 Sony firmware (which, at the time of this writing, is the latest firmware released by Sony), if that’s not already the case. There are versions of Pro CFW that will run on older firmwares, but updating to 6.60 will guarantee the best compatibility for your official games.
To install the 6.60 Firmware, just unzip the archive on your PSP’s memory stick, in the “PSP/GAME” folder (you should end up with an “UPDATE” folder in the PSP/GAME folder, if you do things correctly), then run the update from your PSP menu.

3. Install Pro CFW

The Pro CFW archive provides several subfolders in the “PSP/GAME” folder. Two of them are interesting for us: the FastRecovery and the PROUPDATE folders. Those two need to be extracted to the PSP/GAME folder on your memory stick.
Assuming you extracted the files correctly, you will see a few new applications in your PSP’s Game menu. The one you will want to run in order to install Pro CFW is “Pro Update”. Just run it.
That’s it. You can erase the “ProUpdate” folder from your PSP, but keep the “FastRecovery” one.

4. DAILY USE

That’s it, I said 3 steps :) Welcome to the world of Custom Firmwares. There’s no additional step required to install the Pro CFW. However, every time you reboot your console, you will have to reactivate ProCFW, which is done by running the Fast Recovery tool from your PSP’s Game menu, and takes literally 5 seconds.

Speech recognition script for Asterisk that uses Google speech API

Speech recognition for Asterisk

Speech recognition script for Asterisk that uses Google speech API.
This AGI script makes use of Google's speech recognition engine in order to render speech to text and return it back to the dialplan as an asterisk channel variable. See README for a complete list of supported languages.

Dependencies

Perl: The Perl Programming Language
perl-libwww: The World-Wide Web library for Perl
flac: Free Lossless Audio Codec
Internet access in order to contact google and get the speech data.
If you plan to use SSL you will need to install the 'IO-Socket-SSL' Perl module that implements an interface to SSL sockets.

Install

To install copy speech-recog.agi to your agi-bin directory.
Usually this is /var/lib/asterisk/agi-bin/
To make sure check your /etc/asterisk/asterisk.conf file

Usage

agi(speech-recog.agi,[lang],[timeout],[intkey],[NOBEEP]): Records from the current channel untill 3 seconds of silence are detected (setting the 'timeout' argument to -1 disables the silence detenction) or the interrupt key (# by default) is pressed. If NOBEEP is set, no beep sound is played back to the user to indicate the start of the recording. The recorded sound is send over to googles speech recognition service and the returned text string is assigned as the value of the channel variable 'utterance'.
The scripts sets the following channel variables:
status: Return status. 0 means success, non zero values indicating different errors.
utterance: The generated text string.
confidence: A value between 0 and 1 indicating the probability of a correct recognition.Values bigger than 0.90 usually mean that the resulted text is correct.
id: Some id string that googles engine returns, not very useful(?).
Asterisk dialplan examples:
In these examples googletts.agi script is used for speech synthesys:
 
 
;;Simple speech recognition
exten => 1234,1,Answer()
exten => 1234,n,agi(speech-recog.agi,en-US)
exten => 1234,n,Verbose(1,The text you just said is: ${utterance})
exten => 1234,n,Verbose(1,The probability to be right is: ${confidence})
exten => 1234,n,Hangup()

;;Speech recognition demo:
exten => 1235,1,Answer()
exten => 1235,n,agi(googletts.agi,"Say something in English, when done press the pound key.",en)
exten => 1235,n(record),agi(speech-recog.agi,en-US)
exten => 1235,n,Verbose(1,Script returned: ${status} , ${id} , ${confidence} , ${utterance})

;Check return status:
exten => 1235,n,GotoIf($["${status}" = "0"]?success:fail)

;Check the probability of a successful recognition:
exten => 1235,n(success),GotoIf($["${confidence}" > "0.8"]?playback:retry)

;Playback the text:
exten => 1235,n(playback),agi(googletts.agi,"The text you just said was...",en)
exten => 1235,n,agi(googletts.agi,"${utterance}",en)
exten => 1235,n,goto(end)

;Retry in case speech recognition wasn't successful:
exten => 1235,n(retry),agi(googletts.agi,"Can you please repeat more clearly?",en)
exten => 1235,n,goto(record)

exten => 1235,n(fail),agi(googletts.agi,"Failed to get speech data.",en)
exten => 1235,n(end),Hangup()

;;Voice dialing example
exten => 1236,1,Answer()
exten => 1236,n,agi(googletts.agi,"Please say the number you want to dial.",en)
exten => 1236,n(record),agi(speech-recog.agi,en-US)
exten => 1236,n,GotoIf($[$["${status}" = "0"] & $["${confidence}" > "0.8"]]?success:retry)

exten => 1236,n(success),goto(${utterance},1)

exten => 1236,n(retry),agi(googletts.agi,"Can you please repeat?",en)
exten => 1236,n,goto(record)


Under the folder wolfram you can find a sample agi script that in combination with speech-recog.agi sends queries to WolframAlpha and returns the answers as a dialplan variable that can be read back to the user.
See wolfram/README for details.
A diaplan example follows where you can dictate your question to WolframAplha and listen to the answer on your phone.
;WolframAlpha query demo:
exten => 1237,1,Answer()
exten => 1237,n,agi(googletts.agi,"What is your question?",en)

;;Record the question and render it to text:
exten => 1237,n(record),agi(speech-recog.agi,en-US)
exten => 1237,n,GotoIf($[$["${status}" = "0"] & $["${confidence}" > "0.8"]]?success:retry)

;;Submit the question to wolfram:
exten => 1237,n(success),agi(wolfram.agi,"${utterance}")

;;Playback the answer:
exten => 1237,n,agi(googletts.agi,"${wolfram_answer}",en)
exten => 1237,n,goto(end)

;;Retry in case speech recognition wasn't successful:
exten => 1237,n(retry),agi(googletts.agi,"Can you please repeat more clearly?",en)
exten => 1237,n,goto(record)

exten => 1237,n(end),Hangup()

License

The speech-recog script for asterisk is distributed under the GNU General Public License v2.

Download

You can get the latest stable version here.
Develompent snapshots are available in either zip or tar formats.
You can also clone the project with Git by running:
 
$ git clone git://github.com/zaf/asterisk-speech-recog
 
Source:
....