Re: Commercially-supported, polished Clojure development environment

2010-06-09 Thread Matthew Elder
i think if la clojure were improved more, ie autocompletion in the repl etc that it would be very solid. On Wed, Jun 9, 2010 at 4:33 AM, Chas Emerick wrote: > Following the results from the State of Clojure survey, and some follow-up > comments from some in #clojure indicating that they, too, wo

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2010-05-28 Thread Matthew Elder
Yes but not too much yak shaving, it is important to run with the simplest thing that will work first. On 5/27/10, Jason Smith wrote: > Why not design it so that it can be backed by Swing or SWT or HTML > (perhaps with some AJAX) or whatever? It seems kind of silly to do an > abstraction on a s

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2010-05-28 Thread Matthew Elder
I will send patches!! get on github no. ;) On 5/27/10, Luke VanderHart wrote: > Thanks, Heinz... I may. > > Right now I'm still exploring what I want the API to be. I was hoping > to achieve something a bit "thicker" that could insulate the user from > Java classes completely. The user would

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2010-05-28 Thread Matthew Elder
+1 QT On 5/27/10, Joost wrote: > Personally, I prefer SWT over Swing mostly because seems a lot more > useful and a little more responsive to the user. > > But then I think Swing is horrible and SWT is just a bit better. I > seriously prefer Tk over both (except for the file selection dialogs > o

Re: No matching method found for javax.mail.internet.MimeMessage

2010-05-27 Thread Matthew Elder
TO ^String to) >     (setRecipients Message$RecipientType/CC ^String cc) >     (setRecipients Message$RecipientType/BCC ^String bcc) >     (setFrom from) >     (setSubject subject) >     (setContent body "text/plain"))) > > Hope that helps, > Sean > > On May

Re: No matching method found for javax.mail.internet.MimeMessage

2010-05-27 Thread Matthew Elder
This actually helped alot, here is the relevant excerpt (defn plain- message). It is rewritten the original way I wanted to do it. Here it is: (defn plain-message [{:keys [from to cc bcc subject body]}] (doto (new MimeMessage (get-default-session)) (.setRecipients Message$RecipientType/TO (i

Re: No matching method found for javax.mail.internet.MimeMessage

2010-05-27 Thread Matthew Elder
This actually helped alot, here is the relevant excerpt (defn plain- message). It is rewritten the original way I wanted to do it. Here it is: (defn plain-message [{:keys [from to cc bcc subject body]}] (doto (new MimeMessage (get-default-session)) (.setRecipients Message$RecipientType/TO (i

Re: No matching method found for javax.mail.internet.MimeMessage

2010-05-27 Thread Matthew Elder
This actually helped alot, here is the relevant excerpt (defn plain- message). It is rewritten the original way I wanted to do it. Here it is: (defn plain-message [{:keys [from to cc bcc subject body]}] (doto (new MimeMessage (get-default-session)) (.setRecipients Message$RecipientType/TO (i

No matching method found for javax.mail.internet.MimeMessage

2010-05-27 Thread Matthew Elder
ime Environment (build 1.6.0_16-b01) Windows XP SP3 - I am retrieving jars via lein (project.clj included in pastebin) Any help is appreciated! Thanks, Matthew Elder Novice Clojure Programmer -- You received this message because you are subscribed to the Google Groups "Clojure" group. To