James Reeves

Results 830 comments of James Reeves

This seems fine in principle. Can we use rest arguments to make the debouncer more concise? ```javascript function debounce(f, wait){ var timeout; return function(...args) { clearTimeout(timeout) timeout = setTimeout(f.bind(this, ...args),...

> The downside to using spread is that Internet Explorer support is non-existent. Is Internet Explorer support still a goal for clojure-toolbox? I don't believe it's ever been a goal....

Having a script to check dead links is a good idea. Automating it is a touch harder, because you don't want to delete a project if its website is only...

I'm not against this in principle, but using a tag to communicate this information has two problems that I can see. Both "clj" and "cljs" are concise and self-explanatory. A...

I don't see any problem with moving the library suggestion link to a header instead, but it'll be a while before I can get around to it.

Okay, so there's no automatic conflict resolution like `lein uberjar`. Is that a planned/wishlist feature, or not on the roadmap?

Something configurable would be ideal. Leiningen uses a map of filename strings/patterns to a vector of read, merge and write functions. By default it defines the following: ```clojure (def components-merger...

Oh thanks! I'll check it out!

@cemerick, I usually have options set up like: ``` clojure :profiles {:dev {:source-paths ["src" "dev"]}} ``` And then place dev-specific source files in a `dev` directory, such as `dev/user.clj`. Obviously...

> One disadvantage with `ring.adapter.jetty` seems to be that the choice is coarse-grained, i.e. either all of none of your handlers will have the 3-arg signature. How does HTTP-Kit support...