Re: ANN: Clarity 0.5.1 - New GUI library

2011-12-02 Thread Doug South
Hi Stathis,

Nice presentation and the library looks interesting. One question,
when do you think it will be ported to 1.3?

Regards,
Doug

On Fri, Dec 2, 2011 at 12:55 PM, Stathis Sideris side...@gmail.com wrote:
 Hello everyone,

 I would like to announce the first release of Clarity (v0.5.1), a
 Swing-based GUI library. It's available on github and through clojars:

   https://github.com/stathissideris/clarity

   [clarity 0.5.1]

 Also, here's an introductory talk (will only play as embedded
 unfortunately):

   
 http://skillsmatter.com/podcast/scala/lightening-talk-clarity-a-wrapper-for-swing

 Finally, a couple of tutorial-style pages from the wiki:

   https://github.com/stathissideris/clarity/wiki/Component

   https://github.com/stathissideris/clarity/wiki/Forms

 This is a new library and I coule really use some feedback on the
 syntax, the features, and maybe even the code.

 Thanks,

 Stathis

 --
 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 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: When are you going to upload Conj2011 videos?

2011-11-30 Thread Doug South
On Wed, Nov 30, 2011 at 12:24 AM, Ambrose Bonnaire-Sergeant
abonnaireserge...@gmail.com wrote:
 Byrd, Friedman, Byrd, Friedman, Byrd, Friedman :)

Was their presentation actually recorded? I don't recall confreaks
being there, but then again, I was too busy watching an excellent
presentation...

-- 
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


Leiningen local dependencies?

2011-11-19 Thread Doug South
Hello,

I'm looking at using Clojure to help with the maintenance of an
existing Java Swing application. I'd like to reuse the out directories
containing all the generated class files for the Swing application as
classpath directories for a Leiningen project.

Is there a way to point a Leiningen project at the local directories?
Is there a better tool to use for this than Leiningen?

Regards,
Doug

-- 
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: Leiningen local dependencies?

2011-11-19 Thread Doug South
Thanks Stephen,

That's exactly the information I was looking for. FWIW, I went with
the :extra-classpath-dirs as the source is being built via IntelliJ at
the moment...

Regards,
Doug

On Sat, Nov 19, 2011 at 5:25 PM, Stephen Compall
stephen.comp...@gmail.com wrote:
 On Sat, 2011-11-19 at 14:06 -0500, Doug South wrote:
 I'm looking at using Clojure to help with the maintenance of an
 existing Java Swing application. I'd like to reuse the out directories
 containing all the generated class files for the Swing application as
 classpath directories for a Leiningen project.


 It's best to get Leiningen to compile your Java sources for you.
 The :java-source-path and :javac-options project.clj settings will help
 here.

 If that is not feasible, try including the root of the class files in
 the :extra-classpath-dirs project.clj option.


 --
 Stephen Compall
 ^aCollection allSatisfy: [:each|aCondition]: less is better



-- 
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: Clojure-in-CommonLisp?

2011-11-15 Thread Doug South
With my limited theoretical understanding of Clojure, I would expect the 
language to interop with the platform it was implemented on. Therefore I would 
expect Clojure in CL to interop with CL and not the JVM. 

I know a little CL and even less of Clojure, but wouldn't Clojure in CL be 
fairly trivial? Just a DSL in CL?

Sent from my iPhone

On 15/11/2011, at 12:51 AM, Cyrus Harmon cyrushar...@gmail.com wrote:

 
 Tim,
 
 I've been wanting this for some time. Obviously the java interop stuff poses 
 challenges, but the clojure data types, protocols, immutable objects, clojure 
 syntax, etc... would make for a nice dialect of lisp to be used alongside 
 other CL code. (I guess I'm in the small minority of folks that is much more 
 interested in interacting with existing Common Lisp code than with existing 
 Java libraries.)
 
 Cyrus
 
 On Nov 14, 2011, at 4:18 PM, daly wrote:
 
 It seems to me that a Clojure in Common Lisp might be the
 easiest non-JVM port. It would be a DSL within Common Lisp.
 A CL implementation would even allow rewriting the normal
 COND syntax. Is there an obvious reason why this would be
 a bad idea?
 
 Heck, it might even be possible to make the port literate :-)
 
 Tim Daly
 
 
 -- 
 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 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 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: Clojure Conj extracurricular activities spreadsheet

2011-11-05 Thread Doug South
On 04/11/2011, at 9:16 PM, Michael Fogus mefo...@gmail.com wrote:

 Any thoughts about when / where these events can take place?
 
 At this point it would be great if a Conj-planning heavyweight could
 step in and provide some additional ideas... although solutions would
 be great too.  :-)

According to the conference schedule the conference room is available until 
11pm on Thursday. I don't know how big the room is, but as long as the Overtone 
folks don't get too loud ;), that might be a good place and time to have a mini 
open conference. As long as all the people involved take responsibility for 
returning the room to it's conference state at the end of the night, that 
might work well?

Regards,
Doug

Sent from my iPhone

-- 
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