- Jordan to email Ben about researching new places
- Men to review their Core Team roles and take appropriate actions
- Core team met 4 times this year
{ | |
"swagger": "2.0", | |
"info": { | |
"version": "13.1.0", | |
"description": "A Swagger definition for the Kong Admin API", | |
"title": "Kong-Admin" | |
}, | |
"host": "127.0.0.1:8001", | |
"basePath": "/", | |
"tags": [ |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
## which tenant? | |
export TENANT_ID=.... | |
## find the endpoints' id from the list of available endpoints | |
curl -H "X-Auth-Token:$TOKEN" https://staging.identity.api.rackspacecloud.com/v2.0/OS-KSCATALOG/endpointTemplates |python -m json.tool | |
## get a token | |
curl -X POST https://staging.identity.api.rackspacecloud.com/v2.0/tokens -d '{"auth":{"passwordCredentials":{"username":"autoscale","password":"....."}}}' -H "Content-type: application/json" |python -m json.tool | |
export TOKEN=... |
curl -s https://gist.github.com/bltavares/9be6cb19dc4ab9ec895e/raw/bootstrap.sh | bash
* note: I didn't actually need to run this so I haven't tested it.\curl -sSL https://get.rvm.io | bash -s stable --ruby
git clone https://github.com/racker/reach
cd reach/reach-vm/
make update
vagrant up
filter { | |
mutate { | |
gsub => ["@message", "\[8mha.*==\[0m", ""] | |
} | |
} |
#!/bin/bash | |
##### | |
# | |
# This script creates android emulators on the fly. | |
# | |
# Please refer to the README for usage instructions. | |
# | |
#### |
#!/bin/bash | |
HUB_HOST="hostname" | |
HUB_PORT="4444" | |
LOCAL_IP="ip" | |
SOCAT_PORT="8081" | |
JSON="{'configuration': {'registerCycle': 5000, 'hub': 'http://<HUB_HOST>:<HUB_PORT>/grid/register', 'host': '<LOCAL_IP>', 'proxy': 'org.openqa.grid.selenium.proxy.DefaultRemoteProxy', 'maxSession': 1, 'port': <SOCAT_PORT>, 'hubPort': <HUB_PORT>, 'hubHost': '<HUB_HOST>', 'url': 'http://<LOCAL_IP>:<SOCAT_PORT>', 'remoteHost': 'http://<LOCAL_IP>:<SOCAT_PORT>', 'register': true, 'role': 'node'}, 'class': 'org.openqa.grid.common.RegistrationRequest', 'capabilities': [{'seleniumProtocol': 'WebDriver', 'platform': 'ANDROID', 'browserName': 'android', 'version': null, 'maxInstances': 1}]}" | |
JSON=${JSON//<HUB_HOST>/$HUB_HOST} | |
JSON=${JSON//<HUB_PORT>/$HUB_PORT} |