Saturday, 30 June 2012

BDK1.1

BDK1.1



The Bean Development Kit (BDK) from Sun includes a simple example of a building environment which uses beans, called the beanbox, and some sample beans. This note will tell you how to set up and use the BDK on the Computer Science & Informatics Ubuntu Linux workstations and how to add your own beans to the BeanBox environment. The BDK The BDK needs to create some directories and copy some files to your filespace before you can use it. So, the first time you want to use the BDK, give the following command: % bdk-user-setup This will create a directory called BDK1.1 and sub-directories BDK1.1/jars and BDK1.1/beanbox together with some links to files in the Bean Development Kit installation directory.

Wednesday, 27 June 2012

Memory Card Recovery

CardRecovery™ v6.00


Overview



CardRecovery™ is the leading photo recovery software for memory card used by digital camera. It can effectively recover lost, deleted, corrupted or formatted photos and video files from various memory cards. It supports almost all memory card types including SD (Secure Digital) Card, CF (Compact Flash) Card, xD Picture Card, Memory Stick, SmartMedia Card, MMC (MultiMediaCard), MicroSD, MiniSD, SDHC and more.
CardRecovery, the award-winning digital photo recovery software is the reliable solution for digital image recovery, digital picture recovery, digital media recovery, photo rescue, photo restore, data recovery, or whether files were deleted, the storage was damaged or formatted.
Our unique and exclusive SmartScan technology completes those impossible recovery tasks that other software cannot touch -- SmartScan quickly locates and restores files that other recovery software could never find.
Using CardRecovery is safe and risk-free. The software performs READ-ONLY operations on your memory card. It doesn't move, delete, or modify the data on the card to avoid causing further damage or overwriting. It recovers the photos and movie clips from the source memory card and saves them to the destination location you specify.
CardRecovery Features
Recover deleted photos from memory cards
Recover lost photos from memory cards
Recover lost movies from memory cards
Recover photos from formatted memory cards
Recover photos from damaged, unreadable or defective memory cards
Recover pictures from removable storage including flash drives
Recover images, video files from mobile phones

Friday, 22 June 2012

Facebook Chat on ur Desktop

3 Ways To Use Facebook Chat On Your Desktop


Facebook’s build-in chat feature is useful, but it lacks a desktop IM. Who will open facebook window for hours just for chatting? Browsers can crash or get accidently closed, therefore putting an end to the conversation. I am never comfortable with messengers build inside a website and prefer using a desktop IM. Lets look at 3 different ways in which you can use Facebook Chat on your Desktop Messenger.
Note: When you use facebook chat from desktop IMs, you will be able to use all feature that are present in facebook’s build-in online messenger. Digsby (Cross-Platform)
Digsby is the first 3rd party messenger to support facebook’s chat feature. It is a cross-platform messenger available for Windows, Mac OS X, and Linux. No hacks or plugins are required. Just register for an Digsby account and login with it. Once you are logged in, click Add Account. Now in the Accounts tab, click Add IM Account and select Facebook Chat from the list.

Enter your facebook login details and start chatting.
It’s that simple!
Pidgin (Cross-Platform) Pidgin is an opensource 3rd party IM that has a large user base but sadly till today there is no official support for facebook chat. The only way to connect with Facebook chat is through a plugin. Grab the Facebook Chat Plugin for Pidgin and with it you can log into the Facebook servers, grab the buddy list, send/receive messages, add/remove friends, receive notifications, search for Facebook friends and set your Facebook status. Once you have installed this plugin, you will find Facebook listed among the supported IMs.

Enter your facebook login details and click Add. Once added, you will see the list of facebook buddies that are online instantly.

KeyBoard Disco

Cool Keyboard Tricks (Windows) : Make a Disco


Keyboards usually have small LED's which indicate whether different types of locks are activated or not. Here is a trick to use the lights of your keyboard in a more creative manner in Windows. This trick uses a simple Visual basic script which when activated makes your scroll lock, caps lock and num locks LED's flash in a cool rhythmic way which gives the perception of a live disco on your keyboard.

