touch README.md
git add .
git commit -m "Init"
git push
git branch dev
git checkout dev
git merge master
git push --set-upstream origin dev
openssl req -x509 -sha256 -nodes -days 3650 -newkey rsa:2048 -keyout serverID.key -out serverID.crt
https://www.sslshopper.com/article-most-common-openssl-commands.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function (_i) { | |
var i = Math.pow(10, _i - 1); | |
var j = Math.pow(10, _i) - 1; | |
return ((Math.floor(Math.random() * (j - i + 1)) + i)); | |
}; |
NewerOlder