Re: Digest for clojure@googlegroups.com - 8 Messages in 6 Topics

2012-01-07 Thread dawidcha
Sent using BlackBerry® from Orange -Original Message- From: clojure@googlegroups.com Sender: clojure@googlegroups.com Date: Sat, 07 Jan 2012 00:21:58 To: Digest Recipients Reply-To: clojure@googlegroups.com Subject: Digest for clojure@googlegroups.com - 8 Messages in 6 Topics ==

Re: Digest for clojure@googlegroups.com - 8 Messages in 6 Topics

2012-01-07 Thread Cedric Greevey
On Sat, Jan 7, 2012 at 8:01 AM, wrote: > Sent using BlackBerry® from Orange > > From: clojure@googlegroups.com > Sender: clojure@googlegroups.com > Date: Sat, 07 Jan 2012 00:21:58 + > To: Digest Recipients > ReplyTo: clojure@googlegroups.com > Subject: Digest

Re: ClojureScript DOM-manipulation library?

2012-01-07 Thread Ryan Waters
On Fri, Jan 6, 2012 at 2:02 PM, kovas boguta wrote: > I think what matters is the design. Jquery is an accessible > implementation target, but if someone wants to retarget the design to > gclosure, thats fine too (just more work than is need to get started) > Chris and Kovas - By going with jque

Re: [Tutorial] Making core.logic work with custom data structures

2012-01-07 Thread David Nolen
This is excellent. Thank you. On Friday, January 6, 2012, Tassilo Horn wrote: > Hi all, > > after spending the last two days making clojure.core.logic work with our > custom Java data structures, I decided to write a short blog posting > about it. Here it is: > > http://tsdh.wordpress.com/2012/0

Re: [Tutorial] Making core.logic work with custom data structures

2012-01-07 Thread Mark
Echoing the others: Thanks! -- 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 moderated - please be patient with your first post. To unsubscribe from th

Re: add records in mysql????

2012-01-07 Thread Sean Corfield
Documentation: http://clojure.github.com/java.jdbc/doc/clojure/java/jdbc/UsingSQL.html On Friday, January 6, 2012, jayvandal wrote: > I tried this code : > (defn add-ausers [user] > (sql/with-connection db > (sql/insert-record :books user > ["INSERT INTO books(BOOK_ID, BOOK_NAME, BO

Disequality

2012-01-07 Thread jim
Hey David, >From the readme the failing disequality example: (run* [q] (fresh [x y] (!= [x 2] [1 y]) (== x 1) (== y 2) (== q [x y]))) gives me ([1 2]) Shouldn't it be: (run* [q] (fresh [x y] (!= [x 2] [1 y]) (== x 1) (== y 2) (== q [x y]))) -- You received

core.logic - Disequality

2012-01-07 Thread jim
Hey David, >From the readme, the failing disequality example: (run* [q] (fresh [x y] (!= [x 2] [1 y]) (== x 1) (== y 2) (== q [x y]))) gives me ([1 2]) Shouldn't it be: (run* [q] (fresh [x y] (!= [x 2] [1 y]) (== x 1) (== y 2) (== q [x y]))) -- You receive

Re: Disequality

2012-01-07 Thread Michael Wood
Hi On 8 January 2012 06:20, jim wrote: > Hey David, > > From the readme the failing disequality example: > > (run* [q] >  (fresh [x y] >    (!= [x 2] [1 y]) >    (== x 1) >    (== y 2) >    (== q [x y]))) > > gives me ([1 2]) > > Shouldn't it be: > > (run* [q] >  (fresh [x y] >    (!= [x 2] [1 y]