How to recover permanently deleted files in Windows

In this post, I'm gonna show you how to recover deleted files from recycle bin. Its by using a software called Recuva. You can download Recuva from here. After downloading, Install it.
Recuva Can recover most deleted files that exists in your computer in the form of dead files. Windows have no access to these dead files.








Step 1: Open Recuva.

Step 2: Give the file format of the deleted file, give the option 'All files', if you don't know the format.













Step 3: Click next and give the location of the deleted file. select, I'm not sure if you don't know the location.













Step 4: Now click next. and click on start button.













Step 5: after you get the recovered files, Select the file you want to recover and click on recover button.











Now enjoy the power of fearless deleting...

Continue Reading

Go Back Function using JavaScript

"Go Back" function using Javascript. In this post, you'll see how to add a "Go Back" button to a webpage.














The code for the button:

<input type="button" value="Go Back one page" onclick="history.back(-1)" />
enjoy.
Continue Reading

Making Text Blurry in CSS.

In this post, you'll see how to make any text blurry using CSS. its simple.















.blur {
   color: transparent;
   text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
The CSS selector 'text-shadow' is compatible with more browsers. after making its color transparent, and having a shadow makes it appear as blurry.
Continue Reading

Create a folder with invalid file name in Windows

Have you ever tried to make a folder named ‘CON’ ? Its impossible, because it’s an invalid folder name for windows. There is many such names like: CON, AUX, PRN, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8 and LPT9. But you can now create such folder with a simple trick.









Step 1: Open Command Prompt, then Type

mkdir \\.\E:\CON
The red coloured text is the folder name here and the Blue Colour, Drive alphabet. Then Verify that folder by

dir \\.\E:\CON
Now that folder is Created. In this way you can create all the file names mentioned above. To delete that folder, type,

rmdir \\.\E:\CON
Enjoy.
Continue Reading

Jovel's Blog Scroll bar using CSS.

Seeing your old scroll bar bores you ? No More Boring... here's a good looking scroll bar for websites and Blogs, Created with CSS.














Best Viewed in Google Chrome.

Here's the CSS code.

::-webkit-scrollbar{ width: 8px; } ::-webkit-scrollbar-track{ -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); -ms-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 0px; } ::-webkit-scrollbar-thumb{ border-radius: 0px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); -ms-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); }

for Blogger users,
Select your blog and go to Template -> Customize., Click the Advanced tab and select Add CSS then paste this code.

For Websites,
Paste this code before </style> Tag.

Enjoy your new look of Scroll bar.
Continue Reading

How to create a Bootable USB Stick for Ubuntu.

Recently I've Downloaded the latest Ubuntu 13.04 Disc image file. For burning purpose, I went to a nearest store to buy DVD but, there is no stock there. Its really inconvenient to buy CD that is out of stock, A better way is USB stick and Most newer PCs supports USB booting.











Requirements.


1 USB Stick with atleast 2GB Free Space.


Steps.


1. Insert your USB Stick.


2. Download Universal USB Installer from here.


3. Select your Linux Version from the Dropdown list.




4. Now from the second step, Browse for your Ubuntu .iso file.














5. From the third step, Select your USB. (mine J:\Spike 14GB)















6. You're almost done, now click on Create button.

7. A dialog Box Appears, Click Yes.















8. Now you're USB will be processed to be a Bootable USB Stick.















You Can format your USB to make it the way it was.

Continue Reading