Current Projects

2008-09-28 Thread Kevin Albrecht
Hi, I have been looking into Clojure and I am looking for active projects using Clojure so that I can look at production code. Thanks, Kevin Albrecht --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group.

Re: Clojure at the JVM Languages Summit

2008-09-28 Thread Rich Hickey
On Sep 27, 7:03 pm, "Stephen C. Gilardi" <[EMAIL PROTECTED]> wrote: > Clojure appears to have been well received at the JVM Languages Summit. > > Congratulations and well done, Rich! > Thanks. The summit was really fantastic - so many interesting and smart people and lots of great presentations

Re: Support for destructuring in clojure/binding

2008-09-28 Thread Stephen C. Gilardi
On Sep 22, 2008, at 2:27 AM, Stephen C. Gilardi wrote: > I've uploaded > http://groups.google.com/group/clojure/web/binding-destructure.patch > . I updated the patch to improve readability and uploaded it to: http://clojure.googlegroups.com/web/bind-destructuring.patch --Steve --~-

Re: For socket repl: request redirectable *err* var

2008-09-28 Thread Stephen C. Gilardi
On Sep 28, 2008, at 3:56 PM, Colin Walters wrote: > On Sep 28, 1:28 pm, "Stephen C. Gilardi" <[EMAIL PROTECTED]> wrote: > >> final static public Var ERR = >> Var.intern(CLOJURE_NS, Symbol.create("*err*"), >>new PrintWriter(new >> OutputStreamWriter(Sy

Re: For socket repl: request redirectable *err* var

2008-09-28 Thread .Bill Smith
Presumably you want to use whatever encoding OUT (or whatever it's called) uses. Bill --~--~-~--~~~---~--~~ 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 To

Re: For socket repl: request redirectable *err* var

2008-09-28 Thread Colin Walters
On Sep 28, 1:28 pm, "Stephen C. Gilardi" <[EMAIL PROTECTED]> wrote: > final static public Var ERR = >                 Var.intern(CLOJURE_NS, Symbol.create("*err*"), >                            new PrintWriter(new OutputStreamWriter(System.err, > UTF8),   > true)); Is it right to put UTF8 there

For socket repl: request redirectable *err* var

2008-09-28 Thread Stephen C. Gilardi
For a socket repl, I'd like to have error output sent across the wire as well as normal output. Clojure currently provides vars (*in* and *out*) that allow a thread to redirect input and output. I suggest a new var *err* which allows redirecting error output as well. I can mostly do this wit