Joe Littlejohn

Results 164 comments of Joe Littlejohn
trafficstars

I think the 99% claim needs some evidence :) The counter example is of course something like: ``` clj (def colors [:red :yellow :pink :green :purple :orange :blue]) ``` Is...

Some examples: https://github.com/clojure/clojure/blob/1.3.x/test/clojure/test_clojure/predicates.clj#L97 https://github.com/overtone/overtone/blob/release/0.8.0/src/overtone/examples/gui/keynome.clj#L6 https://github.com/overtone/overtone/blob/release/0.8.0/src/overtone/examples/compositions/blues.clj#L47

@harold I prefer your `Also current (but slightly sad):` example :stuck_out_tongue: Your last example produces a lot of unnecessary horizontal indention that can get wasteful very quickly.

Hi @u6f6o. If I understand it correctly, the quote from the Hystrix javadoc is implying that one should not be too broad in applying the HystrixBadRequestException because it means that...

Although it complicates the docs a bit, I think the only complete solution here (if you want to remove that bad request count from your dashboard) is to offer two...

Thanks for updating the travis config. Could you rebase this PR against the latest master?

@ljos your example seems to show a rule that identifies a redundant `let` that can be removed. I think the goal of this change is something different, it is to...

Since we don't know if `?x` is in any of the clauses, surely this means that your suggested rule is unsafe? I don't think the original proposed rules suffer from...

Another problem (similar) is that Java constructs are considered to be first-class functions, which they are not. So kibit currently recommends this: ``` [null] Consider: Boolean. instead of: #(Boolean. %)...