I hereby claim:
- I am jordanluyke on github.
- I am jordanluyke (https://keybase.io/jordanluyke) on keybase.
- I have a public key whose fingerprint is 5995 32B5 F3F1 9D60 0AE6 9769 EBFF 2AA7 F0CA 8574
To claim this, I am signing this object:
| package com.jordanluyke.example.util; | |
| import com.fasterxml.jackson.core.JsonProcessingException; | |
| import com.fasterxml.jackson.databind.JsonNode; | |
| import com.fasterxml.jackson.databind.ObjectMapper; | |
| import io.netty.bootstrap.Bootstrap; | |
| import io.netty.buffer.ByteBuf; | |
| import io.netty.buffer.Unpooled; | |
| import io.netty.channel.*; | |
| import io.netty.channel.nio.NioEventLoopGroup; |
| require 'formula' | |
| class VertX < Formula | |
| homepage 'http://vertx.io/' | |
| url 'http://dl.bintray.com/vertx/downloads/vert.x-2.1.5.tar.gz' | |
| sha256 '66c31ee95363c6f70e88dc4e648988ca4a529ff587892372fbd52b1e1704e9a2' | |
| def install | |
| rm_f Dir["bin/*.bat"] | |
| libexec.install %w[bin client conf lib] |
| export interface Multimap<K, V> { | |
| clear(): void | |
| containsKey(key: K): boolean | |
| containsValue(value: V): boolean | |
| containsEntry(key: K, value: V): boolean | |
| delete(key: K, value?: V): boolean | |
| entries: MultimapEntry<K, V>[] | |
| get(key: K): V[] | |
| keys(): K[] | |
| put(key: K, value: V): MultimapEntry<K, V>[] |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>polygons</title> | |
| <script type="text/javascript"> | |
| var amount; | |
| var size; | |
| var X; | |
| var Y; | |
| window.onload = draw; |
| require 'uri' | |
| require 'net/http' | |
| require 'digest/hmac' | |
| require 'json' | |
| class SnapcardApi | |
| MERCHANT_ID = 'ue5hsnusf8gene87asdf4es23bt9d7ak' | |
| API_KEY = '9idihi38o18mrm1234ipa1k9ooiifgts' | |
| SEC_KEY = '5e3kcoogptge6s5fh2qwertyb6g368dm' | |
| API_URL = 'https://api.snapcard.io' |
| using System; | |
| using System.IO; | |
| using System.Net; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| namespace apitest1 | |
| { | |
| class MainClass | |
| { |
I hereby claim:
To claim this, I am signing this object:
| module Todo | |
| require 'json' | |
| class Controller | |
| def initialize | |
| @list = List.new | |
| end | |
| def run(args) | |
| @list.read_input(args) |
| class Node | |
| attr_accessor :value, :next_node | |
| def initialize(value, next_node = nil) | |
| @value = value | |
| @next_node = next_node | |
| end | |
| end | |
| class LinkedList |
| class Node | |
| attr_accessor :value, :next_node | |
| def initialize(value, next_node = nil) | |
| @value = value | |
| @next_node = next_node | |
| end | |
| end | |
| class LinkedList |