I hereby claim:
- I am hartror on github.
- I am hartror (https://keybase.io/hartror) on keybase.
- I have a public key ASC6o-FCmwOCM1oXR6qpEkLt-OQQ82-4LTyXn9h-L0mojwo
To claim this, I am signing this object:
| #!/usr/bin/env fish | |
| function awsume | |
| set AWS_VARS "AWS_SECRET_ACCESS_KEY" "AWS_SESSION_TOKEN" "AWS_SECURITY_TOKEN" "AWS_ACCESS_KEY_ID" "AWS_REGION" "AWS_DEFAULT_REGION" "AWS_PROFILE" "AWS_DEFAULT_PROFILE" "AWSUME_PROFILE" | |
| set AWSUME (string split " " (awsumepy)) | |
| set AWSUME_FLAG "$AWSUME[1]" | |
| if test $AWSUME_FLAG = "usage:" | |
| awsumepy -h |
I hereby claim:
To claim this, I am signing this object:
Appearing on this list is a recommendation.
| (mock_service | |
| .given("something exists") | |
| .upon_receiving("a request for something") | |
| .with_request(method="get", path="/something") | |
| .will_respond_with( | |
| status=200, | |
| headers={'Content=Type': 'application/json'}, | |
| body={'name': 'A small something'})) | |
| #!/usr/bin/env python | |
| import os | |
| import psutil | |
| import resource | |
| import subprocess | |
| import sys | |
| import time | |
| import pytest | |
| import pypact | |
| # 1. Start with your model | |
| class Something(object): | |
| def __init__(self, name): | |
| self.name = name |