To make your own live disco, follow the steps given below:-
1. Open Notepad.
2. Copy paste the exact code given below:-
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
3. Save the file as Disco.vbs or "*.vbs".

Double click on the Saved file to see the LED lights on your keyboard go crazy and make your own cool disco. This trick has been tested on Windows XP, Windows Vista and Windows 7 and found to be working perfectly. You can disable the keyboard disco by starting Task Manager and ending the wscript.exe process.

Password Protect

Password Protect/ Lock folders in Windows without any Software


Most of us have private data. Not all of us have a private computer to keep that data. So, we just end up with other people viewing that data. Although password protecting software do work, it is almost useless to hide private data with these software(because we are always questioned as to what it is that we are hiding with the help of these software). Hidden folders do not work as they can be easily searched with Windows Search. So, we need an alternative way to create hidden password protected folders which only we can access. And that is exactly what we will learn in this post. With this trick, you can create a secure password protected folder in Windows which no one except you can access. To use this trick, follow the instructions given below:- 1. Open Notepad. 2. Copy and paste the exact code given below:-
cls
@ECHO OFF
title sreenivas6431.blogspot.com/
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== sreenivas6431.blogspot.com/ goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End


3. Click on the File Menu. Click on Save As.
4. Select All Types in the Save As Type dropdown menu. Save the file as *.bat or Locker.bat.
After creating the file, double click on the Saved file. A new folder will be created. Enter your data in the folder. Again, double click on the batch file. Type Y and press Enter. The folder will be hidden from view.
To re-view your folder, double click on the saved batch file. Enter password as " sreenivas6431.blogspot.com/" without quotes and press Enter key. This is also the default password. Your folder will be visible again.
To change the default password, edit the part of the code given in blue and enter your own password.
The overall usability of this trick can be improved by deleting the batch file after hiding your folder and re-creating it when you wish to access your folder again.
If you face any problem using this trick, you can write a comment and I will do my best to help you.

Note: This works on Windows 7, Windows XP and Vista. First try this on useless data to be sure and then only hide your personal data

Thursday, 21 June 2012

FLV Player

FLV Player


“Play FLV files with this compact utility” by Elena Santos about FLV Player FLV Player is a small, fast video player that will allow you to view FLV videos without a problem. Flash video (that is, FLV files) have quickly become a popular format for online videos. On the downside, not all players are able to open them, but with FLV Player you won't have that problem. It doesn’t support any other format, but in exchange for that it works fast and smoothly. FLV Player features a simply-designed interface with support for drag and drop, plus a few playing controls. It also allows you to watch the video in full screen and open an extra window with the video's metadata. There are no other options or features in FLV Player. Its only aim is to be the simplest, fastest FLV player you've ever seen, and it really achieves it. FLV Player lets you play FLV video on your computer in a snap, without any extra bells and whistles. Pros Works fast and smoothly Supports drag and drop Shows video's metadata Cons No extra features No support for other formats

Monday, 18 June 2012

unlock E1732 idea

How To Unlock Huawei E1732 Idea Netsetter 3G

Unlock idea net setter huawei e1732 - data card unlock software You have to download these software first 1. CDMA Workshop (Download It From This Link)
2. E1732 Downgrader (Download It From This Link)
Now just follow the steps carefully
Step1. First of all download above two links (you have to disable your antivirus)
Step2. Now Plug your E1732 idea net setter with any other operator sim and let it install its driver
Step3. Now just Right click on your MY COMPUTER ICON >> PROPERTIES >> DEVICE MANAGER >>Ports (COM & LPT) then you can see there something like HUAWEI Mobile Connect – 3G Application Interface (COM12) then com12 is your systems port number please note the port number
Step4. Now Run CDMA WOrkshop.Exe( v 2.7.0) and Click on Main and select the com port number in COM Settings (AT mode)box.

Step5. And then You have to click on Connect

Step6. Then Click On Read and Let it read your modem information and you can see your modem information on left panel.

Step7. Now Click on Security Tab >> Spc >> Default (nv_read) as SPC and Type 000000 in blank box and click on Spc and you can see the pop up window click on SEND.

