I hereby claim:
- I am incyclum on github.
- I am incyclum (https://keybase.io/incyclum) on keybase.
- I have a public key ASBW7VBviQVd6qXKs7ZPzmmx7srvzh-fYXRdxSZYCdBj3Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
div.content { | |
margin: 10px auto 10px 10px; | |
max-width: 60em; | |
line-height: 1.4; | |
h1, h2, h3, h4, h5, h6 { | |
line-height: 1.2; | |
color: green; | |
} |
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"s3:GetBucketLocation", | |
"s3:ListAllMyBuckets" | |
], | |
"Resource": "*" |
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "AllowAllUsersToListAccounts", | |
"Effect": "Allow", | |
"Action": [ | |
"iam:ListAccountAliases", | |
"iam:ListUsers", | |
"iam:GetAccountPasswordPolicy", |
CREATE FUNCTION update_updated_at_column() | |
RETURNS TRIGGER AS $$ | |
BEGIN | |
NEW.updated_at = now(); | |
RETURN NEW; | |
END; | |
$$ language 'plpgsql'; | |
CREATE TABLE account ( | |
account_id SERIAL PRIMARY KEY, |