I hereby claim:
- I am wr0ngway on github.
- I am wr0ngway (https://keybase.io/wr0ngway) on keybase.
- I have a public key whose fingerprint is 4420 079C 78E2 6A72 F771 42CC 5667 E853 B560 FFC6
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # fail fast | |
| set -e | |
| server=email-smtp.us-east-1.amazonaws.com:587 | |
| config_set=default | |
| subject="Amazon SES SMTP Test" | |
| message="This message was sent using the Amazon SES SMTP interface." |
| #!/bin/bash | |
| # brew install oath-toolkit | |
| # | |
| # ~/.otpkeys: | |
| # name1=secret | |
| # name2=secret | |
| scriptname=`basename $0` | |
| if [ -z $1 ] |
| #!/bin/bash | |
| # brew install oath-toolkit | |
| # | |
| # ~/.otpkeys: | |
| # name1=secret | |
| # name2=secret | |
| scriptname=`basename $0` | |
| if [ -z $1 ] |
| 2016/07/19 13:59:16 [INFO] Terraform version: 0.7.0 rc3 3f4857a07a24f3c9e2db6b4458fbf5be19a8b256 | |
| 2016/07/19 13:59:16 [DEBUG] Detected home directory from env var: /Users/mconway | |
| 2016/07/19 13:59:16 [DEBUG] Detected home directory from env var: /Users/mconway | |
| 2016/07/19 13:59:16 [DEBUG] Attempting to open CLI config file: /Users/mconway/.terraformrc | |
| 2016/07/19 13:59:16 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
| 2016/07/19 13:59:16 [DEBUG] Detected home directory from env var: /Users/mconway | |
| 2016/07/19 13:59:16 [DEBUG] DestroyEdgeInclude: Checking: data.template_file.file | |
| 2016/07/19 13:59:16 [DEBUG] DestroyEdgeInclude: Checking: data.template_cloudinit_config.config | |
| mplate_file.file (orphan) - *terraform.graphNodeOrphanResource | |
| provider.template - *terraform.graphNodeProvider |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| PID=$1 | |
| RUBY_BINARY=`which ruby` | |
| BT_FILENAME="/tmp/ruby-backtrace-$PID-$(date +%s).txt" | |
| cmdfile=$(mktemp) | |
| cat <<EOF > $cmdfile | |
| set \$old_stdout = dup(1) | |
| set \$old_stderr = dup(2) |
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'bundler' | |
| raise "Pass in local gems like: LOCAL_GEMS=foo,bar bundle ..." unless ENV['LOCAL_GEMS'] | |
| LOCAL_GEMS = ENV['LOCAL_GEMS'].split(',') | |
| class Bundler::Dsl |
| #!/usr/bin/env ruby | |
| require 'bundler' | |
| changelog_file = 'CHANGELOG' | |
| entries = "" | |
| helper = Bundler::GemHelper.new(Dir.pwd) | |
| current_version = "v#{helper.gemspec.version}" | |
| starting_version = nil |
| #!/usr/bin/env ruby | |
| require 'bundler' | |
| changelog_file = 'CHANGELOG' | |
| entries = "" | |
| helper = Bundler::GemHelper.new(Dir.pwd) | |
| current_version = "v#{helper.gemspec.version}" | |
| starting_version = nil |
| #!/usr/bin/env ruby | |
| rss = '.+?Rss:\s+(\d+)' | |
| share = '.+?Shared_Clean:\s+(\d+)' | |
| share << '.+?Shared_Dirty:\s+(\d+)' | |
| priv = '.+?Private_Clean:\s+(\d+)' | |
| priv << '.+?Private_Dirty:\s+(\d+)' | |
| MEM_REGEXP = /\[heap\]#{rss}#{share}#{priv}/m | |
| def mem_usage_linux |