Pages

Sunday, June 9, 2013

The New Cherry Mobile Skyfire 2.0 at affordable Price of P7,999




Cherry Mobile Skyfire 2.0 Specifications

Android Jelly Bean 4.1

5.0-inches qHD (960×540 resolution) with  Scratch Resistant IPS-LCD display.

1.2GHz Qualcomm Snapdragon S4 Quad-core Processor

1GB RAM

4GB internal storage

Expandable via microSD up to 32GB

8-megapixels autofocus main camera with flash

HD video recording

2-megapixels front-facing camera

WiFi, WiFi Hotspot

3G, HSDPA

GPS

microUSB v2.0

Bluetooth

2,000mAh Battery



Best Notepad Tricks

Notepad is the coolest software program available in windows. It is the only program which is available on all the platform whether it is WindowsMac or Linux, even the notepad is also available on the mobile operating systems like iOS and Android . It perform all the basic features like cut,copy, past ,etc. But it is much cooler if it will perform some more task or various other functions. So, here are some cool tricks to perform some cool Tricks.

1.Make A Personal Log-Book Or A Diary

Trick 3
You can also use Notepad as a simple digital diary or a personal Log-Book. Below mentioned are steps to make  your own digital diary !
Step 1: Open Notepad.
Step 2: Type .LOG (in capital letters) and hit enter.
Step 3: Save it with any name and close it.
Step 4: Open it again.
When you open the file again you will see the current date and time being inserted automatically after the .LOG line. This will happen automatically every time you reopen the the notepad file.

2. Test Your Anti-Virus Or Make You’re Own Virus

You can also test your anti-virus program using notepad. Follow the steps below to know more:
Step 1: Open Notepad.
Step 2: Copy the code give below in the notepad file:
X5O!P%@AP[4PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
Step 3: Save it with an .exe extension like testvirus.exe
As soon as you save this file, your anti virus program will detect the file (virus) instantly and will attempt to delete it. If this happens then your Antivirus is working properly. If not, then its time to change your anti-virus program.
Disclaimer: The EICAR test file (#3) is a 16-bit application and cannot be tested 64-bit versions of Windows.

3. Pop The Disc Drive

You can also scare peoples using notepad. All you have to do is
Step 1: Open Notepad.
Step 2: Copy the code given below in 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
Step 3: Save it as “Anything.VBS”.
Now open the file and see the terrifying magic! The file will continuously force the Disc rom to pop out! And If you have more than one then it pops out all of them!

4. Shut-Down The Computer After Conveying Any Message

This one is kind of an irksome trick and if you do it unknowingly can seriously cause problems. What this trick really do is, after conveying a (Typed/stored by you) message it shuts down the computer without any confirmation. In order to create the Shutdown file, follow the below mentioned steps:
Step 1:  Open Notepad.
Step 2: Paste the following code in it:
@echo off
msg * System Failure.
shutdown -c “Error! You cannot repair this! Byeeeeee” -s
Step 3:Save the file with any name but with .bat extension and close it. For eg. TakeRest.bat
Disclaimer : Use at your own. If you are playing prank then keep in mind that this may lead to loss of data and on-going processes as it shuts down the computer forcefully.

Now Some Useful Tricks.

5. Convert Text Into Audio Using Notepad

By this trick you can convert any text to audio with just a click. And it doesn’t even require you to pay tons of dollars forany software program to install.

How To Do This ?

Step 1: Open Notepad file on your Windows P.C.
Step 2: 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
Step 3: Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs
Texttoaudio
Thats it ! Your  free Text to Audio converter is ready to be used. Now open the saved file and enter the text you want to convert and click OK. If y it doesn’t work let me know by leaving a comment below.

6. Format Your Hard Drive Using Notepad

Formatting hard drive is a quiet hard and annoying job you have to use some hand-full of softwares to get this job done but no body ever dreamed or think to do this job via a notepad.
Step 1: Open notepad.
Step 2: Type the following the code in it (Or just copy paste it).
01100110011011110111001001101101011000010111010000 100000011000110011101001011100
0010000000101111010100010010111101011000
Step 3: Save it as an .exe file giving any name you like.
Thats It ! Now just double click on the file (to open it) and your C: drive will be formatted !
This is just a little fun of  zero and one. But, be Careful while using it.
Disclaimer: No, you can’t run it from C: drive itself (not from the drive in which OS is installed & running).

7. Lock Files On You PC Without Using Any Software

It is hard to hide our personal data on our pc because key-logger softwares are in general costly. But we can also make our own key-logger using notepad. So, all you have to do is
Step 1: Open notepad.
Step 2: Copy the following code in notepad file :

cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the 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 Locker "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 folder
set/p "pass=>"
if NOT %pass%==YOUR PASSWORD HERE goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
Step 3: Change the “YOUR PASSWORD HERE” with your password.
Step 4: Save it as batch file ( with extension .bat ) For eg. Locker.bat
Step 5: Now you will see a batch file. Double click on it to create a folder locker ( A new folder named Locker would be formed at the same location )
Step 6: Thats it now you have your own created  locker and it’s completely free !
Step 7: Put  all the files you want to hide in the locker folder.
Step 8: Double click the batch ( As created above ) file to lock the folder namely Locker.
Step 9: If you want to unlock your files, simple double click the batch file again and you would be prompted for password ( In DOS window ). Enter the password and enjoy access to the folder.
reference: www.7geekz.com


Cherry Mobile Unveils New Quad-Core Android Tablet





Cherry Mobile, the leading mobile phone brand in the country, has added a new seven-inch tablet to its range of affordable Android devices with the introduction of FUSION BOLT.
Cherry Mobile FUSION BOLT is a slim and lightweight WiFi-enabled device featuring an ultra-responsive seven-inch High Definition IPS capacitive touch panel, giving customers a premium viewing experience. The tablet is large enough to read e-books, watch videos, and browse the web comfortably and small and light enough to carry with you anywhere.
Furthermore, FUSION BOLT runs on a 1GHz quad-core A9 processor, 1GB RAM and 8GB of internal memory expandable to 32GB via microSD. It operates using the Android 4.1 Jelly Bean operating system and comes with Google Play pre-installed as well as other essential apps.
“Our Android phones have generated a buzz in the local market in a short period of time and we have received positive response from our customers,” said Lonson Alejandrino, Cherry Mobile’s Product Manager for Smartphones. “We are excited to offer a versatile, feature-rich device with an accessible price tag, and with the launch of FUSION BOLT we are aiming at strengthening our portfolio in the tablet category as well.”
FUSION BOLT also comes with a 2MP rear camera and a VGA front-facing snapper for video calling. Excellent multimedia support exists, as the device can play various formats including MP3, WMA, WAV, eAAC+, and MPEG 4. Loudspeakers, G-sensor, micro USB port, 3.5mm audio jack, and a battery capacity of 4000mAh complete the specs.
Cherry Mobile FUSION BOLT comes in either white or black, and will have a suggested retail price of Php3,999. The device will be available at Cherry Mobile concept stores, kiosks, and authorized dealers nationwide in March 2013.
For more info, please visit: cherrymobile.com.ph