The Twelve-Factor App
Insights and ideal practices on working with SAAS products. Targeted towards “Any developer building applications which run as a service. Ops engineers who deploy or manage such applications.”
What feature would improve the web?
Some of the stuffs I prefer to have now!
- all HTML5 features supported by all browsers. ~chrisreister
- force update IE. ~Fallion
- A rock solid native WYSIWYG form element. With so much content dev being done online, this is an area that seems really behind. ~reinink
Ruby GEM bcrypt
How To Safely Store A Password
Use
bcryptWhy Not {
MD5,SHA1,SHA256,SHA512,SHA-3, etc}?These are all general purpose hash functions, designed to calculate a digest of huge amounts of data in as short a time as possible. This means that they are fantastic for ensuring the…