I hereby claim:
- I am cgbystrom on github.
- I am cgbystrom (https://keybase.io/cgbystrom) on keybase.
- I have a public key whose fingerprint is DB53 8B7D E338 2CC6 2464 A30C 39BE BCB1 2F5B EF1A
To claim this, I am signing this object:
package(default_visibility = ["//visibility:public"]) | |
load("@io_bazel_rules_go//go:def.bzl", "go_prefix", "go_binary") | |
go_prefix("helloworld") | |
go_binary( | |
name = "helloworld", | |
srcs = ["helloworld.go"], | |
) |
// An example for how to map a GraphQL schema on to Scala's type system. | |
// Work in progress and still lots of unknowns but the great benefit we are after is true type safety at compile time. | |
// Tries to mimic the original Star Wars schema found in graphql-js reference impl. | |
// The schema below does not deal with Futures at all but it something we definitively need to support. | |
import scala.annotation.StaticAnnotation | |
// Test fixture data | |
object Data { |
I hereby claim:
To claim this, I am signing this object:
function hookCanvasGetContext () { | |
var ctxFns = [ | |
'fillRect', | |
'save', | |
'restore', | |
'scale', | |
'rotate', | |
'translate', | |
'transform', | |
'setTransform', |
var util = require('util'); | |
var exec = require('child_process').exec; | |
function getNpmLinkedPackages (callback) { | |
exec('npm list --global', function (error, stdout, stderr) { | |
if (error) return callback(error); | |
if (stderr.length > 0) return callback(stderr); | |
var pkgs = stdout | |
.split('\n') |
class CORSMiddleware(object): | |
"""Enable serving of CORS requests (http://en.wikipedia.org/wiki/Cross-origin_resource_sharing)""" | |
ALLOW_ORIGIN = "*" | |
ALLOW_HEADERS = "Origin, X-Requested-With, Content-Type" | |
def __init__(self, app): | |
self.app = app | |
def __call__(self, environ, start_response): |
""" | |
Prints usage for Route 53 for a given time period | |
(exported from the Amazon Route 53 usage console). | |
""" | |
import csv | |
route53_reader = csv.reader(open('route_53_usage_february_2012.csv', 'rb'), delimiter=',', quotechar='|') | |
route53_reader.next() # Skip header | |
zone_lookup = dict('INSERT_ZONE_ID'='mydomain.com') |
import org.jboss.netty.channel.*; | |
import org.jboss.netty.util.HashedWheelTimer; | |
import org.jboss.netty.util.Timeout; | |
import org.jboss.netty.util.Timer; | |
import org.jboss.netty.util.TimerTask; | |
import java.util.concurrent.TimeUnit; | |
/** | |
* Simulates latency of Netty events |
# Naive implementation of an activity stream service using Cassandra. | |
# Just a proof of concept and not anything that is for production use. | |
# Probably flawed in many ways like proper key usage, writing and features. | |
import pycassa | |
import datetime | |
import uuid | |
pool = pycassa.connect('Actstream') |
(function (){ | |
/*! | |
* jQuery JavaScript Library v1.6.2 | |
* http://jquery.com/ | |
* | |
* Copyright 2011, John Resig | |
* Dual licensed under the MIT or GPL Version 2 licenses. | |
* http://jquery.org/license | |
* | |
* Includes Sizzle.js |