I hereby claim:
- I am nicholasjackson on github.
- I am nicjackson (https://keybase.io/nicjackson) on keybase.
- I have a public key whose fingerprint is F573 28B1 1095 5739 3CCC 4240 2CD2 E635 F441 E5E4
To claim this, I am signing this object:
| { | |
| "mock": { | |
| "tfplan": { | |
| "config": { | |
| "providers": [ | |
| { | |
| "type": "aws", | |
| "config": {"region": "something else"} | |
| } | |
| ] |
| data "aws_route53_zone" "selected" { | |
| name = "demo.gs." | |
| private_zone = false | |
| } | |
| resource "aws_route53_record" "ns" { | |
| zone_id = "${data.aws_route53_zone.selected.zone_id}" | |
| name = "${data.aws_route53_zone.selected.name}" | |
| type = "NS" | |
| ttl = "300" |
| package main | |
| import ( | |
| "crypto/ecdsa" | |
| "crypto/elliptic" | |
| "crypto/rand" | |
| "crypto/sha1" | |
| "crypto/x509" | |
| "crypto/x509/pkix" | |
| "encoding/asn1" |
| black = '#3b4252'; | |
| red = '#bf616a'; // red | |
| green = '#a3be8c'; // green | |
| yellow = '#ebcb8b'; // yellow | |
| blue = '#81a1c1'; // blue | |
| magenta = '#b48ead'; // pink | |
| cyan = '#88c0d0'; // cyan | |
| white = '#e5e9f0'; // light gray | |
| lightBlack = '#4c566a'; // medium gray | |
| lightRed = '#bf616a'; // red |
I hereby claim:
To claim this, I am signing this object:
| package com.njackson.pebble; | |
| import android.content.BroadcastReceiver; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.content.SharedPreferences; | |
| import android.os.Handler; | |
| import android.os.Looper; | |
| import android.util.Log; | |
| import com.getpebble.android.kit.PebbleKit; |
| <link rel="import" href="../core-animated-pages/core-animated-pages.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/hero-transition.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/cross-fade.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/slide-down.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/slide-up.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/tile-cascade.html"> | |
| <polymer-element name="my-element"> | |
| <template> |
| #pragma mark<Touch Methods> | |
| - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { | |
| UITouch *touch = [touches anyObject]; | |
| if ([touch tapCount] == 2) { | |
| drawImage.image = nil; | |
| return; | |
| } | |