Step8. Now Just go to Memory Tab >> NV Items >> And Click On Read you can see on pop up box now click on OK.
Step9. Now you will see NV Backup Box now in Last NV Item box type 9999 and click on ok and save it with any name. and it will backup your data let it be complete to 100% . and minimize CDMA Work Shop.


Step10. Now go to your second download application which is downloaded intially and Run E1732 Downgreder >> Accept Terms and Conation >> Then Click On Next and it will read your modem let it be finish then it will show your modem data then click on Start. In the process you will get massage like update failure after downloading program. then dont worry and click on OK.
Step11. Now Again Come to CDMA Workshop and come to Main Tab and click on Disconnect and unplug your modem.
Step12. Now Again Plug your modem and Run CDMA Workshop and check and select Com port(com12) as prefer we have done previously.
Step13. Then come on CDMA wokrshop and Select Com Port and click on Connect and navigate to Memory Tab >> NV ITEMS >> Click On Write
Step14. Now you can see one confirm box click on OK. then Click on Open then borwse and select the file which we have saved before


Step15. When the process will reach at 100% you can see success message then click on OK and From Main Tab Disconnect your modem and you are Done
Step16. Now just close your CDMA workshop (it shows a dailog box wiil appear confirm NO )and unplug your modem close everything you have opened and again plug your modem open your idea dashboard and select operator manually going to profile management and network settings and connect your modem k
Step17. For example if you are using tata docomo then go to profile management and click on add button and type APN: TATA.DOCOMO.INTERNET and dail no *99# and save as default that’s it and now go to networks and select your provider manually and register and simply go to connection and choose tata and connect and enjoy the unlock idea net setter huawei e1732. I just tried and succeeded k and if you want to use this in e150 model try once there is no problem for modem but I did not check so you please let me know it works with e150 net setter also k If any body having problems with downloading softwares please let me know and give me your mail id I will send personally to your mail k for that please join my site. If like my post Unlock idea net setter huawei e1732 - data card unlock software please hit me a thanks and if you have any doubts just clarify me by posting comment in Unlock idea net setter huawei e1732 - data card unlock software comment section ok
njoy guys...

Friday, 15 June 2012

USB security

USB security with crack

Computer Tricks

10 simple Computer Tricks


1.TRICK TO CREATE FOLDERS WITHOUT NAME =>Click on a FOLDER =>Right click and goto rename option =>Delete the old name =>Pressing ALT key type 0160 =>Now press enter =>You have created a folder without name
2.TRICK TO ADD YOUR NAME IN TASK BAR GOTO =>Start =>Control Panel =>Regional & Language Options Customize =>Time =>AM Symbol =>Enter your name Thats it,your name is added to your Task Bar
3.TRICK TO CREATE A AUTORUN CD =>Open notepad and type [autorun] OPEN=setup.exe ICON=iconname.ico =>save as autorun.inf on the desktop Write ur CD with the autorun file, ur desired icon for the CD & the setup file. iconname.ico is the name of the icon file which is desired for ur CD. =>Setup.exe is the name of the setup which u want to make it autorun.
4.TRICK TO CHANGE THE INTERNET EXPLORER TITLE Follow these simple steps 1)=>Go to Start 2)=>Type Regedit 3)Go to HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Window Title 4)Enter what you want appear in the title bar eg:YOUR NAME That’s it YOUR NAME will be displayed.
5.TRICK TO CLEAN RAM WITHOUT SOFTWARE =>To clean ur RAM without software =>Open notepad & type FREEMEM=SPACE(64000000) =>Save it as ram.vbs and close it =>Now run the script by double click on ti =>now your pc work fast
6.TRICK TO DISABLE AUTOPLAY OF PENDRIVE Disable autoplay of pendrive to avoid virus activation: go to run =>Run =>Type gpedit.msc =>Computer configuration =>Administrative Templates =>System (In the Right side) =>Go to Turn off Autoplay =>Enable =>All drives
7.TRICK TO FIX CORRUPTED FILES IN WINDOWS XP =>Load XP cd into cd drive =>Go to Run =>Type sfc/scannowok =>THEN copy and paste the lost file from cd
8.TRICK TO CONVERT TEXT INTO VOICE A hidden trick to convert ur text to voice without any software. =>Try out this go to Run type =>control speech =>write any text & speech it
9.TRICK TO OPERATE PC WITHOUT MOUSE =>Here is a simple trick to operate COMPUTER without MOUSE PRESS the left SHIFT+ALT+NumLock+ok Now you can use your number keys to act as mouse Note:It will not disable your mouse To return back to previous state again press these combination keys together.
10.TRICK TO SHUTDOWN PC 100 TIMES FASTER =>Press ctrl+alt+del =>open task Manager =>click the shutdown Tab. =>While holding ctrl key, =>Press TURN OFF. with this simple trick you can shut down your pc 100 times faster.

