down vote accepted Use the PPA from the maintainers of git on Ubuntu:
sudo apt-add-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git
https://askubuntu.com/questions/568591/how-do-i-install-the-latest-version-of-git-with-apt/568596
To create a new symlink (will fail if symlink exists already):
ln -s /path/to/file /path/to/symlink
To create or update a symlink:
ln -sf /path/to/file /path/to/symlink
https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04 https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-16-04 https://help.dreamhost.com/hc/en-us/articles/222784068-The-most-important-steps-to-take-to-make-an-nginx-server-more-secure
https://www.codementor.io/devops/tutorial/getting-started-postgresql-server-mac-osx
http://sourabhbajaj.com/mac-setup/Python/virtualenv.html
http://www.marinamele.com/2014/05/install-python-virtualenv-virtualenvwrapper-mavericks.html
https://laracasts.com/discuss/channels/servers/phpmyadmin-on-forge
git clone --depth=1 --branch=STABLE git://github.com/phpmyadmin/phpmyadmin.git
Then add this to your default site/vhost
location /phpmyadmin {
index index.php;
auth_basic "Login";
auth_basic_user_file /some/path/authbasic_mysql;
}
Optional (setup cron to update it daily)
pma_update.sh
#!/bin/bash
cd /some/path/to/phpmyadmin/
git pull -q origin STABLE
crontab -e
Upgrade Script
# Automatically upgrade phpMyAdmin daily (12am)
0 * * * * /path/to/pma_update.sh >/dev/null
openssl rand 30
openssl rand -hex 30
API for determining gender from names
https://gender-api.com/