Re: dependency problem

2016-05-13 Thread Juan A. Ruz @tangrammer
:dependencies [[org.clojure/clojure "1.7.0"] [commons-codec "1.9"] [twitter-api "0.7.8" :exclusions [commons-codec]]] Hope it works for you! Juan El viernes, 13 de mayo de 2016, 12:41:43 (UTC+2), Juan A. Ruz @

Re: dependency problem

2016-05-13 Thread Juan A. Ruz @tangrammer
Hi Alan, I think you should keep commons-code 1.9 as far as is the last-version required by any dep of your project so ... you can :exclusions [org.clojure/clojure commons-codec] :dependencies [[org.clojure/clojure "1.7.0"] [commons-codec "1.9"]

[ANN] DEEP-IMPACT-AG/flowgic

2016-02-02 Thread Juan A. Ruz @tangrammer
Hi guys, here sharing an (alpha) approach to write logic flows in a declarative way https://github.com/DEEP-IMPACT-AG/flowgic One of the final purposes of this utility is to visualise the intended/written logic as you can see here

Re: Flow control in Clojure

2015-12-09 Thread Juan A. Ruz @tangrammer
Hi Ditlev, I was struggling with same flow-control logic and I reached to this (alpha) solution based in describing logic flows https://github.com/DEEP-IMPACT-AG/flowgic so far It worked fine in my current code and i think that it also answers the 2 points that Daniel Compton mentioned > 1)

Re: separation of concerns w/o encapsulation

2015-05-13 Thread Juan A. Ruz @tangrammer
Hi guys, when you talk about encapsulation do you mean using defrecords + protocols ? In this case, we are talking of choosing defrecords instead of plain functions. Maybe it would be better if we talk too about the drawbacks of this choice. For example, can we compose or extend protocol

wondering the reasons to choose defrecord vs reify in stuartsierra/component

2015-04-29 Thread Juan A. Ruz @tangrammer
Hi guys, I'm just wondering the pros/contras that justify to choose defrecord vs reify as component fn constructor. in the component README we can read To create a component, define a Clojure record that implements the Lifecycle protocol. Yes I know that defrecord creates an immutable

Which could be the best clojure alternative to replace play framework?

2015-04-09 Thread Juan A. Ruz @tangrammer
Hi guys, just looking for possible (and hopefully experienced) directions to replace Play Framework and its popular Akka support that as the doc page states https://www.playframework.com/documentation/2.0/JavaAkka: Akka provides a better platform to build correct concurrent and scalable

Re: which are the pros and cons between stuartsierra/component and prismatic/graph?

2015-02-05 Thread Juan A. Ruz @tangrammer
/defrecord-wrapper , and milesian/aop https://github.com/milesian/aop the component integration one El miércoles, 4 de febrero de 2015, 13:46:33 (UTC+1), Juan A. Ruz @tangrammer escribió: Hi guys! Can anyone give some insight on the features or downsides of choosing component vs graph libs