Poster Child

 

Acclimation

The first step to learning something new is acclimation.

Comments [0]

Change It Up

If you keep doing what you're doing you'll keep keeping getting what you got.

-- J. Alexander (Top Model Judge)

Comments [0]

Ben Franklin

"Either write something worth reading or do something worth writing." - Benjamin Franklin

Comments [0]

Patient Consistency

Progress comes with patient consistency.

Comments [0]

Focus Focus Focus

I keep telling myself ...

Comments [0]

DNS Hosting is a Pain

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]

The Biggest Brain in the Room

It's not about the biggest brain in the room - it's about finding a sweetspot.

Comments [0]

Reading Clojure

Comments [0]

Clojure and Eclipse

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]

Back to YUI

Firing up chapter 2 of my YUI tutorial from safari. Neat stuff.

Comments [0]