Posts

How To Password Protect a Folder in Windows 10

Image
     We all have computer files we'd like to keep secret from the world. Fortunately, in Windows 10, you can tuck those unmentionable plans or files in a secret folder that is password protected, and you can do it without buying any additional software.  A note before you start:    We've recieved comments about issues people have run into with this how-to. So, we went back and performed multiple rounds of testing internally, and can now confirm that following this process closely, step-by-step, should work.    Just to be safe, try it out once using a file that isn't important, so you can make sure it works for you. Also, yes, the FolderLocker file can be reverse engineered by someone who understands the process, but this isn't meant to keep tech-savvy folks out, just nosy family members who you don't trust.    Here's how to create a folder that you can fill with files you want to keep secret, lock it, open it and repeat. How To Lock a Folder Wi

How to Make a Fake Virus With a Batch File

       In this post I will be showing you how to make a batch file, that should fool your friends into thinking that their computer has a virus. It will look something like the above image when it's running. At the end of the program a message will pop up that says "Your computer has committed suicide. Good-bye". Then the computer will shutdown. To cancel the shutdown process type "shutdown /a" into command prompt and press enter. Step 1: Open Notepad Step 2: Write the Program If you have experience writing batch files feel free to modify and improve the below code, If you don't have experience than simply copy and paste the code into notepad. Save the file as a ".bat" file, such as "Virus.bat". @echo off title Cyber Attack Sequence Initiation color 02 echo Warning-Complete File Corruption imminent. timeout /t 3 /nobreak >nul CLS echo Complete file corruption and computer shutdown in 10 timeout /t 1 /nobreak >nul ClS e

A Web Standards Checklist, How to make a proper website

A web standards checklist    The term web standards can mean different things to different people. For some, it is 'table-free sites', for others it is 'using valid code'. However, web standards are much broader than that. A site built to web standards should adhere to standards (HTML, XHTML, XML, CSS, XSLT, DOM, MathML, SVG etc) and pursue best practices (valid code, accessible code, semantically correct code, user-friendly URLs etc). In other words, a site built to web standards should ideally be lean, clean, CSS-based, accessible, usable and search engine friendly. About the checklist This is not an uber-checklist. There are probably many items that could be added. More importantly, it should not be seen as a list of items that must be addressed on every site that you develop. It is simply a guide that can be used: * to show the breadth of web standards * as a handy tool for developers during the production phase of websites * as an aid for developers w