I hereby claim:
- I am dan-turner on github.
- I am danturner (https://keybase.io/danturner) on keybase.
- I have a public key ASBh2B9Ds6LIvKbgCQ1lZRrQbWh7Gkah3oHd7shWwKAcBAo
To claim this, I am signing this object:
GRC="$(which grc)" | |
if [ "$TERM" != dumb ] && [ -n "$GRC" ]; then | |
alias colourify="$GRC -es --colour=auto" | |
alias blkid='colourify blkid' | |
alias configure='colourify ./configure' | |
alias df='colourify df' | |
alias diff='colourify diff' | |
alias docker='colourify docker' | |
alias docker-machine='colourify docker-machine' | |
alias du='colourify du' |
pragma solidity ^0.4.21; | |
contract ContractRegistry { | |
address public owner; | |
mapping (bytes32 => address) public contracts; | |
function ContractRegistry(address _owner) public { | |
owner = _owner; | |
} |
https://0day.work/using-a-yubikey-for-gpg-and-ssh/ | |
https://ocramius.github.io/blog/yubikey-for-ssh-gpg-git-and-local-login/ | |
https://github.com/drduh/YubiKey-Guide/tree/1ad37577db92726eadde4dc302a6f982ba7e82dc | |
https://github.com/drduh/config/blob/master/gpg.conf | |
https://help.github.com/articles/associating-an-email-with-your-gpg-key/ For adding extra emails to your keys | |
https://github.com/keybase/keybase-issues/issues/2798 | |
gpg.conf |
version: '2' | |
services: | |
postgres: | |
image: postgres | |
environment: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: app | |
ports: | |
- "5432:5432" |
I hereby claim:
To claim this, I am signing this object:
# Elastic Beanstalk Managed | |
# Elastic Beanstalk managed configuration file | |
# Some configuration of nginx can be by placing files in /etc/nginx/conf.d | |
# using Configuration Files. | |
# http://docs.amazonwebservices.com/elasticbeanstalk/latest/dg/customize-containers.html | |
# | |
# Modifications of nginx.conf can be performed using container_commands to modify the staged version | |
# located in /tmp/deployment/config/etc#nginx#nginx.conf |
[alias] | |
co = checkout | |
promote = !$ZSH/bin/git-promote | |
wtf = !$ZSH/bin/git-wtf | |
rank-contributors = !$ZSH/bin/git-rank-contributors | |
count = !git shortlog -sn | |
st = status | |
ci = commit | |
br = branch | |
co = checkout |
#!/bin/bash | |
# (optional) You might need to set your PATH variable at the top here | |
# depending on how you run this script | |
#PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
# Hosted Zone ID e.g. BJBK35SKMM9OE | |
ZONEID="XXXXXXXXX" | |
# The CNAME you want to update e.g. hello.example.com |
[hub] | |
protocol = https | |
[user] | |
name = ### Name goes here ### | |
email = ### Email goes here ### | |
[credential] | |
helper = osxkeychain | |
[alias] | |
co = checkout | |
promote = !$ZSH/bin/git-promote |
consul_bootstrap: | |
image: voxxit/consul | |
volumes: | |
- /data | |
command: | |
"agent -server -bootstrap-expect=3 -data-dir=/data" | |
expose: | |
- "8300" | |
- "8301" | |
- "8301/udp" |