David Sargeant
David Sargeant
How can I customize the tab foreground and background colors?
Initial values need to check for undefined, since you might not pass any value. This is currently a bug. Personally I would leave off the initial value for all the...
I reworked the autocomplete example for anyone who is interested. ``` Clojure (ns async-test.autocomplete.core (:require [cljs.core.async :refer [! chan dropping-buffer]] [clojure.string :as string] [async-test.utils.helpers :refer [event-chan by-id set-class throttle clear-class...
The following does not produce expected results. Any thoughts? ``` Clojure (defn log-obj [o] (.log js/console o)) (defn drain [c] (go (while true (log-obj (str "take: " (! c n)...
curl http://localhost:8000/greeting/david returns ``` html HelloHello, david! ``` pronk --num-requests=100 http://localhost:8000/greeting/david tested in 2.374 msec (74.8% CPU) Error: connect: does not exist (Connection refused) The following works, however. pronk --num-requests=100...
On a production size database with ~550k keys, the initial scanning of keys takes far too long or never completes. By contrast, the same dataset loads almost instantly with Medis....
I noticed you've been contributing to the dommy project. Should crate and dommy merge to make life easier for the end user? David
The following does not work in any browser I tested. ``` Clojure (listen! :click (fn [evt] (log "button clicked!"))) ``` Nor does ``` Clojure (listen! js/document :click (fn [evt] (log...
Error: Cannot find module 'coffee-script/lib/optparse' Should be 'coffee-script/lib/coffee-script/optparse' or 'coffee-script/optparse'. Not sure. I'm new to npm and node. Either way the path is wrong.