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
Packing List | |
Beijing, Tibet, Nepal, Hong Kong | |
IMPERATIVE | |
Wallet | |
Waist wallet | |
Cash | |
Credit Card | |
ATM Card | |
Extra ID |
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
export PS1='\[\033[1;32m\]\u\[\033[0m\] \[\033[1;36m\]\w\[\033[0m\]$(__git_ps1 " \[\033[1;33m\](%s)\[\033[0m\]") \[\033[1;32m\]\$\[\033[0m\] ' | |
export GREP_OPTIONS='-I --color=auto --exclude=\.classpath* --exclude-dir=\.git* --exclude=dir=\.idea* --exclude-dir=generated-sources --exclude-dir=generated-resources --exclude-dir=generated-test-sources' | |
alias ls='ls -G' | |
alias ll='ls -alh' | |
alias be='bundle exec' | |
alias pbsort='pbpaste | sort | pbcopy' | |
alias pbescape='pbpaste | ruby -rcgi -e "print CGI.escape(STDIN.read)" | pbcopy' | |
export JAVA_TOOL_OPTIONS="-Dfile.encoding=utf8" |
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
[client] | |
user='root' | |
password='' |
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
execute pathogen#infect() | |
syntax on | |
set ruler | |
filetype plugin indent on |
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
[user] | |
name = Kevin Ingelman | |
email = xxx | |
[alias] | |
br = branch | |
ci = commit | |
co = checkout | |
st = status | |
last = log -p -1 HEAD | |
[core] |
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
require 'sinatra/extension' | |
require 'active_resource' | |
module L5D | |
extend Sinatra::Extension | |
class << self | |
attr_accessor :headers | |
end |
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
dir = certificates | |
[ ca ] | |
default_ca = CA_default | |
[ CA_default ] | |
serial = $dir/serial | |
database = $dir/index.txt | |
new_certs_dir = $dir/newcerts | |
certificate = $dir/cacert.pem |
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
node { | |
def currentVersion = getCurrentVersion() | |
def newVersion = getNextVersion(currentVersion) | |
def frontendIp = kubectl("get svc l5d -o jsonpath=\"{.status.loadBalancer.ingress[0].ip}\"").trim() | |
def originalDst = getDst(getDtab()) | |
stage("clone") { | |
git url: gitRepo + '.git', branch: gitBranch | |
} |
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
"clnt/zipkin-http/available" : 1.0, | |
"clnt/zipkin-http/cancelled_connects" : 0, | |
"clnt/zipkin-http/closes" : 2, | |
"clnt/zipkin-http/connect_latency_ms.avg" : 0.0, | |
"clnt/zipkin-http/connect_latency_ms.count" : 1, | |
"clnt/zipkin-http/connect_latency_ms.max" : 0, | |
"clnt/zipkin-http/connect_latency_ms.min" : 0, | |
"clnt/zipkin-http/connect_latency_ms.p50" : 0, | |
"clnt/zipkin-http/connect_latency_ms.p90" : 0, | |
"clnt/zipkin-http/connect_latency_ms.p95" : 0, |
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
$ go build -v -i -x -o kltest ./cli | |
WORK=/var/folders/tb/99nw7rb94d9b60m_q_9869sw0000gn/T/go-build763953139 | |
rm -r $WORK/b005/ | |
rm -r $WORK/b013/ | |
rm -r $WORK/b009/ | |
rm -r $WORK/b012/ | |
rm -r $WORK/b015/ | |
rm -r $WORK/b016/ | |
rm -r $WORK/b028/ | |
rm -r $WORK/b034/ |
OlderNewer