sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
| ################################################################## | |
| # /etc/elasticsearch/elasticsearch.yml | |
| # | |
| # Base configuration for a write heavy cluster | |
| # | |
| # Cluster / Node Basics | |
| cluster.name: logng | |
| # Node can have abritrary attributes we can use for routing |
| #!/bin/sh | |
| # Make sure to: | |
| # 1) Name this file `backup.sh` and place it in /home/ubuntu | |
| # 2) Run sudo apt-get install awscli to install the AWSCLI | |
| # 3) Run aws configure (enter s3-authorized IAM user and specify region) | |
| # 4) Fill in DB host + name | |
| # 5) Create S3 bucket for the backups and fill it in below (set a lifecycle rule to expire files older than X days in the bucket) | |
| # 6) Run chmod +x backup.sh | |
| # 7) Test it out via ./backup.sh |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| import java.io._ | |
| import java.util.zip._ | |
| val pi = new PipedInputStream | |
| val po = new PipedOutputStream(pi) | |
| val zo = new GZIPOutputStream(po) | |
| val zi = new GZIPInputStream(pi) | |
| val w = new PrintWriter(zo) | |
| val r = new BufferedReader(new InputStreamReader(zi)) |