Hiding Folders

Hiding folders is an easy to do task inMicrosoft Windows XP and Win7

. This is a great way to keep all your personal files un-findable. To do this, create a new folder some where. Then ‘Right Click’ and select Rename Now press and hold down the ‘Alt’ key and type in 0160 you can type Dot(.) which wil miss in ur Desktop image This will get rid of the text. Now ‘Right Click’ on the folder, and ‘click’ on Properties Now ‘click’ on the ‘Customize’ tab. Then click on Change Icon Scroll to the right until you find a few white icons. ‘Click’ on one of them, and then click on ‘Apply’ and then ‘Ok.’

Administrator Hacking

Hack administrator from Guest account in XP

If u wanted to hack your college pc with guest account/student account so that you can download with full speed there ? or just wanted to hack your friend’s pc to make him gawk when you tell your success story of hacking ? well,there is a great way of hacking an administrator account from a guest account by which you can reset the administrator password and getting all the privilages an administrator enjoys on windows..Interested ? read on… Concept ====== Press shift key 5 times and the sticky key dialog shows up.This works even at the logon screen. But If we replace the sethc.exe which is responsible for the sticky key dialog,with cmd.exe, and then call sethc.exe by pressing shift key 5 times at logon screen,we will get a command prompt with administrator privilages because no user has logged on. From there we can hack the administrator password,even from a guest account. Prerequisites Guest account with write access to system 32. Here is how to do that - Go to C:/windows/system32 Copy cmd.exe and paste it on desktop rename cmd.exe to sethc.exe Copy the new sethc.exe to system 32,when windows asks for overwriting the file,then click yes. Now Log out from your guest account and at the user select window,press shift key 5 times. Instead of Sticky Key confirmation dialog,command prompt with full administrator privileges will open. Now type “ NET USER ADMINISTRATOR aaa” where “aaa” can be any password you like and press enter. You will see “ The Command completed successfully” and then exit the command prompt and login into administrator with your new password. Congrats You have hacked admin from guest account. Further.. Also, you can further create a new user at the command prompt by typing “NET USER sree6431 /ADD” where “sree6431” is the username you would like to add with administrator privileges. Then hide your newly created admin account by - Go to registry editor and navigate to this key [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList] Here create a new DWORD value, write its name as the “user name” that u created for your admin account and live with your admin account forever :

USB Usage Blocking

Make USB storage devices totally useless without your permission.

I am going to show you how you can make USB storage devices totally useless without your permission. 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. that's all....make ur PC safe....more tricks to come....rep n reply if u like

Idm with crack

Internet Download Manager with crack


Internet Download Manager 6.08 (IDM) is a tool to increase download speeds by up to 5 times, resume and schedule downloads. Comprehensive error recovery and resume capability will restart broken or interrupted downloads due to lost connections, network problems, computer shutdowns, or unexpected power outages. Simple graphic user interface makes IDM user friendly and easy to use.Internet Download Manager has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Unlike other download managers and accelerators Internet Download Manager segments downloaded files dynamically during download process and reuses available connections without additional connect and login stages to achieve best acceleration performance. Internet Download Manager 6.08supports proxy servers, ftp and http protocols, firewalls, redirects, cookies, authorization, MP3 audio and MPEG video content processing. IDM integrates seamlessly into Microsoft Internet Explorer, Netscape, MSN Explorer, AOL, Opera, Mozilla, Mozilla Firefox, Mozilla Firebird, Avant Browser, MyIE2, and all other popular browsers to automatically handle your downloads. You can also drag and drop files, or use Internet Download Manager from command line. Internet Download Manager can dial your modem at the set time, download the files you want, then hang up or even shut down your computer when it's done.

