One of the earliest code snippets provided on this site was one that discussed how to create an easier random password. This post discussed two examples: one that showed how to create a random password of only upper and lower case letters and one that always set a specific word.
I understand that some sites have users that are not very computer savvy, and I often get the question of how does one generate a random password that is both secure and easy to use. So, I came up with this little example.
This code snippet will generate a password that is a combination of a random word and a random 2 digit number. This allows you to generate random passwords that will be easier on the user and still have some level of security. Continue Reading →