Skip to content

Instantly share code, notes, and snippets.

View strcrzy's full-sized avatar
👻

strcrzy

👻
View GitHub Profile

Keybase proof

I hereby claim:

  • I am strcrzy on github.
  • I am strcrzy (https://keybase.io/strcrzy) on keybase.
  • I have a public key whose fingerprint is B840 B211 4CBD ED54 56D1 4E7A 2594 81A2 91C6 7735

To claim this, I am signing this object:

Twitter公式クライアントのコンシューマキー

Twitter for iPhone

Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU

Twitter for Android

Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys

Twitter for iPad

Consumer key: CjulERsDeqhhjSme66ECg

@strcrzy
strcrzy / index.html
Created October 19, 2012 03:29 — forked from dfm/LICENSE
XKCD-style plots in d3
<!DOCTYPE HTML>
<html>
<head>
<title>XKCD plots in d3</title>
<script src="http://d3js.org/d3.v2.min.js?2.10.0"></script>
<script src="xkcd.js"></script>
<style>
@strcrzy
strcrzy / gist:3233593
Created August 2, 2012 04:34 — forked from swannodette/gist:3217582
sudoku_compact.clj
(ns sudoku
(:refer-clojure :exclude [==])
(:use clojure.core.logic))
(defn get-square [rows x y]
(for [x (range x (+ x 3))
y (range y (+ y 3))]
(get-in rows [x y])))
(defn init [vars hints]
@strcrzy
strcrzy / event_buffering.md
Created March 16, 2012 12:42 — forked from ryandotsmith/event_buffering.md
event buffering

Event Buffering

Eventually platforms outgrow the single-source-tree model and become distributed systems. A common pattern in these distributed systems is distributed composition via event buffering. Here we motivate and describe this event buffering pattern.

The Problem

@strcrzy
strcrzy / gist:1362706
Created November 13, 2011 21:03 — forked from danking/gist:1068185
A very simple example showing how to use Racket's lexing and parsing utilities
#lang racket
(require parser-tools/lex
(prefix-in re- parser-tools/lex-sre)
parser-tools/yacc)
(provide (all-defined-out))
(define-tokens a (NUM))
(define-empty-tokens b (+ - EOF))
(define-lex-trans number
(syntax-rules ()