Re: Clojure on an Erlang-vm-os on Xen?

2015-12-17 Thread Juan Martín
Hi Wade, There are no roadblocks that I know of for using ClojureScript and Om along with Pheonix/Elixir. I haven't tried using Datomic from an Elixir (or Erlang) project though. There is a library called datomex (which you probably already know), although

Re: Clojure on an Erlang-vm-os on Xen?

2015-09-17 Thread Juan Martín
Hi Fergal, This is great news! Even more so since I'm currently working at Inaka (a company acquired by Erlang Solutions last year). Also, I've been working in a project that uses ClojureScript/Om in the FrontEnd and Elixir/Plug/Erlang in the backend and it has been great. Regards, Juan On

Re: perform action after events stop for some period

2014-12-06 Thread Juan Martín
Hey Brian, Yes you are absolutely right, my bad, futures *do* run on a thread pool since they use https://github.com/clojure/clojure/blob/master/src/clj/clojure/core.clj#L6622 the *clojure.lang.Agent/soloExecutor* created here

Re: [Request for Feedback] Clojure Lab: IDE for Clojure in Clojure

2014-06-27 Thread Juan Martín
Hi Raoul, There are some things included in JDK 1.7 that some of the dependencies use (at least one of them that I'm sure of which uses java.nio package) which makes it hard to make the application compatible with 1.6. It's not for lack of trying since I considered downgrading to Java 1.6 (see

Re: [Request for Feedback] Clojure Lab: IDE for Clojure in Clojure

2014-06-27 Thread Juan Martín
Hi Sean, Thanks you for the kind words and for creating issue on the project! I'll look into them as soon as I can. Cheers, Juan On Friday, June 27, 2014, Sean Corfield s...@corfield.org wrote: Nice piece of work - especially for a school project at any level! Impressive! Sean On Jun 27,

Re: Implementation options for auto-complete and symbol resolution while coding

2013-12-23 Thread Juan Martín
*John:* I had watched that talk a while ago, not sure how I got to it. The work he describes is really interesting and sounds quite herculean, something that a company like Google can do. Unluckily the project hasn't seen the public light of day yet, at least not that I know of. *Zack*: Thanks

Re: doing a Google search from Clojure?

2013-03-22 Thread Juan Martín
Yes, the *do *is necessary since the character needs to be appended to the *StringBuilder *and *recur *needs to be called after doing that. I actually took the code from the clojure.core/slurphttps://github.com/clojure/clojure/blob/master/src/clj/clojure/core.clj#L6279function :). Cheers, Juan

Re: max doesn't return max?

2012-12-12 Thread Juan Martín Muñoz Facorro
Arguments to *max* should be supplied explicitly. If you want to use a sequence you should use *apply* with *max*: (apply max [1 2 0.5]) Regars, Juan On Wednesday, December 12, 2012 6:12:20 PM UTC-3, HamsterofDeath wrote: maybe i am blind, but why does max return the complete lazy seq here