Thursday, 14 June 2012

Java Decompiler

Cavaj java Decompiler

Cavaj Java Decompiler is a graphical freeware utility that reconstructs Java source code from CLASS files. You can decompile Java applets, JAR, and ZIP files producing accurate Java source code. Browse the reconstructed source code with the Class View for instant access to methods and fields. Cavaj Java Decompiler is a standalone Windows application, it doesn't require you to have Java installed.

Monday, 11 June 2012

Secret Disk

Secret disk


Secret Disk is a software to create secure hard disk on your computer which may be locked and unlocked with a password to store your private files. When locked Secret Disk doesn't appear in Windows system and completely invisible with all contents. When unlocked Secret Disk appears as usual (one more) hard disk on your PC. You can keep any files and folders there as usual. Works with any third-party software, games and media, and no additional hardware required! Lets say you share computer, but still want to have some private files on it. Or you just dont want accidental person (like computer tech repair) find some secret files on your PC. There is a lot of software that can encrypt/decrypt your secret files but it can take a lot of time if you have many. Our solution lets you have separate disk on your PC which may be locked and unlocked with a password within one second! Moreover, when locked it is invisible in the Windows system. How it works? Just install Secret Disk and choose a password. Then, start Secret Disk. Press unlock button, enter your password and you will see one more disk X: appears in My Computer area. You can now start working with your private files to save them to secret disk X. When you need protection just click icon in the tray area to lock secret disk and it will disappear within one second with all contents! When you want your files back, open Secret Disk tool, press Unlock button and enter your password. Its easy! Power failure In case of power (or Windows) failure secret disk will be locked on next system boot. It happens automatically because secret disk information are kept in memory and if memory fails secret disk will not be restored on next system logon. This adds maximum protection for your files located on the disk. 100% Compatible Secret disk compatible with any files and folders. You can work with it as usual, as with your My Documents folder. Security level Secret Disk does not encrypt any files. Secret Disk only limit access to secret location with your files and ties virtual disk to it when needed. This will provide you enough security to hide your files from accident person taking control over your PC, but doesn't guarantee top level security (because files stored on your disk 'as is', without encryption).

Zoom It

ZOOMIT V 4.2

Introduction ZoomIt is screen zoom and annotation tool for technical presentations that include application demonstrations. ZoomIt runs unobtrusively in the tray and activates with customizable hotkeys to zoom in on an area of the screen, move around while zoomed, and draw on the zoomed image. I wrote ZoomIt to fit my specific needs and use it in all my presentations. ZoomIt works on all versions of Windows and you can use pen input for ZoomIt drawing on tablet PCs. Using ZoomIt The first time you run ZoomIt it presents a configuration dialog that describes ZoomIt's behavior, let's you specify alternate hotkeys for zooming and for entering drawing mode without zooming, and customize the drawing pen color and size. I use the draw-without-zoom option to annotate the screen at its native resolution, for example. ZoomIt also includes a break timer feature that remains active even when you tab away from the timer window and allows you to return to the timer window by clicking on the ZoomIt tray icon.

Trick2

4.Safely Remove Your USB Drive Without Any Error

Generally it happens with you so often that when you want to remove your USB by clicking on “Safely Remove Hardware” option in system tray it will give you an error message like “The Device Generic volume cannot be stopped right now. Try stopping the device later”. If you ignore this error message and remove USB drive, your USB drive may be damaged. To fix this problem you can use a free application “Unlocker”, which helps you to remove your USB drive safely. Download Unlocker 1.8.7 and install it. Right click on USB drive and select “Unlocker”. An “Unlocker” window will appear. Click on “Unlock All” to stop all running program in USB drive.
Now safely remove USB drive by click on “Safely Remove Hardware” option from the system tray.

