I hereby claim:
- I am georgebashi on github.
- I am georgebashi (https://keybase.io/georgebashi) on keybase.
- I have a public key whose fingerprint is CC21 B40D 5D1E 2C47 D6F0 7B85 6890 FE4E E05E E63C
To claim this, I am signing this object:
<hello> | |
<person name="edd" /> | |
<person name="chrisp" /> | |
</hello> |
#!/usr/bin/env bash | |
if [ ! -z "$@" ]; then | |
exec tail -f "$@" | $0 | |
fi | |
TIME="$(date +%s%N)" | |
while IFS= read -r line; do | |
NEW_TIME="$(date +%s%N)" | |
printf "%6.2f %s\n" "$(echo "scale=2;(${NEW_TIME} - ${TIME})/(1*10^09)" | bc)" "$line" |
source "https://rubygems.org" | |
gem 'activerecord' | |
gem 'ar-octopus', require: 'octopus' | |
gem 'sqlite3' |
function fg-or-run-vim () { | |
if [[ $#jobstates -eq 0 ]]; then | |
BUFFER='vim' | |
zle accept-line | |
else | |
BUFFER='fg' | |
zle accept-line | |
fi | |
} | |
zle -N fg-or-run-vim |
I hereby claim:
To claim this, I am signing this object:
resource "aws_security_group" "test" { | |
name = "test" | |
description = "test" | |
vpc_id = "vpc-xxxxxxxx" | |
} | |
resource "aws_security_group_rule" "test1" { | |
type = "ingress" | |
from_port = 1 | |
to_port = 1 |