sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bashIn this guide I will go through all the steps to create a VPS, secure it and deploy a Django application. This is a summarized document from this digital ocean doc
Any commands with "$" at the beginning run on your local machine and any "#" run when logged into the server
Use this link and get $10 free. Just select the $5 plan unless this a production app.
| /** | |
| * HmacSHA512 | |
| * | |
| * @see <http://drumcoder.co.uk/blog/2011/apr/21/calculate-hmac-hash-java/> | |
| * @param String value | |
| * @param String secret | |
| * @return String | |
| */ | |
| private String buildHmacSignature(String value, String secret) { | |
| String result; |