Skip to content

Instantly share code, notes, and snippets.

@jjmojojjmojo
jjmojojjmojo / gist:5bea23cfc1b516c38fb0
Created January 17, 2015 16:02
boot aot error (2.0.0-rC6)
$ boot aot -n m3ucopy
Picked up _JAVA_OPTIONS: -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel
clojure.lang.ExceptionInfo: java.lang.RuntimeException: No such namespace: util, compiling:(NO_SOURCE_PATH:0:0)
data: {:file "../tmp/boot.user1186945461330233579.clj", :line 17}
java.util.concurrent.ExecutionException: java.lang.RuntimeException: No such namespace: util, compiling:(NO_SOURCE_PATH:0:0)
clojure.lang.Compiler$CompilerException: java.lang.RuntimeException: No such namespace: util, compiling:(NO_SOURCE_PATH:0:0)
java.lang.RuntimeException: No such namespace: util
...
clojure.core/eval core.clj: 2927
boot.pod/eval-in* pod.clj: 203
@jjmojojjmojo
jjmojojjmojo / test.cljs.hl
Last active August 29, 2015 14:21
Hoplon toggle button array
(page "test.html")
(defc working-set [])
(defn setup-working-set
"Initially populate the working set - normally the result of an async call"
[data]
(let [wset (map (fn [c] [c false]) data)]
(reset! working-set wset))
(prn working-set))