Create a Password Protected ZIP
Have you ever wanted to put very basic security (a passphrase) on a file?  You can do so if you ZIP the file -- let's have a look at how you can password-protect a ZIP file!
Creating a password protected ZIP file from command line is done so via the following command:
# zip -er {file name to be created} {source directory or file}
zip -er my-generated-file.zip source-file.rtf
When someone tries to unzip the file, they'll be prompted for a password.
Don't be under any illusion that a password makes the ZIP file too secure:  ZIP files don't self-destruct after a given number of attempts so a brute force effort to crack the password would ultimately be effective.  If you do, however, want a very basic level of security for the contents of a file, this command will get you there.
![39 Shirts – Leaving Mozilla]() - In 2001 I had just graduated from a small town high school and headed off to a small town college. I found myself in the quaint computer lab where the substandard computers featured two browsers: Internet Explorer and Mozilla. It was this lab where I fell... 
![JavaScript Promise API]() - While synchronous code is easier to follow and debug, async is generally better for performance and flexibility. Why "hold up the show" when you can trigger numerous requests at once and then handle them when each is ready?  Promises are becoming a big part of the JavaScript world... 
![Downloadify:  Client-Side File Generation Using JavaScript and Flash]() - The following tools is in its very beta stages and works intermittently.  Its so damn useful that I had to show it off now though!
I recently stumbled upon Downloadify, a client-side file generation tool based on JavaScript and Flash ActionScript code.  A... 
![PHP / MooTools 1.2 Accordion Helper]() - The MooTools Accordion plugin seems to be the plugin that people seem to have the most problems with.  It's an awesome plugin, so I can see why so many people want to use it, but I think that may be part of the problem.