Two minor typos in the cheatsheet

2009-10-01 Thread AlamedaMike
odd and even should be odd? and even? Thanks for creating this. Most useful. --~--~-~--~~~---~--~~ 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

Very minor problem in the REPL

2009-07-17 Thread AlamedaMike
This is so trivial from a technical standpoint I'm embarrassed to mention it. The REPL is accepting more than one sexp on a line and then generating output for all of them in an unusual fashion. In the following, all text after the first line is generated by clojure (except for the comment, of

Re: Clojure 1.0.0 has been uploaded to Maven Central - Finally

2009-07-14 Thread AlamedaMike
Stefan, Meikel, Thanks much for this. It looks very interesting. Forgive a newb question but I just downloaded Maven for the first time 30 minutes ago. I read the Maven in 5 minutes doc, and executed: mvn archetype:create -DgroupId=org.clojure -DartifactId=clojure followed by: mvn package

Re: Can anyone help getting Enclojure to work?

2009-07-14 Thread AlamedaMike
Bruce, There is a Google group for Enclojure at: http://groups.google.com/group/enclojure/ You might try there, as they have discussed similar issues recently. On Jul 13, 6:49 pm, bruceq bruc...@gmail.com wrote: I am having problems getting Enclojure to work properly on Netbeans 6.7 and

Re: Clojure 1.0.0 has been uploaded to Maven Central - Finally

2009-07-14 Thread AlamedaMike
into Maven now, but it looks like I'll have to bite the bullet. Thanks again. On Jul 14, 9:15 am, Daniel E. Renfer d...@kronkltd.net wrote: On Tue, 2009-07-14 at 06:58 -0700, AlamedaMike wrote: Stefan, Meikel, Thanks much for this. It looks very interesting. Forgive a newb question but I

Re: clojure.contrib.miglayout improved, + new old example

2009-06-01 Thread AlamedaMike
Thanks for contributing this. It will definitely shorten my learning curve with Mig. On May 31, 12:49 am, Stephen C. Gilardi squee...@mac.com wrote: MiGLayout is a nice layout manager that works with Swing.   clojure.contrib.miglayout provides a Clojure interface for it. I've enhanced

Re: Clojure at JavaOne

2009-05-18 Thread AlamedaMike
+1 for showing the Ant demo and modifying it while it's running. Emphasize how easy it is to get RELIABLE concurrency using agents/STM. As Steve Jobs has long known, eye candy counts, and Ants is an eye candy way of seeing concurrency in action. I would also keep a second REPL open and test out

Re: Clojure 1.0

2009-05-04 Thread AlamedaMike
Congratulations, Rich! And thanks for all your hard work. Having a 1.0 release out to help adoption in the workplace environments that we need to get into. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Clojure

Re: Clojure 1.0

2009-05-04 Thread AlamedaMike
Congratulations, Rich! And thanks for all your hard work. Having a 1.0 release ought to help adoption in the workplace environments that we need to get into. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Clojure

Re: Oracle and Clojure

2009-04-20 Thread AlamedaMike
I can see a lot of technologies that drive the open source world, and this group, being compromised Nothing's going to happen, for the simple reason that the cost to Oracle's reputation would far outweigh anything they might gain from charging for open-source products. The ultimate effect

Re: Clojure + Java compilation and IntelliJ IDEA plugin

2009-03-25 Thread AlamedaMike
It's very good question, and to be honest I don't know exact question for it. I may imagine both cases from Clojure to Java and vise versa. Making first variant default I was followed by one letter I had received. It was about some project written in IDEA, where Clojure is used for core

Re: Clojure plugin for IntelliJ IDEA published

