Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| FROM golang:1.12 as build | |
| WORKDIR $GOPATH/src/github.com/Irio/wohnung | |
| COPY scraper scraper | |
| COPY main.go . | |
| RUN go get -d -v ./... | |
| RUN go install | |
| FROM gcr.io/distroless/base |
| var User = (function () { | |
| function User (id, nam) { | |
| var self = this; | |
| this.id = id; | |
| this.nam = nam; | |
| this.__data = {}; | |
| for(var p in self) { |
| https://stackoverflow.com/a/13256612/2137210 |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| AWS region code | AWS region name | Number of AZs | AZ names |
|---|---|---|---|
| us-east-1 | Virginia | 4 | us-east-1a, us-east-1b, us-east-1c, us-east-1e |
| us-west-1 | N. California | 2 | us-west-1a, us-west-1b |
| us-west-2 | Oregon | 3 | us-west-2a, us-west-2b, us-west-2c |
| eu-west-1 | Ireland | 3 | eu-west-1a, eu-west-1b, eu-west-1c |
| eu-central-1 | Frankfurt | 2 | eu-central-1a, eu-central-1b |
| ap-southeast-1 | Singapore | 2 | ap-southeast-1a, ap-southeast-1b |
| ap-southeast-2 | Sydney | 2 | ap-southeast-2a, ap-southeast-2b, ap-southeast-2c |
| ap-northeast-1 | Tokyo | 2 | ap-northeast-1a, ap-nort |
| You can ssh into the VM by finding the IP (from `kubectl config view` or simply `minikube ip`) and using username "docker" and password "tcuser": | |
| ssh docker@$(minikube ip) | |
| or | |
| ssh [email protected] |
| /** | |
| * The onOpen function runs automatically when the Google Docs document is | |
| * opened. Use it to add custom menus to Google Docs that allow the user to run | |
| * custom scripts. For more information, please consult the following two | |
| * resources. | |
| * | |
| * Extending Google Docs developer guide: | |
| * https://developers.google.com/apps-script/guides/docs | |
| * | |
| * Document service reference documentation: |
| #!/bin/bash | |
| #Mon Feb 26 13:01:50 PST 2018 | |
| #Darwin 16.7.0 x86_64 | |
| #GNU bash, version 3.2.57(1)-release (x86_64-apple-darwin16) | |
| #Download and verify a file's sha256sum | |
| #Retry three times and then fail. | |
| #Should check the sha256sum of the downloaded file before attempting to download. | |
| #exit 0 on success else exit nonzero | |
| #Usage: |
| path_your_folder/* | |
| !path_your_folder/.gitkeep | |