Trick1

How To Fix Major USB Problems

If you use Usb device then you should have faced various type of problems with your Usb stick or system settings. Most common cases are that “Usb Device Not Recognized”, “Windows was unable to complete the format”, “The device can not start[code 10]", "Problem ejecting the USB mass storage device". The problems can be found for various reason. Here We have discussed about the solution of those problems with the Usb device (Re-enable Task Manager When Disabled by Administrator ).
1.Fix the problem “USB Device Not Recognize
Sometimes when you plug in USB device in the port of your PC/Laptop, you will get a serious error message “USB Device Not Recognize”. To fix this problem follow the steps. Press Windows Key + R and type “regedt32.exe”. Navigate to HKEY_LOCAL_Machine\SYSTEM\CurrentControlSet\Services\Usb. If the Usb key is not exist then create “usb” key under “Services”. Under “Usb” key create a new DWORD value. Right click on the right pain of the “Rgistry Editor” and select “New > DWORD value”. Rename this newly created DWORD value as “DisableSelectiveSuspend”. Right click on “DisableSelectiveSuspend” and select “Modify”. Put 1 in “Value data” field. Click on “OK”.
Reboot your computer. You can also try a another way. Remove the power supply without Log Off your computer and restart the computer. This process seldom works.
2.Format USB Drive In Command Prompt

Generally we format USB drive by right clicking on the "Removable drive" in "My Computer" Window and selecting “Format”. But sometimes Windows can’t format it and gives a message “Windows was unable to complete the format ”. By the following steps you can format your USB drive in command prompt and solve this problem. Go to “Start > Run” and type “cmd”. Click on “OK”. In the commend window type “format G:/FS:FAT32”. Here “G:” is my USB drive letter (it may be different for you) and “FAT32” is the file system.
Now insert the USB stick to your computer and hit "Enter". Now the it will format your USB stick in Fat32 file system.
3.Fix the problem “Error code 10”

Sometimes whenever you plug in USB drive in Windows XP computer it shows an error message like “This device cannot start (code 10) ”. To fix this error problem follow the steps listed below. Go to “Start > Run” and type “Devmgmt.msc”. Click on “OK”. The “Device Manager” dialog box will appear. Expand the “Universal Serial Bus Controllers”. Right click on “USB Mass Storage Device” and select “Properties”. Under the “General” tab you will see the “Device status” (Make sure your USB device is connected). If the “Device status” says that “Error code 10” or something like that then you have to uninstall all of your USB Controller.
To uninstall the USB Controller right click on each of the USB Controller under “Universal Serial Bus Controllers” and click on “Uninstall”. Restart your computer. The USB Controllers will be automatically re-installed.

Sunday, 10 June 2012

Winrar


WinRAR is a powerful compression tool with many integrated additional functions to help you organize your compressed archives. WinRAR puts you ahead of the crowd when it comes to compression. By consistently creating smaller archives, WinRAR is often faster than the competition. This will save you disc space, transmission costs AND valuable working time as well. WinRAR supports all popular compression formats (RAR, ZIP, CAB, ARJ, LZH, ACE, TAR, GZip, UUE, ISO, BZIP2, Z and 7-Zip). WinRAR is ideal for multimedia files. WinRAR automatically recognizes and selects the best compression method. The special compression algorithm compresses multimedia files, executables and object libraries particularly well. WinRAR allows you to split archives into separate volumes easily, making it possible to save them on several disks for example. WinRAR is also ideal, if you are sending data through the web. Its 128 bit password encryption and its authenticated signature technology will give you the peace of mind you have been looking for. WinRAR is shareware, meaning you have the chance to thoroughly test it. The program can be used absolutely free of charge for 40 days! WinRAR licenses are valid for all available language and platform versions. If you have purchased several licenses, you can even mix versions to meet your own personal needs.

TimeLine Remover

This is used to remove timeline in ur facebook

1GB to 2GB converter

Convert 1gb to 2gb memory card

Talk It

