Joined November 2013
·
Achievements
80 Karma
0 Total ProTip Views
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
Nephila Komaci
Have at least one original repos where PHP is the dominant language
Nephila Komaci 3
Have at least three original repos where PHP is the dominant language
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Forked
Have a project valued enough to be forked by someone else
Charity
Fork and commit to someone's open source project in need
T-Rex
Have at least one original repo where C is the dominant language
Raven
Have at least one original repo where some form of shell script is the dominant language
Hello,
The crypt() function used for this effectively ignores characters beyond 8; you'll see this noted in Apache's documentation as well:
http://httpd.apache.org/docs/2.2/misc/password_encryptions.html
More securely:
$ printf "${username}:`openssl passwd -apr1`\n" >> .htpasswd
This also reads the password from STDIN via openssl, so it doesn't leave traces in shell history.