I hereby claim:
- I am laod on github.
- I am houshja (https://keybase.io/houshja) on keybase.
- I have a public key whose fingerprint is 076E EF87 49FB 0F08 DE47 21C8 3D37 C167 A358 169A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<html> | |
<head> | |
<title>Experiment 6</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
<script src="coffee-script.js"></script> | |
<script src="underscore.js"></script> | |
<script src="three.js"></script> |
require 'opal' | |
run Opal::Server.new { |s| | |
s.main = 'doi' | |
e = s.sprockets | |
e.append_path 'assets' | |
} |
#!/usr/bin/ruby | |
require 'ldap' | |
require 'pg' | |
require 'csv' | |
# because empty isn't false, that's why | |
class String | |
def presence | |
self.empty? ? nil : self |
$stack, $draws = [], {} | |
def method_missing *args | |
return if args[0][/^to_/] | |
$stack << args.map { |a| a or $stack.pop } | |
$draws[$stack.pop(2)[0][0]] = args[1] if args[0] == :< | |
end | |
class Array | |
def +@ |
create temp view tv2 as select | |
b.did as id, | |
(select a.value from namevalue as a where a.name='first' and | |
a.did=b.did) as first, | |
(select a.value from namevalue as a where a.name='last' and | |
a.did=b.did) as last, | |
(select a.value from namevalue as a where a.name='uid' and | |
a.did=b.did) as uid, | |
(select a.value from namevalue as a where a.name='displayname' and | |
a.did=b.did) as displayname, |
(ns headspace.core | |
(:use noir.core | |
korma.db | |
korma.core | |
clojure.pprint) | |
(:require [noir.server :as server] | |
[noir.response :as response] | |
[clojure.string :as string] | |
[net.cgrand.enlive-html :as h]) | |
(:import java.net.URL)) |