Re: [ANN] a HugSQL adapter for postgres.async

2015-11-04 Thread chepprey
Is there anything that compares/contrasts HugSQL and YesQL?

On Sunday, October 25, 2015 at 9:36:40 PM UTC-4, Robin Heggelund Hansen 
wrote:
>
> You can now have async communication with your postgres database and 
> HugSQL over plain core.async channels.
>
> https://github.com/Skinney/hugsql-async
>

-- 
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 this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: is there a 4Clojure forum anywhere?

2011-08-31 Thread chepprey
...nd now with our 2nd I need a hint! posting, I think it's time
I take Alan Malloy's advice and start a forum for 4Clojure problems.

May I present to you:   http://groups.google.com/group/4clojure

@Alan M - feel free to link to this from 4clojure.com.  Also if you
would like to have any sort of administrative control over the group,
I'm delighted to hand any / all control over to you.  I've never set
up a GG before, I have no idea how much responsibility there is in
owning one.

@finbeu - be sure to post your Compress a sequence question!

Enjoy!

-chepprey


On Aug 30, 11:12 am, finbeu info_pe...@t-online.de wrote:
 Hmm, I got stuck on the Compress a sequence. I had a look at the
 clojure/core.clj distinct function and I guess I have to use something
 similar to define my function. Or is it easier?

 - finbeu

-- 
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 this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en


Re: is there a 4Clojure forum anywhere?

2011-08-29 Thread chepprey
@Bob --  recovery group, stop now, --  hehehe.   It certainly is a
great website for when I get bored with the daily grind of enterprise-
Java coding.  I guess I was lucky to get stuck on one problem.

-- 
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 this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en


is there a 4Clojure forum anywhere?

2011-08-26 Thread chepprey

I've just started going through the problems on http://4clojure.com .
Very fun.

Does anyone know if there's a discussion forum dedicated to that
site?  I've searched but nothing jumps out.

I'm looking for a hint on how to solve the Nth Element problem
(without cheating and using the nth function).

-- 
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 this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en


noob q: infinite loop recur

2010-08-10 Thread chepprey
Dipping my toes for the first time in Clojure.  Having some beginner
troubles.

THIS code works (on the repl, if that matters... also, Clojure 1.2):

(defn show [words]
(let [word (first words)]
(do
(println word)
(if (nil? word)
(println DONE)
(recur (rest words))

(show '(some sample words))

... this shows the 3 words, then DONE, and terminates.

But originally, I was trying to use loop/recur.  If I replace the
let with loop in the above code, it goes into an infinite loop.  I
assume there's something different in the scoping/binding rules with
loop, but I can't find a good explanation of what.  I read in
Programming Clojure, regarding loop, that it ...works like let,
establishing bindings and then evaluating exprs...

Noob Q#2: should I (and when) use next instead of rest on a seq?
a lazy seq?

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 this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en


Re: noob q: infinite loop recur

2010-08-10 Thread chepprey

To all - THANKS (especially David Sletten) for the excellent
responses!  Very helpful.

-- 
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 this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en