Talk It!, also called TalkAny, was a popular text-to-speech (TTS) software by SoftVoice, Inc. and was originally included in the Windows 95 version of Microsoft Plus! under the name of "Microsoft Plus! for Kids". It was used to teach children pronunciation of words and for simple text-to-speech uses, including narration and accessibility. Talk It! came in two languages, Spanish and English. It was one of the first programs to properly pronounce two different languages. click here to Download

Mp3 Cutter and Joiner


Download with key and njoy Fast MP3 Cutter Joiner cuts and trims a large MP3 file (up to 10 GB) into multiple smaller pieces, and joins multiple MP3 files into a single MP3 as well. Fast MP3 Cutter Joiner cuts MP3 file by file size, pieces count, time duration, and custom selections. The software provides a slider bar to visually position a cut points where you want to cut. You can also preview every custom piece, and cut with forward and backward overlap, fade-in and fade-out. The MP3 cutter keeps ID3 tags information and supports to custom title of target MP3 ID3 tag. For example: add sequence number to title, which makes you can identify output pieces in your MP3 player, iPod, and iTunes easily. To save your time, Fast MP3 Cutter Joiner also supports batch cut, you can cut a batch of MP3 files at a time. The software cuts MP3 files directly without re-encoding, so it is fast and exactly keeps sound quality of original MP3 files. The MP3 joiner accepts any MP3 files; even they're encoded different encoding parameters such as sample frequency, bit rate, and channels. And you can customize encoding parameters of target MP3. The software also supports batch join. The feature allows you to insert one or more MP3 files to beginning of a batch MP3 files, and append one or more MP3 files to end of a batch MP3 files. Fast MP3 Cutter Joiner is full compatible with Vista and Windows 7 (both 32-bit and 64-bit editions). Top 8 Benefits of Fast MP3 Cutter Joiner: Cut MP3 files You can cut a large MP3 file into multiple smaller pieces by file size, pieces count, time duration or custom selections. The software also support batch cut. Join MP3 files Fast MP3 Cutter Joiner joins multiple MP3s into a single file. The software supports MP3 file encoded with all kinds of encoding parameters. You can join MP3 files in batch using the software. Fade-in and fade-out The feature can avoid a click while the cut tracks changes. Cut with overlap Fast MP3 Cutter Joiner supports forward and backward overlap for cut pieces. It's very useful when you are cutting an audio book. Fast and no sound quality loss Fast MP3 Cutter Joiner cuts MP3 files directly without re-encoding, so it's fast and exactly keeps sound quality of original MP3s. Built-in ID3 tags editor You can set ID3 tags (such as track number, title, artist, album, genre, year and comment) for cut pieces and join target MP3 using built-in ID3 tags editor. Save your time Fast MP3 Cutter Joiner is very easy-to-use; several clicks are OK. And it also supports batch cut; you can cut a batch of MP3 files at a time. No experience of MP3 necessary You can use the software without knowledge of MP3.

Typing Master

Your Personal Typing Tutor Meet TypingMaster Pro, the personal touch typing tutor that adapts to your unique needs. The program provides customized exercises and helpful feedback to guide you step by step to professional keyboarding. As a result your typing speed will increase significantly saving you a lot of valuable work time. Adjusts to Your Progress At every stage training is adjusted to your personal progress. Weak spots are pinpointed and rapidly eliminated with additional exercises. Thanks to this personal approach you can put your new skills into action after only 3 to 5 hours of training. Accelerate your typing speed With TypingMaster a novice keyboard user can learn to type many times faster. Clumsy typing will no longer interrupt the flow of your thoughts! Get rid of typos Get rid of those annoying typing errors and increase the quality of your texts. Save valuable work time Learning to touch type will help save dozens of working hours each year as you type faster and do not need to correct errors constantly. Focus on your text and ideas With fluent keyboarding skills you can put your brain power into expressing your thoughts instead of finding the right keys. Improve your ergonomics Natural, efficient finger movements and no need to look at the keyboard results in less stress in fingers, arms and neck. Be confident with computers Improved typing skills will help take full advantage of your computer as you become more confident with the keyboard.