Acclimation
The first step to learning something new is acclimation.
If you keep doing what you're doing you'll keep keeping getting what you got.
-- J. Alexander (Top Model Judge)
Comments [0]
"Either write something worth reading or do something worth writing." - Benjamin Franklin
Comments [0]
When I host a subdomain at my ISP, they automatically create an 'A' record for domain. For instance, I want my ISP to host 'www.luth3r.com' but NOT 'luth3r.com'. Unfortunately, they seem coupled ...
Comments [0]
It's not about the biggest brain in the room - it's about finding a sweetspot.
Comments [0]
Running through an introduction to Clojure with an Eclipse plugin is really quite easy to setup and get working.
(ns com.luth3r.test)
(def v 1)
(defn f1 []
(println "f1: v =" v))
(defn f2 []
(println "f2: before let v =" v)
(let [v 2]
(println "f2: in let, v =" v)
(f1))
(println "f2: after let v =" v))
(defn f3 []
(println "f3: before binding v =" v)
(binding [v 3]
(println "f3: in binding v =" v)
(f1))
(println "f3: after binding v =" v))
(defn f4 []
(def v 4))
(f2)
(f3)
(f4)
(println "after calling f4, v =" v)
Comments [0]
Comments [0]