|
You are here |
jensrantil.github.io | ||
| | | | |
techsavvypriya.wordpress.com
|
|
| | | | | I've learnd a very important thing in my whole career as a developer, IDE is my bow and extensions are my arrows.It depends on me to choose the best bow and best arrows , of course, I choose VSCode for that and the number of best VSCode extensions. There are thousands of extensions in the... | |
| | | | |
blog.neverendingqs.com
|
|
| | | | | Hobbyist software developer by night. | |
| | | | |
pydev.blogspot.com
|
|
| | | | | PyDev can now be used for Python development on Visual Studio Code ! The first release already provides features such as code analysis... | |
| | | | |
danq.me
|
|
| | | Quick Links Download from RubyGems.org Source on GitHub Mobile-OTP standard About the project This RubyGem implements the Mobile-OTP standard in Ruby, allowing you to write Ruby (and Rails) powered servers and client implementations. This enables you, for example, to implement strong two-factor authentication into your web application, where your users use their mobile phones as a remote token. Installation gem install motp Server Implementation For each user, come up with a secret and allow them to specify their PIN. Store both. When they use your system, ask them for the One-Time Pad. They can get this by using their mobile phone (which they've already configured with the secret) and entering their PIN. require 'motp' Motp::check(secret, pin, otp) Returns ... | ||