5 Common Android Problems and Solutions

1. Problems in Connectivity
Android phone sometimes misbehaves while connecting to Wi-Fi, Bluetooth etc. while facing such problems, Turn on airplane mode for 30 secs and Turn it off now try to connect again. Or Restart your phone.

2. Crashed Apps
Apps can crash anytime for some reasons. If you have such a problem, Touch and hold Home button(for most phones) to enter the Multitask menu. Force close the app by swiping it, Then reopen it.

3. Syncing error
first of all, Check your network connection. Check that the App that you want to sync isn't down. Ensure that the password you've entered is correct. If you're still having problem, Remove that accout you want to sync then add it again.

4. Text Messages Stalled
Connect your device to internet through either Cellular or Wi-Fi. Resend it again. If prob continues, Restart your device or consider installing 3rd party messaging apps.

5. Hanged Screen
It's a common problem in android device that it sometimes becomes irresponsive and you might want to Destroy it. But Doing such physical damages may make things worse.Try to restart your device or remove your battery then install battery again. Now turn on your phone.
Continue Reading

How to hide folder with password in Windows

It's easy to hide folder in linux, by just adding a dot infront of the name of a folder, but in Windows, you'll have to create one batch file for this. I'll tell you how,

Copy and paste this in Notepad,

cls 
@ECHO OFF 
title Folder Private 
if EXIST "HTG Locker" goto UNLOCK 
if NOT EXIST Private goto MDLOCKER 
:CONFIRM 
echo Are you sure you 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 Private "HTG Locker" 
attrib +h +s "HTG Locker" 
echo Folder locked 
goto End 
:UNLOCK 
echo enter the key 
set/p "pass=>" 
if NOT %pass%== PASSHERE goto FAIL 
attrib -h -s "HTG Locker" 
ren "HTG Locker" Private 
echo Folder Unlocked successfully 
goto End 
:FAIL 
echo Invalid password 
goto end 
:MDLOCKER 
md Private 
echo Private created successfully 
goto End 
:End
The Black colored letter Indicates the Password, change it to your desired password. Then Save this as key.bat, whatever the name be, but .bat extension is necessary. Save this wherever you want. opening this file will create a new folder in the folder you've saved the .bat file named Private. Copy and paste whatever you want to hide, to this folder. Again, Open this batch file and it will ask you 'Are you sure you want to lock the folder(Y/N)' then type y and press enter. This will hide the folder. to unhide the folder, open Batch file again and it will ask for your Password, type your password and Press enter. 
Continue Reading

How to permanently delete files

In the last post, I've told you on recovering Permanently deleted files, Now I'm gonna show you how to Permanently delete file that 'Recuva' Cannot Recover. For this, you have to download a Software called Eraser. You can download it here.









Step 1: Open Eraser software.
Step 2: Press CTRL+N to create a new task.
Step 3: If you want, give a task name, select the task type, which means to run the task now or later or at a specific time.










Step 4: click on Add data button give erasure method(leave it if not known.) Add the path of the file or whole files in a folder or a drive or recycle bin, that you want to delete. and click on Ok button.









Step 5: if you've clicked on Run Immediately it'll be done as soon as you click on ok button, if you've clicked Run Manually, Right click that task and select Run now button.
Enjoy deleting without traces...
Continue Reading

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