2009-03-12 Thread AlamedaMike
So, we're going to implement it in near-term future. Thanks Ilya! I (and I'm sure others) will look forward to it. It seems to be a good tactics to compile all files with namespaces labeled by :gen-class to the same output path as vanilla java classes before compiling Java part (to allow the

Re: Clojure plugin for IntelliJ IDEA published

2009-03-10 Thread AlamedaMike
Hi Ilya, I would like to use the IntelliJ IDEA to create a GUI in the forms designer and then code the rest of the app in Clojure. I would like both Java and Clojure code to be registered in a single project and compiled together. If you can do that, you've got yourself another sale. Can you

Re: Anyone want to start a Clojure study group in San Francisco Bay Area?

2009-03-06 Thread AlamedaMike
Jason, Check out: http://www.meetup.com/The-Bay-Area-Clojure-User-Group/calendar/9719627/?a=ce1p_grp The next meeting is March 12th. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Clojure group. To post to this

Re: Waterfront - The Clojure-based editor for Clojure

2009-02-24 Thread AlamedaMike
Thanks for this Itay.Very sweet. I've been running it against the Dec. 17th download and it works fine on Vista SP1. I'm particularly impressed with the quality of the error messages. A few suggestions / questions: * there's a lot of whitespace to the right even when I don't have the window

Re: Waterfront - The Clojure-based editor for Clojure

2009-02-24 Thread AlamedaMike
Thanks for the quick response Itay. Thus, the workaround is this: highlight only the Math part and then choose Reflect. Yup! Very nice feature. A few further suggestions, if you're in the mood: * a separate REPL tab would be very useful and save me from having to enter code into the file,

Re: Clojure on CLR/DLR

2009-02-17 Thread AlamedaMike
Fantastic news, David. This should help the spread of Clojure. Although I like Bonjure as a name, and even though two syllable names are generally considered best by marketers, I think ClojureCLR is best for branding purposes. It helps spread the Clojure meme and it linguistically supports the

Re: A short guide on how to use NetBeans to create GUI and then use this GUI from clojure available

2009-02-05 Thread AlamedaMike
Vlad, thanks for updating the guide. I've saved the new version. Tim, thanks for the ideas. I've tried both and both work well. It did get me thinking that it would be great to have a way to interrogate an open gui app from the command line, or perhaps, from a separate area in the app itself

Re: A short guide on how to use NetBeans to create GUI and then use this GUI from clojure available

2009-02-04 Thread AlamedaMike
I'm having a problem that appears tied to this aspect of the guide (written for Linux): Before continuing, symlink build/classes/gui into the test-project directory (note, there is a “.” as the last character in the 2nd command): cd ~/test-project ln -s build/classes/gui/ . // note

Re: A short guide on how to use NetBeans to create GUI and then use this GUI from clojure available

2009-02-04 Thread AlamedaMike
I'm having a problem that shows as: java.lang.ClassNotFoundException: gui2.MainFrame java.lang.ClassNotFoundException: gui2.MainFrame at java.net.URLClassLoader$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at

Re: A short guide on how to use NetBeans to create GUI and then use this GUI from clojure available

2009-02-04 Thread AlamedaMike
Michael, Timothy, Thanks much to both of you. 2) The current directory (parent of gui2) is in the class-path -cp option when launching Clojure The problem was that I had used the gui directory in the classpath, rather than its parent. (The real problem is that I'm a Java noobie.) The frame

Re: A short guide on how to use NetBeans to create GUI and then use this GUI from clojure available

2009-02-04 Thread AlamedaMike
The quote symbol rendered is not copy+paste friendly. The quote problem can be fixed by using: (import (quote (gui2 MainFrame)))etc... instead of using the single quote mark. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: A short guide on how to use NetBeans to create GUI and then use this GUI from clojure available

2009-02-02 Thread AlamedaMike
As it happens, I just downloaded NetBeans a few hours ago to start working on this very issue. Thanks for saving me the trouble! Also, Nokia has just changed the licensing of Qt Jambi so that LGPL can be used. My sense is that Qt looks nicer than Swing, though I'd be happy to hear if otherwise

Re: Clojure Box (was Working combination of .emacs, Aquamacs, swank-clojure, clojure-mode?)

2008-11-21 Thread AlamedaMike
I would find it useful. Given the number of posts on this group concerning editor setups, I'd say that a lot of others would as well. Mike --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Clojure group. To post to

Re: Clojure's first year

2008-10-17 Thread AlamedaMike
Thanks for a great language, Rich. Here's to broad acceptance! Mike On Oct 17, 12:09 am, Paul Drummond [EMAIL PROTECTED] wrote: Congratulations Rich! I remember when Clojure was first announced (it doesn't feel like a year ago!)  it was like a breath of fresh air! It was during a time when

Re: offtopic - where are you come from? (poll)

2008-10-17 Thread AlamedaMike
Alameda (an island in San Francisco Bay), California, USA --~--~-~--~~~---~--~~ 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 unsubscribe from this group,