I hereby claim:
- I am whalesalad on github.
- I am whalesalad (https://keybase.io/whalesalad) on keybase.
- I have the public key with fingerprint 0456 CF50 2680 EE1C 3F65 6794 FDE6 496A BCE5 EF27
To claim this, I am signing this object:
| { | |
| "type" : "record", | |
| "name" : "eventtype", | |
| "doc:" : "Schema for describing events in sensor messages", | |
| "namespace" : "com.endgame.sensor.avro", | |
| "fields" : [ | |
| { | |
| "name" : "key", | |
| "doc" : "name of the event", | |
| "type" : "string" |
| { | |
| "bold_folder_labels": true, | |
| "color_scheme": "Packages/User/Made of Code.tmTheme", | |
| "font_face": "Inconsolata", | |
| "font_size": 16.0, | |
| "gutter": true, | |
| "highlight_line": true, | |
| "hot_exit": false, | |
| "ignored_packages": | |
| [ |
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Action": "ec2:Describe*", | |
| "Resource": "*" | |
| }, | |
| { | |
| "Effect": "Allow", |
| @require_POST | |
| def update_password(request): | |
| payload = json.loads(request.body) | |
| password = payload.get('password', None) | |
| password_confirm = payload.get('password_confirm', None) | |
| unique = set([password, password_confirm]) | |
| if len(unique) > 1: |
| import redis | |
| from django.conf import settings | |
| from django.http import StreamingHttpResponse as HttpResponse | |
| def new_connection(): | |
| """ | |
| At some point this will evolve into using a connection pool, | |
| but for now it opens a new connection for each user. | |
I hereby claim:
To claim this, I am signing this object:
| set nocompatible | |
| filetype off | |
| set rtp+=~/.vim/bundle/vundle/ | |
| call vundle#rc() | |
| Bundle 'gmarik/vundle' | |
| "Bundle 'chriskempson/base16-vim' |
| #!/bin/bash | |
| DOMAIN_TOKEN="XXXXXXXXXXXXXXXXXXXXX" | |
| DOMAIN_ID="example.com" | |
| RECORD_ID="12345678" | |
| IP="`curl -s -f http://icanhazip.com/`" | |
| curl -s -S \ | |
| -H "X-DNSimple-Domain-Token: $DOMAIN_TOKEN" \ |
| MSGFMT = "/usr/local/Cellar/gettext/0.18.2/bin/msgfmt" | |
| task :export_mo do |t| | |
| po_files = Dir.glob(File.dirname(__FILE__) + '/lang/*.po') | |
| po_files.each do |po| | |
| mo = po.gsub(/.po\Z/, '.mo') | |
| sh "#{MSGFMT} -o '#{mo}' '#{po}'" | |
| end | |
| end |