[ANN] rocks.clj/configuron 0.1.0

2018-02-14 Thread Edward Knyshov
Hi. I released first version of https://github.com/edvorg/configuron . configuron is a configuration library that has interface of environ, but has additional features. - env variable is updated every time you update you project.clj - clojurescript support. you can access your config on fro

Re: try catch leaking exception

2018-02-14 Thread Thomas Heller
lazy-seq is the short answer. You are constructing the seq inside the try/catch but it is realized outside of that so no exceptions will be caught. (defn gen-ym-list [from to] (try (->> (p/periodic-seq (f/parse ym-fmt from) (t/months 1)) (take-while #(not (t/after? % (f/parse ym-f

Re: try catch leaking exception

2018-02-14 Thread icamts
Thanks a lot. I was far from it and now I'm grateful for this new insight. We never stop learning. Cheers, Luca On Wednesday, February 14, 2018 at 12:20:20 PM UTC+1, Thomas Heller wrote: > > lazy-seq is the short answer. > > You are constructing the seq inside the try/catch but it is realized >

[ANN] Re-ops, REPL driven operations

2018-02-14 Thread ronen
Re-ops , is a project that takes a different approach for configuration management and VM orchestration, by using a live Clojure REPL it enables rapid change and flexibility beyond that of existing tools. It uses pure functions and datastructures to define pipelines and operations thus making i

Re: try catch leaking exception

2018-02-14 Thread Erik Assum
There is also https://github.com/magnars/realize/blob/master/README.md which helps with this problem. Erik. -- i farta > 14. feb. 2018 kl. 12:20 skrev Thomas Heller : > > lazy-seq is the short answer. > > You are constructing the seq inside the try/catch but it is realized outside > of tha