Skip to content

Instantly share code, notes, and snippets.

@lamida
lamida / .bowerrc
Last active August 29, 2015 14:02
{
"directory": "public/lib",
"proxy":"http://<proxy>",
"https-proxy":"http://<proxy>"
}
;;; my solution
(define (min a b)
(if (< a b) a b))
(define (min3 a b c)
(min a (min b c)))
(define (square x)(* x x))
@lamida
lamida / env
Last active December 20, 2015 10:49
export JAVA_HOME=/opt/jdk-current
export GOROOT=/opt/go
export PATH=$PATH:/opt/jdk-current/bin
export PATH=$PATH:/opt/apache-maven-current/bin
export PATH=$PATH:/opt/scala-current/bin
export PATH=$PATH:/opt/clojure-current
export PATH=$PATH:/opt/go/bin
export PATH=$PATH:/opt/sbt/bin
export PATH=$PATH:/opt/mongodb-current/bin
export PATH=$PATH:/opt/hadoop-current/bin