How to Create a Password Protected Folder without any Extra Software

12:27 PM | BY ZeroDivide EDIT
There are a lot of methods that you can use to create a password protected folder, most of which require the use of some third party software. Using this neat method you can hide your folders with a quick batch script.
It’s important to note that this will not actually conceal your data from somebody who knows what they are doing.
Note: if you are a beginner you should not do this. We get emails once a week from people that don’t know what they are doing and complain they can’t find their files anymore. We also have instructions at the bottom for how to see the files again should you forget how to see them.

Create Your Password Protected Folder

Before you get started you need to create a folder that will house your password protected folder, this is just an ordinary folder and can be located anywhere and named anything.
image
Navigate into your newly created folder and create a new Text Document. This can easily be done from the context menu.
image
Open the document, now paste the following code into the contents of the document:
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 password to unlock folder 
set/p "pass=>" 
if NOT %pass%== PASSWORD_GOES_HERE 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
Change the PASSWORD_GOES_HERE text to the password you want to set. Now go ahead and save the file as locker.bat.
image
Once the file is saved as a batch file you can delete the original text file.
image
Now run your batch file by double clicking on it–the first time you run it, it will create a folder called Private. This is where you can store all your secret things. When you have finished adding all your stuff to the Private folder, run locker.bat again.
image
This time you will be asked if you sure that you want to lock the folder, press the “Y” key and hit enter to lock your folder.
image
You will see that your Private folder quickly disappears.
image
If you run the script yet again, you will prompted for a password.
image
If you enter the same password as you set in the script the Private folder will reappear if you enter the incorrect password the script will just Terminate.

How to See the Files Again

Most people don’t know how to show system files, but anybody who has some experience will probably be able to quickly figure it out in the Folder Options. To see the files again, all you have to do is uncheck the boxes for “Show hidden files, folders, and drives” and uncheck the box for “Hide protected operating system files”.

But any ordinary user who unchecks the box will most probably be scared off by the warning message that appears.

The second way someone could comprise the folder is to open the batch file and read your password. It’s definitely not a really secure way to hide your files, but it is fun.
Attribution note: We found this script on dozens of different web sites going back many years. We have no idea who first created the script, so we’ve omitted any sort of attribution link. If you do have proof that you first created the script, contact us and we’ll adjust the article accordingly.

If You Forget Your Password

Seems like once a week somebody writes in asking how to figure out the password they set. And the answer is really simple: Right-click on the locker.bat file and choose Edit.

Then you can see the password you set in the file.

How to Post Mp3 in Blog Post

2:22 PM | BY ZeroDivide EDIT
Note: Upload in idrivesynch or stramable clouds

Ubuntu Command Lines : Top

6:53 AM | BY ZeroDivide EDIT
Ubuntu and most Linux distributions have a software program quite similar with the Command line in Windows, which is called "Terminal." Like the Command line, Terminal has a wide variety of uses for computer users of all skill levels, from the casual user to the experienced programmer. Learning how to use Terminal can greatly enhance your ability to use your Linux computer to its full potential.

Steps

  1. 1
    First off, a little bit of information on what different commands associated with files and directory mean.
    • sudo ("superuser do"): A very common expression which indicates that the taken action must be verified with the admin password.
    • cd ("change directory"): With this command you can navigate your way throughout the system. Simply typing "cd" or "cd ~" will take you to the homefolder, which is the folder you are located in by default when starting up a Terminal session.
      • cd / - Takes you to the root directory.
      • cd .. - Takes you up one directory level.
      • cd - - Takes you to the previous directory.
    • pwd ("print working directory"): It displays your location in the system.
    • ls ("list"): Lists all files in current directory. Typing "ls ~" will show you the files in your home folder and adding on a folder name shows a list over the files in that specific folder. For example will "ls ~/Desktop" show you the files in yourDesktop folder.
    • cp ("copy"): Allows you to copy a file. To do so, add the name of the file you desire to copy along with the command as long as the file is located in the directory you have browsed to. Otherwise, type "cp ~/<file path>" in order to specify where the file you want copy is located.
    • mv ("move"): With this command, you can rename or move a file. If you want to rename the file "big" to "bang", you may want to type "mv big bang". This requires that you have browsed to the correct directory or that you specifies the file path. When typing "mv bang ~/Desktop", the file "bang" will be moved fromhome to Desktop, but if you want to rename the file as well, add the new file name next to the current name in the command.
    • rm ("remove"): Simply removes a file. Just specify the file path/file name.
      • rmdir ("remove directory"): Removes an 'empty' directory.
      • rm-r ("remove recursively"): Removes a directory along with its content. The fact that you should specify the directory path is self-explaining.
    • mkdir ("make directory"): Allows you to create a directory. Example: "mkdir private files" will create a directory named "private files" (Located in homedirectory unless you have browsed somewhere else with the terminal or specified a path for the new directory)

.svg tutorial

2:23 AM | BY ZeroDivide EDIT

Yahoo

10:10 PM | BY ZeroDivide EDIT
The word "yahoo" is an acronym for "Yet Another Hierarchical Officious Oracle". The term "hierarchical" described how the Yahoo database was arranged in layers of subcategories. The term "oracle" was intended to mean "source of truth and wisdom", and the term "officious", rather than being related to the word's normal meaning, described the many office workers who would use the Yahoo database while surfing from work. However, Filo and Yang insist they mainly selected the name because they liked the slang definition of a "yahoo" (used by college students in David Filo's native Louisiana in the late 1980s and early 1990s to refer to an unsophisticated, rural Southerner): "rude, unsophisticated, uncouth." Filo's college girlfriend often referred to Filo as a "yahoo." This meaning derives from the name of a race of fictional beings from Gulliver's Travels.