sudo curl https://gist.githubusercontent.com/pankaj28843/3ad78df6290b5ba931c1/raw/soffice.sh > /usr/local/bin/soffice && sudo chmod +x /usr/local/bin/soffice#!/bin/bash
# Need to do this because symlink won't workSo you want to write a sync system for a web app with offline and realtime support? Good luck. You might find the following resources useful.
Database in a browser, a spec (Stepan Parunashvili)
What problem are we trying to solve with a sync system?
The web of tomorrow (Nikita Prokopov)
| #!/bin/bash | |
| # Based on https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html | |
| # | |
| # Improvements | |
| # - Removed Perl dependency | |
| mydir=tmp/certs | |
| if [ ! -e "${mydir}" ] | |
| then |