- Do you identify with people who suffer from mental illness? Why?
- Have you ever experienced discrimination? How did you feel in that moment?
- How do vou measure one's potential? Are aptitude tests effective?
- How do you find fulfillment?
- How do you love?
- Imagine yourself in the future. What will your greatest life accomplishment be?
- In there anything too serious to be joked about?
- Is zero-waste or sustainable consumption ableist? Why or why not?
I hereby claim:
- I am divideby0 on github.
- I am divideby0 (https://keybase.io/divideby0) on keybase.
- I have a public key ASDLO6bS2AIWUXYf_Wh5k4Q2Js0AlA4wsOyIQZio88gcfQo
To claim this, I am signing this object:
I hereby claim:
- I am divideby0 on github.
- I am divideby0 (https://keybase.io/divideby0) on keybase.
- I have a public key whose fingerprint is 36F1 6902 5AB7 D5CF 3A4F 6EFE 02E8 5886 E7CC E86E
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.4" | |
services: | |
jbpm: | |
image: jboss/jbpm-workbench-showcase | |
environment: | |
- "JAVA_OPTS=-Djava.net.preferIPv4Stack=true -Djava.net.preferIPv6Addresses=false" | |
ports: | |
- "8080:8080" | |
- "8001:8001" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch:6.0.0 | |
environment: | |
- cluster.name=docker-cluster | |
- bootstrap.memory_lock=true | |
- "ES_JAVA_OPTS=-Xms512m -Xmx512m" | |
ulimits: | |
memlock: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REGION=${REGION:-us-east-1} | |
UBUNTU_RELEASE=${UBUNTU_RELEASE:-trusty} | |
ARCH=${ARCH:-amd64} | |
INSTANCE_TYPE=${INSTANCE_TYPE:-hvm:ebs} | |
curl 'https://cloud-images.ubuntu.com/locator/ec2/releasesTable' --compressed | grep -Ei "\"$REGION\",\"$UBUNTU_RELEASE\",.*,\"$INSTANCE_TYPE\"" | grep -oEi "ami-\w+" | head -1 |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"year":2001,"make":"ACURA","model":"CL"} | |
{"year":2001,"make":"ACURA","model":"EL"} | |
{"year":2001,"make":"ACURA","model":"INTEGRA"} | |
{"year":2001,"make":"ACURA","model":"MDX"} | |
{"year":2001,"make":"ACURA","model":"NSX"} | |
{"year":2001,"make":"ACURA","model":"RL"} | |
{"year":2001,"make":"ACURA","model":"TL"} | |
{"year":2001,"make":"AM GENERAL","model":"HUMMER"} | |
{"year":2001,"make":"AMERICAN IRONHORSE","model":"CLASSIC"} | |
{"year":2001,"make":"AMERICAN IRONHORSE","model":"LEGEND"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -o xtrace # trace what gets executed | |
set -o errexit # exit when a command fails. | |
set -o nounset # exit when your script tries to use undeclared variables | |
__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | |
DATA_DIR="${__dir}/containers/elasticsearch/data" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Clear our example index | |
DELETE /vehicle | |
# Post a few car records with make, model and year | |
POST /vehicle/car/_bulk | |
{"index":{}} | |
{"make":"Saturn","model":"LW","year":2005} | |
{"index":{}} | |
{"make":"Honda","model":"Civic","year":2005} | |
{"index":{}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a few vehicles with different types | |
POST /vehicles_type_agg_test/_bulk | |
{"index":{"_id":"honda_civic","_type": "car"}} | |
{"make": "Honda", "model": "Civic"} | |
{"index":{"_id":"honda_accord","_type": "car"}} | |
{"make": "Honda", "model": "Accord"} | |
{"index":{"_id":"tesla_roadster","_type": "car"}} | |
{"make":"Tesla", "model": "Roadster"} | |
{"index":{"_id":"audi_a4","_type": "car"}} | |
{"make":"Audi", "model": "A4"} |
NewerOlder