I hereby claim:
- I am thejohnfreeman on github.
- I am jfreeman (https://keybase.io/jfreeman) on keybase.
- I have a public key whose fingerprint is 30BF E4CC 507D 60C6 3945 4D81 99AE 9F64 3744 325D
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Program: env | |
Parameters: -u TMUX /usr/bin/gnome-terminal -e "bash -i -c 'vim +\"silent! $LineNumber$|norm! zz\" $FilePath$'" | |
Working directory: $SourcepathEntry$ |
configurations { | |
checker | |
} | |
dependencies { | |
checker 'org.checkerframework:checker:1.9.6' | |
checker 'org.checkerframework:jdk8:1.9.6' | |
compile configurations.checker.dependencies | |
compile 'com.google.guava:guava:19.0' | |
} |
module Main where | |
import System.Environment | |
main :: IO () | |
main = do | |
args <- getArgs | |
let num1 = read $ args !! 0 | |
let num2 = read $ args !! 1 | |
res <- num1 + num2 | |
print res |
roundRobin :: Int -> [a] -> [[a]] | |
roundRobin n xs = | |
let (hs, ts) = splitAt n xs | |
in zipWith (:) hs (roundRobin n ts ++ repeat []) |
function NotPimpl(x) { | |
// more than one assignment, "deep" copy | |
this.first = x.first | |
this.last = x.last | |
} | |
NotPimpl.prototype.fullName = function() { | |
// direct members, fast | |
return this.first + this.last | |
} |
import os | |
import signal | |
import subprocess | |
import threading | |
class AsyncPopen(threading.Thread): | |
def __init__(self, command, stdin=None, **kwargs): | |
self.command = command | |
self.stdin = stdin |
foo2 |
.pipe(require('through2-spy')({objectMode: true/false}, function(){})) |
yo |