I hereby claim:
- I am holsee on github.
- I am holsee (https://keybase.io/holsee) on keybase.
- I have a public key whose fingerprint is B22C EBB5 D360 3B89 265C 49A5 AA49 BBFF 734A E473
To claim this, I am signing this object:
class Nails | |
def to_s | |
"nails" | |
end | |
end | |
class Glue | |
def to_s | |
"glue" | |
end |
import scala.annotation.tailrec | |
val x = new Rational(1, 3) | |
val y = new Rational(5, 7) | |
val z = new Rational(3, 2) | |
x.numer | |
x.denom | |
x - y - z |
// PACKAGES | |
//commented out to get ws to run | |
//package foo | |
object bar { | |
} | |
class bam { |
function getBox(board, x, y) { | |
var from = x * 3; | |
var to = from + 3; | |
var target = y * 3; | |
return board[0+target].slice(from, to) | |
.concat(board[1+target].slice(from, to)) | |
.concat(board[2+target].slice(from, to)) | |
} |
defmodule BTree do | |
defstruct tree: nil | |
def new(e), do: %BTree{tree: {e, nil, nil}} | |
def insert(%BTree{tree: root}, element) do | |
%BTree{tree: do_insert(root, element)} | |
end | |
defp do_insert(nil, element) do |
defmodule Sjt do | |
def perms([]), do: [[]] | |
def perms(l = [_h|_t]) do | |
for h <- l, t <- perms(l -- [h]), do: [h|t] | |
end | |
end |
I hereby claim:
To claim this, I am signing this object:
// Rates | |
rate "128000" | |
cl_cmdrate "128" | |
cl_updaterate "128" | |
cl_interp "0.0" | |
cl_interp_ratio "1" | |
cl_lagcompensation "1" | |
//MOTD | |
cl_disablehtmlmotd "1" |