I hereby claim:
- I am cam-stitt on github.
- I am cam_stitt (https://keybase.io/cam_stitt) on keybase.
- I have a public key ASCMVG5K1iCkZjbIiFuvitNcIQNW4_SNqZ4GnnxzF5RrgQo
To claim this, I am signing this object:
| # This policy will always fail | |
| import "foo" | |
| main = foo.truthy() |
I hereby claim:
To claim this, I am signing this object:
| #FDF6E3,#EEE8D5,#EEE8D5,#586E75,#EEE8D5,#657B83,#2AA198,#DC322F |
Linux:
sudo apt-get install -y autoconf automake libtool
OSX:
brew install autoconf automake libtool
| syntax = "proto3"; | |
| package example; | |
| message HealthCheckRequest { | |
| string service = 1; | |
| } | |
| message HealthCheckResponse { | |
| enum ServingStatus { |
| source /dev/stdin <<< “$(curl -sSL https://raw.githubusercontent.com/codeship/scripts/master/languages/go.sh)" | |
| go get github.com/Masterminds/glide | |
| glide install | |
| rsync -razC vendor/ $GOPATH/src/ |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta name="csrf-token" content="{{ csrf_token() }}"> | |
| <title>Example</title> | |
| {% block styles %}{% endblock %} | |
| {% block scripts %}{% endblock %} | |
| </head> |
| 'exception-reporting': | |
| 'userId': '470e2e69-cec8-36bf-090a-65c0ddd4caa4' | |
| 'release-notes': | |
| 'viewedVersion': '0.92.0' | |
| 'welcome': | |
| 'showOnStartup': false | |
| 'metrics': | |
| 'userId': '2a39f9310c56400683f32f985736d69eb16fde65' | |
| 'editor': | |
| 'fontFamily': 'Ubuntu Mono' |
| from unittest import TestCase | |
| from sqlalchemy.types import TypeDecorator, VARCHAR | |
| class Tags(TypeDecorator): | |
| impl = VARCHAR | |
| def process_bind_param(self, value, dialect): | |
| if value is None: |