cat > somethang.txt <<EOF
Yo we heard you like text in your text files so we put text inside your text.
EOF
sudo mkdir -p /var/lib/{kubelet,kube-proxy,kubernetes}
| import arcpy | |
| env.workspace = "C:/SpatialProgramming/TermProject/tp.gdb" | |
| fc = "chem" | |
| fields = ['SCNTFC_CD', 'EST_CVR_RT', 'TRT_QTY', 'OBJECTID'] | |
| # fields = ['WELL_ID', 'WELL_TYPE', 'SHAPE@XY'] | |
| # For each row print the WELL_ID and WELL_TYPE fields, and the | |
| # the feature's x,y coordinates |
| ### Keybase proof | |
| I hereby claim: | |
| * I am bvanderlugt on github. | |
| * I am blairv (https://keybase.io/blairv) on keybase. | |
| * I have a public key ASAsSk_Y0C2r7J6S4Uc47m92Exqpp9dSr-MLGQx4fSmnJQo | |
| To claim this, I am signing this object: |
| docker run --rm appropriate/curl -fsSL http://169.254.169.254/latest/user-data |
| export AWS_ACCESS_KEY_ID=$(aws configure get aws_access_key_id) | |
| export AWS_SECRET_ACCESS_KEY=$(aws configure get aws_secret_access_key) | |
| export AWS_DEFAULT_REGION=$(aws configure get region) | |
| // https://docs.aws.amazon.com/cli/latest/reference/configure/index.html |
| # filter amis on region and name | |
| aws ec2 describe-images --region us-west-2 --filters "Name=name,Values=rancheros-v1.1*" "Name=virtualization-type,Values=hvm" --query 'Images[*].Name' | |
| # create key-pair and save to file | |
| aws ec2 create-key-pair --key-name dummy --query "KeyMaterial" > dummy.pem |
brew info somedanktool
brew switch somedanktool 1.6.9
| exports.createHandler = function (method) { | |
| return new Handler(method); | |
| } | |
| Handler = function(method) { | |
| this.process = function(req, res) { | |
| params = null; | |
| return method.apply(this, [req, res, params]); | |
| } | |
| } |
| const https = require('https'); | |
| const fs = require('fs'); | |
| const options = { | |
| key: fs.readFileSync('privkey.pem'), | |
| cert: fs.readFileSync('cert.pem'), | |
| ca: fs.readFileSync('fullchain.pem'), | |
| requestCert: true, | |
| } |