Re: Best IDE

2012-01-19 Thread David Brunell
How long did it take you to get comfortable with paredit?  I keep getting
frustrated and going back to manually matching parens.

On Thu, Jan 19, 2012 at 9:37 AM, Maris maris.orbid...@gmail.com wrote:


 Emacs + Paredit is probably the best IDE.
 Nothing improves productivity like paredit.



-- 
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: namespace what?

2011-12-14 Thread David Brunell
Do you have a complete program that you are trying to get working, along
with errors?  The examples.core namespace was chosen at random; you could
call it whatever you want.  It refers to the namespace in which your main
program runs.  In order to have clarity.component recognized, you need to
manage your classpath and dependencies.  The easiest way would be to create
a project with lein, edit the project.clj, then run lein deps.  Clarity is
in the clojars repository, so it will pull it in automatically for you and
place it in the classpath.

On Tue, Dec 13, 2011 at 4:50 PM, jayvandal s...@ida.net wrote:

 I think I understand namespace and then I don't!
 I try to run this example
 (ns examples.core
  (use [clarity.component :as c]))

  (make :button The Button)
  I have programs stored in c:\projects\klarity.clj
 I have clojure stored in c:\clojure-1.2.1\clojure-1.21.
 I am running c:\cljr\clj-installer-jar

 I tried running
 (ns clojure-1.2.1.clojure-1.2.1.src.clojure.core
  (use [clarity.component :as c]))

  (make :button The Button)

 What is namespace suposed to point to or access???

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