I read Mastering Bitcoin a while back. It’s a great book on the low-level technological underpinnings of Bitcoin. I have been studying and exploring the Bitcoin ecosystem. It’s fascinating, but there has been a lot of interest in the wider…
I read Mastering Bitcoin a while back. It’s a great book on the low-level technological underpinnings of Bitcoin. I have been studying and exploring the Bitcoin ecosystem. It’s fascinating, but there has been a lot of interest in the wider…
Useful for Integration Testing Getting JSON while doing a protractor test: Just use request lib. http://stackoverflow.com/questions/28080029/use-e2e-protractor-test-http-result-for-url Debugging Protractor Tests https://github.com/angular/protractor/blob/master/docs/debugging.md An example protractor test: https://github.com/juliemr/protractor-demo/blob/master/howtos/browserlog/spec.js Best way to parse a query string with AngularJS without using html5mode http://stackoverflow.com/questions/20692369/best-way-to-parse-a-query-string-with-angularjs-without-using-html5mode Angular Docs…
Bcrypt password hashing in Nodejs: https://www.npmjs.com/package/bcrypt-nodejs It’s important to hash passwords so, if your database is somehow leaked, the attacker can’t retrieve user passwords. Bcrypt is better than MD5 because it is designed to be memory bound and thus much…
I’m working on some signup flows in NodeJs today. Login/Signup/Confirm/Forgot Password/Etc. Here’s the stuff I looked up: Send email with Node JS : https://nodemailer.com/ How to implement password reset in NodeJS: http://sahatyalkabov.com/how-to-implement-password-reset-in-nodejs/ Password Strength Estimator: https://github.com/dropbox/zxcvbn Recaptcha integration with NodeJS:…
Recent Comments