Luke Snape

Results 5 comments of Luke Snape

I think this more or less gets you what you want: ``` clojure (defn json-get [val ks as-text?] (reduce (fn [acc [k next]] (str acc (if (and as-text? (nil? next))...

The 2 problems I have with storing config across multiple files: - Duplication. I've found that config between non-production environments is mostly the same and usually only differs by a...

I think either of those suggestions is sufficient, with a slight preference towards the latter since it's easier to get a bird's-eye view of all the environment overrides. If you...

Yeah Aero's reader macros do seem like overkill, and after some reading around (thanks for the SO link) I don't think the case against environment variables is a good one....

That's fair enough. It's a shame though as most of the implementation is the same as that of `metrics-clojure-ring`. Would refactoring `metrics-clojure-ring` so that `metrics-clojure-aleph` can pull it in and...