I hereby claim:
- I am dce on github.
- I am dce (https://keybase.io/dce) on keybase.
- I have a public key whose fingerprint is 7884 224B E2F6 0E0F 1CE4 B34B 9FDB 12C7 D60E 357A
To claim this, I am signing this object:
| [ | |
| { | |
| "id": 1, | |
| "title": "Articles about AI", | |
| "responses": [ | |
| { | |
| "name": "Ada", | |
| "response": "First response" | |
| }, | |
| { |
| [] |
| [ | |
| { | |
| "id": 1, | |
| "title": "Topics #1", | |
| "responses": [] | |
| } | |
| ] |
| require 'sunspot/rails/spec_helper' | |
| require 'net/http' | |
| try_server = proc do |uri| | |
| begin | |
| response = Net::HTTP.get_response uri | |
| response.code != "503" | |
| rescue Errno::ECONNREFUSED | |
| end | |
| end |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| func make_addr(y int) (func(int) int) { | |
| return func(x int) (int) { | |
| return x + y | |
| } |
| #!/bin/sh | |
| openssl aes-256-cbc -d -a -pass "pass:$2" -in $1 -out `echo $1 | sed 's/\.enc$//'` |
| #!/bin/sh | |
| openssl aes-256-cbc -d -a -pass "pass:$2" -in $1 -out `echo $1 | sed 's/\.enc$//'` |
| require "test/unit" | |
| def balanced?(string) | |
| # ... | |
| end | |
| def count_change(money, coins) | |
| # ... | |
| end |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <assert.h> | |
| #define CTOI(c) c - '0' | |
| #define ITOC(i) '0' + i | |
| char * | |
| add(char *n1, char *n2) |