Friday, October 7, 2016

WiFi access using QR code and your font creator

Grant WiFi access Using QR code



Either you have asked this or a friend has asked this of you-->  Mate,what's your wifi password? but now, instead of handing over your password or setting up a guest network, you can direct their attention to a QR code. Simply head to  http://www.qrstuff.com/website or QRcode-generator.com... then enter your Wi-Fi details...they will ask u to fill SSID,Password and network type......and a QR code will be generated. This QR code grants access to your Wi-Fi...

You can print it off and then stick it anywhere in your house for a friend to scan whenever they visit.



2) Create  a font out of your handwriting :
 Handwriting font creator is a website which convert your own handwriting into a typeface you can download to your computer and use it anywhere...

protect your passwords easily without any software

 How to create a password protected folder in your personal computer?

Step 1: Create a text file.Step 2: Copy following code as it is:
"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%==PASSWORD 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: Enter your password (without any double quotes) where "PASSWORD"  is mentioned.Step 4: Save the file as locker.bat

And you are done with your own password protected folder. I have been using this method from quite a while. Simplest way, isn't it?