Re: help needed to use reducers and monoid

2012-08-20 Thread nicolas.o...@gmail.com
(defn generate [board next-boards] ;; next-boards return a seq of MoveAndBoard (BoardAndChildren. board (r/map (fn [m] (MoveAndTree. (:move m) (generate (:board m) next

Re: help needed to use reducers and monoid

2012-08-20 Thread Jim - FooBar();
On 20/08/12 10:12, nicolas.o...@gmail.com wrote: (defn generate [board next-boards] ;; next-boards return a seq of MoveAndBoard (BoardAndChildren. board (r/map (fn [m] (MoveAndTree. (:move m)

is this a problem for clojure.contrib.dataflow? Or something else?

2012-08-20 Thread matt hoffman
I have a problem that I'm trying to figure out how to tackle. I'm new to Clojure, but I'm interested, and perhaps this will be my excuse to give it a try. Any of the following answers would help: "What you're describing really sounds like X" "You could think of that problem like this, instead" "Y

Re: Having issues installing clj-http

2012-08-20 Thread Alexandre Jasmin
> repo1.maven.org: Name or service not known It seems you were having some network connectivity issues. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are

Re: Logic Programming

2012-08-20 Thread semperos
miniKanren has been ported by David Nolen as well and is part of the core set of Clojure libraries: https://github.com/clojure/core.logic On Sunday, August 19, 2012 5:42:15 PM UTC-4, David Nolen wrote: > > On Fri, Aug 17, 2012 at 11:45 PM, Benjamin Chi > > > wrote: > > Hi Jim. Where is that l

Re: Follow-up questions on Stuart's InfoQ interview

2012-08-20 Thread semperos
With regards to reducers, I think it's worth watching one of Rich's own talks on this as well: http://vimeo.com/45561411 On Friday, August 17, 2012 6:29:29 PM UTC-4, Ben Mabey wrote: > > On 8/17/12 3:03 PM, Rich Morin wrote: > > I took a break from reading "Programming Clojure, 2e" to watch Stu

Re: Follow-up questions on Stuart's InfoQ interview

2012-08-20 Thread Mayank Jain
@semperos Thanks for sharing. On Mon, Aug 20, 2012 at 7:10 PM, semperos wrote: > With regards to reducers, I think it's worth watching one of Rich's own > talks on this as well: > > http://vimeo.com/45561411 > > > On Friday, August 17, 2012 6:29:29 PM UTC-4, Ben Mabey wrote: >> >> On 8/17/12 3:03

templating approaches for Lispish notations?

2012-08-20 Thread Rich Morin
The Suggested Upper Merged Ontology (SUMO) is a collection of logical axioms, expressed in a Lispish notation (SUO-KIF). The axioms are readable, but rather repetitive and verbose. For example, this axiom: (=> (instance ?COMPANY Coffeeshop) (exists (?SERVICE ?BEVERAGE) (and

Re: help needed to use reducers and monoid

2012-08-20 Thread Jim - FooBar();
On 20/08/12 12:34, Jim - FooBar(); wrote: On 20/08/12 10:12, nicolas.o...@gmail.com wrote: (defn generate [board next-boards] ;; next-boards return a seq of MoveAndBoard (BoardAndChildren. board (r/map (fn [m] (MoveAndTree.

Re: is this a problem for clojure.contrib.dataflow? Or something else?

2012-08-20 Thread Leif
+1. I know of a couple tools in python for this purpose that are called "workflow management systems." It would be good to know if there is a robust one in clojure. On Monday, August 20, 2012 12:18:54 AM UTC-4, matt hoffman wrote: > > I have a problem that I'm trying to figure out how to tack

Re: is this a problem for clojure.contrib.dataflow? Or something else?

2012-08-20 Thread ronen
Terabyte size and chain of dependent tasks might hint toward Cascalog this assumes that your doing batch job processing (on top of hadoop) If you need a more soft real time datalog based query then I would check datomic alt

Re: is this a problem for clojure.contrib.dataflow? Or something else?

2012-08-20 Thread ronen
Also last time I checked dataflow in contrib was dead, Cascalog, datomic and to some extent core.logic fill this niche Ronen On Tuesday, August 21, 2012 3:55:46 AM UTC+3, ronen wrote: > > Terabyte size and chain of dependent tasks might hint toward > Cascalog