AlexBaranosky

Results 9 comments of AlexBaranosky

That said, as Technomancy pointed out, it is pretty standard to test files naked using or require/referring clojure.test and the ns under test. Maybe we could mention that in the...

@kkinnear I too hate seeing the default approach. In this case I usually just go over 80 lines (which I don't hink is such a big deal). I think your...

I'm not sure if that comment is agreeing or disagreeing with me, but assuming it is disagreeing, I would ask what `empty?` is for if not this use?

Maybe what we really need is an easy way to configure which substitutions different users prefer?

My pull request (https://github.com/weavejester/clj-aws-s3/pull/16) allows `get-object` to pull down any user metadata as well.

Is anyone reading these issues? I can write a PR for this if I know it'll get merged... otherwise won't waste my time.

@eric What about: ``` clj (defn moving-average [num-seconds & children] (moving-event-window num-seconds (apply smap folds/mean children))) ```

I"m seeing the same thing: ``` clj (def r ["/" {["sleep/" :foo] :bar}]) (bidi/match-route (bidi/compile-route r) "/sleep/50") ``` It looks like the where you `extend-protocol PatternSegment` CompiledRoute has no method...

This code added to the defrecord code for CompiledPrefix doesn't quite work: ``` clj PatternSegment (segment-regex-group [this] (segment-regex-grop regex)) (param-key [_] (pattern-key regex)) (transform-param [_] (transform-param regex)) (matches? [this s]...