Re: getting started: generated address-book directory does not match tutorial

2016-01-30 Thread gianluca torta
are you using leiningen 2.x? in such a case, it should download and install the desired template on the fly when you give command: $ lein new hoplon address-book hth, Gianluca On Saturday, January 30, 2016 at 3:54:32 AM UTC+1, hiskennyness wrote: > > [Also posted in the Hoplon github issues are

Re: Getting started

2015-11-01 Thread Baishampayan Ghose
Saurabh, Thanks for your interest in Clojure. However, your question is quite open ended. Can you tell us what you have tried so far and if there is anything specific that you want us to help you with? Almost all the info that you'd need to get started can be found here: http://clojure.org/contri

Re: Getting started - overcoming my first obstacles

2014-03-09 Thread Florian Salihovic
That's actually quite easy. I saved my script as a github gist and copied it from there ... with all the highlighting etc. Cheers Florian Am Sonntag, 9. März 2014 10:36:44 UTC+1 schrieb Frank Behrens: > > Dear Florian (or anybody), > > I really like how your post is so beautifully syntax highl

Re: Getting started - overcoming my first obstacles

2014-03-09 Thread Frank Behrens
Dear Florian (or anybody), I really like how your post is so beautifully syntax highlighted. How did you do that ? nice day !, Frank (PS this Frank) -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googl

Re: Getting started - overcoming my first obstacles

2014-03-07 Thread Florian Salihovic
Hi Walter, ... i was actually thinking too complicated. I was actually working myself deeper and deeper by extracting methods, but i completely overlooked to simply destructure the data ... Thanx a lot :) Am Freitag, 7. März 2014 18:14:33 UTC+1 schrieb Walter van der Laan: > > Hi Florian, >

Re: Getting started - overcoming my first obstacles

2014-03-07 Thread Walter van der Laan
Hi Florian, To unpack your edn-acls I entered these expressions in a repl. Each expression goes one step deeper, so it is only the last expression that you need to unpack the acls. The other steps are included to illustrate the process. (for [acl edn-acls] {:acl acl}) (for [acl edn-acls

Re: Getting started with lein-cljsbuild

2012-05-29 Thread Phil Hagelberg
On Mon, May 28, 2012 at 7:10 PM, Evan Mezeske wrote: > I'm not really sure what environment variables have to do with the problem. Leiningen used to check the $CLASSPATH variable, but I don't think anyone had ever used that on purpose; it just caused problems in practice. Going forward (2.0.0-pre

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Evan Mezeske
> > Right, this is a big part of why I think that lein trampoline was at least > part of the culprit. But by ensuring that the project's path didn't > contain a space, and by eliminating all spaces from my environment > variables, lein trampoline repl is now working for me, also lein trampolin

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Mark Engelberg
On Mon, May 28, 2012 at 6:49 PM, Evan Mezeske wrote: > Also, observe that if the project's path contains a space, "lein > trampoline repl" fails as well. > > > Right, this is a big part of why I think that lein trampoline was at least part of the culprit. But by ensuring that the project's path

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Evan Mezeske
Also, observe that if the project's path contains a space, "lein trampoline repl" fails as well. -- 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 modera

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Mark Engelberg
On Mon, May 28, 2012 at 6:28 PM, Ben Mabey wrote: > I actually hit this same problem with lein-cljsbuild the other day but on > OSx. I had ~/Foo Bar Baz/my-project and it was complaining that the Bar > class could not be found when I tried to use the repl tasks. So, I don't > think it is strict

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Evan Mezeske
This looks like a problem with Leiningen's trampoline feature to me. I edited my ~/bin/lein script, to insert "echo $TRAMPOLINE" before "exec sh -c "exec $TRAMPOLINE", near the end of the file. I then copied the lein-cljsbuild advanced example project into a path that contained a space (".../a

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Ben Mabey
On 4/19/12 4:31 AM, Chris Perkins wrote: On Thursday, April 19, 2012 3:03:53 AM UTC-4, Evan Mezeske wrote: That's great news that you got it to work. I can't make any sense of the stack trace you're seeing with "lein deps", though, unfortunately. Other than installation, does t

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Mark Engelberg
On Thu, Apr 19, 2012 at 1:29 AM, Mark Engelberg wrote: > Unfortunately, "lein trampoline cljsbuild repl-rhino" (and all the > trampoline tasks) > generates the same error that I got when I tried to run lein deps. > I mentioned last month that I was able to get "lein cljsbuild once" to work, but w

Re: Getting started

2012-05-11 Thread Enterprise Saas
java -jar clojure-1.4.0.jar On May 10, 2012 9:36 AM, "Zeno" wrote: > Hi, > I have downloaded and unzipped Clojure 1.4.0 but when trying "java -cp > clojure-1.4.0.jar clojure.main" as stated on the getting started page > I get the following. > > D:\Profiles\rcarthur\My Documents\Clojure1_4\clojure

Re: Getting started

2012-05-10 Thread Sean Corfield
On Thu, May 10, 2012 at 4:56 PM, Rostislav Svoboda wrote: > No, please stop. Zeno, you MUST get the "java -cp clojure-1.4.0.jar > clojure.main" working! It is the very core the life and the universe. I'm sorry but that's a silly comment. Starting with Leiningen instead of downloading the Clojure

Re: Getting started

2012-05-10 Thread Rostislav Svoboda
On 10 May 2012 19:57, Chris McBride wrote: > Also you generally don't invoke the clojure jar directly. Instead have lein > do that for you. > http://www.unexpected-vortices.com/clojure/brief-beginners-guide/development-env.html#clojure-projects No, please stop. Zeno, you MUST get the "java -cp cl

Re: Getting started

2012-05-10 Thread Chris McBride
Also you generally don't invoke the clojure jar directly. Instead have lein do that for you. http://www.unexpected-vortices.com/clojure/brief-beginners-guide/development-env.html#clojure-projects On Thursday, May 10, 2012 4:53:51 AM UTC-4, Zeno wrote: > > Hi, > I have downloaded and unzipped Cl

Re: Getting started

2012-05-10 Thread Tom Maynard
On 05/10/2012 03:53 AM, Zeno wrote: trying "java -cp clojure-1.4.0.jar clojure.main" as stated You need to specify the full path to clojure.jar (probably ./clojure.jar, if you're in that directory). You could also put "." in your classpath, but that's not recommended (can cause flakey prob

Re: Getting started with lein-cljsbuild

2012-04-19 Thread Chris Perkins
On Thursday, April 19, 2012 3:03:53 AM UTC-4, Evan Mezeske wrote: > > That's great news that you got it to work. I can't make any sense of the > stack trace you're seeing with "lein deps", though, unfortunately. > > Other than installation, does the plugin seem to work (e.g. "lein > cljsbuild on

Re: Getting started with lein-cljsbuild

2012-04-19 Thread Mark Engelberg
Unfortunately, "lein trampoline cljsbuild repl-rhino" (and all the trampoline tasks) generates the same error that I got when I tried to run lein deps. On Thu, Apr 19, 2012 at 12:18 AM, Mark Engelberg wrote: > Yes, I've only tested "lein cljsbuild once", but it worked just fine once > I figured

Re: Getting started with lein-cljsbuild

2012-04-19 Thread Mark Engelberg
Yes, I've only tested "lein cljsbuild once", but it worked just fine once I figured out the alternative way to get the plugin installed. On Thu, Apr 19, 2012 at 12:03 AM, Evan Mezeske wrote: > That's great news that you got it to work. I can't make any sense of the > stack trace you're seeing w

Re: Getting started with lein-cljsbuild

2012-04-19 Thread Evan Mezeske
That's great news that you got it to work. I can't make any sense of the stack trace you're seeing with "lein deps", though, unfortunately. Other than installation, does the plugin seem to work (e.g. "lein cljsbuild once", etc)? I haven't tested it under Windows myself, and people have had tr

Re: Getting started with lein-cljsbuild

2012-04-18 Thread Mark Engelberg
I was able to get the plugin working by typing the following at the command-line (rather than using lein deps): C:\temp\cljstest>lein plugin install lein-cljsbuild 0.1.8 -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email

Re: Getting started with Counterclockwise

2011-01-30 Thread Ken Wesson
On Sun, Jan 30, 2011 at 2:58 PM, Mike Meyer wrote: > On Sun, 30 Jan 2011 13:51:40 -0500 > Ken Wesson wrote: >> But that's neglecting a crucial biasing factor: with project-hosting >> sites it's very easy to just slap together a few text blurbs for the >> front page and carry on your business usin

Re: Getting started with Counterclockwise

2011-01-30 Thread Mike Meyer
On Sun, 30 Jan 2011 13:51:40 -0500 Ken Wesson wrote: > On Sun, Jan 30, 2011 at 1:45 PM, Mike Meyer > wrote: > >> Not until after they go there once or twice, find confusing project > >> pages with no clear starting point for prospective end users, and form > >> an opinion of the site. :) > > > >

Re: Getting started with Counterclockwise

2011-01-30 Thread Ken Wesson
On Sun, Jan 30, 2011 at 1:45 PM, Mike Meyer wrote: >> Not until after they go there once or twice, find confusing project >> pages with no clear starting point for prospective end users, and form >> an opinion of the site. :) > > Yup. Those pages are about as well organized as every other page one

Re: Getting started with Counterclockwise

2011-01-30 Thread Mike Meyer
On Sun, 30 Jan 2011 13:38:24 -0500 Ken Wesson wrote: > On Sun, Jan 30, 2011 at 1:24 PM, Mike Meyer > wrote: > > "Ken Wesson" wrote: > > > >>On Sun, Jan 30, 2011 at 12:31 PM, Mike Meyer > >> wrote: > >>> "Ken Wesson" wrote: > That is why I say it behooves projects that wish to grow a large

Re: Getting started with Counterclockwise

2011-01-30 Thread Ken Wesson
On Sun, Jan 30, 2011 at 1:24 PM, Mike Meyer wrote: > "Ken Wesson" wrote: > >>On Sun, Jan 30, 2011 at 12:31 PM, Mike Meyer >> wrote: >>> "Ken Wesson" wrote: That is why I say it behooves projects that wish to grow a large user-base to have a highly-ranked google result be clearly the plac

Re: Getting started with Counterclockwise

2011-01-30 Thread Mike Meyer
"Ken Wesson" wrote: >On Sun, Jan 30, 2011 at 12:31 PM, Mike Meyer > wrote: >> "Ken Wesson" wrote: >>>That is why I say it behooves projects that wish to grow a large >>>user-base to have a highly-ranked google result be clearly the place >>>for prospective end-users to go for further information

Re: Getting started with Counterclockwise

2011-01-30 Thread Ken Wesson
On Sun, Jan 30, 2011 at 12:31 PM, Mike Meyer wrote: > "Ken Wesson" wrote: >>That is why I say it behooves projects that wish to grow a large >>user-base to have a highly-ranked google result be clearly the place >>for prospective end-users to go for further information, >>documentation, friendly

Re: Getting started with Counterclockwise

2011-01-30 Thread Mike Meyer
"Ken Wesson" wrote: >On Sun, Jan 30, 2011 at 12:07 PM, Mike Meyer > wrote: >> Sure, Sturgeon's law is closer to 99% than 90% for the web.  But if >you don't even look at the right page to start with > >That is why I say it behooves projects that wish to grow a large >user-base to have a highly-ra

Re: Getting started with Counterclockwise

2011-01-30 Thread Ken Wesson
On Sun, Jan 30, 2011 at 12:07 PM, Mike Meyer wrote: > Sure, Sturgeon's law is closer to 99% than 90% for the web.  But if you don't > even look at the right page to start with That is why I say it behooves projects that wish to grow a large user-base to have a highly-ranked google result be clea

Re: Getting started with Counterclockwise

2011-01-30 Thread Mike Meyer
"Ken Wesson" wrote: >On Sat, Jan 29, 2011 at 1:46 PM, Mike Meyer > wrote: >> Ditto.  Most often, the "code" site is the sole project site, and >everything is there. Some larger projects may have a separate "home" >page, but it's always prominently mentioned on the "code" site. In >either case, th

Re: Getting started with Counterclockwise

2011-01-29 Thread Ken Wesson
On Sat, Jan 29, 2011 at 1:46 PM, Mike Meyer wrote: > Ditto.  Most often, the "code" site is the sole project site, and everything > is there. Some larger projects may have a separate "home" page, but it's > always prominently mentioned on the "code" site. In either case, the "code" > site is wo

Re: Getting started with Counterclockwise

2011-01-29 Thread Mike Meyer
"Laurent PETIT" wrote: >2011/1/20 Ken Wesson > >> On Wed, Jan 19, 2011 at 9:39 AM, Rayne >wrote: >> > Aren't you a developer? >> >> I'm not a CCW developer. >> >> > If a code.google link is the top of google results, that's what I'm >> > going to click and check out first. code.google is a proj

Re: Getting started with Counterclockwise

2011-01-26 Thread Laurent PETIT
2011/1/25 NovusTiro : > Hello, > > Seems like this might be a good time to say thanks to Laurent for all > the work he's done on CCW.  FWIW, I've been using it for a while, and > never had any issues installing it (at least not from a clean > Eclipse), nor any of the other described issues. > > So

Re: Getting started with Counterclockwise

2011-01-25 Thread NovusTiro
Hello, Seems like this might be a good time to say thanks to Laurent for all the work he's done on CCW. FWIW, I've been using it for a while, and never had any issues installing it (at least not from a clean Eclipse), nor any of the other described issues. So thanks Laurent, and keep up the good

Re: Getting started with Counterclockwise

2011-01-24 Thread Ken Wesson
On Mon, Jan 24, 2011 at 11:14 AM, Sean Corfield wrote: > On Sun, Jan 23, 2011 at 7:57 PM, Ken Wesson wrote: >>> Which tempts me to ask why you decided to bring it up again? :) >> Because the topic arose again. > > Because _you_ brought the topic up again. > > Did you expect a different outcome th

Re: Getting started with Counterclockwise

2011-01-24 Thread Sean Corfield
On Sun, Jan 23, 2011 at 7:57 PM, Ken Wesson wrote: >> Which tempts me to ask why you decided to bring it up again? :) > Because the topic arose again. Because _you_ brought the topic up again. Did you expect a different outcome this time? You know what they say about madness (doing the same thi

Re: Getting started with Counterclockwise

2011-01-23 Thread Ken Wesson
On Sun, Jan 23, 2011 at 7:21 PM, Sean Corfield wrote: > On Sun, Jan 23, 2011 at 12:46 AM, Ken Wesson wrote: >>> (and this discussion has occurred before about the discoverability of >>> IDE documentation with much the same content and result) >> It has indeed. > > Which tempts me to ask why you d

Re: Getting started with Counterclockwise

2011-01-23 Thread Sean Corfield
On Sun, Jan 23, 2011 at 12:46 AM, Ken Wesson wrote: >>> http://code.google.com/p/counterclockwise/ >> And that URL is the #1 Google result for: clojure eclipse > And looks to CCW newbies like it's likely to just lead to a code > repository, tracker, and CCW-developer-centric mailing lists. I'll c

Re: Getting started with Counterclockwise

2011-01-23 Thread Ken Wesson
On Sun, Jan 23, 2011 at 2:07 AM, Sean Corfield wrote: > On Tue, Jan 18, 2011 at 12:45 PM, Chas Emerick wrote: >> The links to the users' and developers' google groups for ccw are >> prominently linked on the right side of the ccw site: >> >> http://code.google.com/p/counterclockwise/ > > And tha

Re: Getting started with Counterclockwise

2011-01-22 Thread Sean Corfield
On Tue, Jan 18, 2011 at 12:45 PM, Chas Emerick wrote: > The links to the users' and developers' google groups for ccw are prominently > linked on the right side of the ccw site: > > http://code.google.com/p/counterclockwise/ And that URL is the #1 Google result for: clojure eclipse (and this di

Re: Getting started with Counterclockwise

2011-01-20 Thread Rayne
Hi Mr. Bell, allow me to introduce you to Mr. Sarcasm. :p On Jan 20, 9:32 am, Peter Bell wrote: > On Jan 20, 2011, at 9:34 AM, Laurent PETIT wrote: > > > 2011/1/20 Aaron Bedra > > > Clojure/core > >http://clojure.comcl > > >  the url of the website below your "title" does not work. > > http://cl

Re: Getting started with Counterclockwise

2011-01-20 Thread Ken Wesson
On Thu, Jan 20, 2011 at 3:14 PM, ka wrote: > I've been using ccw for a while now and it works perfectly as > advertised. Plus the new 0.2.0 version looks to be really promising. I > invite all ccw users to give their inputs. > > What's bugging is not that you faced a problem or that ccw didn't wor

Re: Getting started with Counterclockwise

2011-01-20 Thread ka
I've been using ccw for a while now and it works perfectly as advertised. Plus the new 0.2.0 version looks to be really promising. I invite all ccw users to give their inputs. What's bugging is not that you faced a problem or that ccw didn't work as you expected, what's disturbing is how you react

Re: Getting started with Counterclockwise

2011-01-20 Thread Aaron Bedra
On 01/20/2011 10:15 AM, Ken Wesson wrote: On Thu, Jan 20, 2011 at 9:31 AM, Luc Prefontaine wrote: Chasing a fly with a news paper has more value than spending time with you for any purpose. ... Oups, need to flush that junk folder again... crap appeared in it again. And some people are cla

Re: Getting started with Counterclockwise

2011-01-20 Thread Peter Bell
On Jan 20, 2011, at 9:34 AM, Laurent PETIT wrote: > 2011/1/20 Aaron Bedra > > Clojure/core > http://clojure.comcl > > the url of the website below your "title" does not work. http://clojure.com I don't think it's that hard to figure out. Personally, I'd rather he continue to add cool featur

Re: Getting started with Counterclockwise

2011-01-20 Thread Ken Wesson
On Thu, Jan 20, 2011 at 9:31 AM, Luc Prefontaine wrote: > Chasing a fly with a news paper has more value than spending time > with you for any purpose. ... > Oups, need to flush that junk folder again... crap appeared in it > again. And some people are claiming that *I* am being trollish, churli

Re: Getting started with Counterclockwise

2011-01-20 Thread Aaron Bedra
Yep, just fixed that :) Cheers, Aaron Bedra -- Clojure/core http://clojure.com On 01/20/2011 09:36 AM, Laurent PETIT wrote: Seriously, Aaron, there's a typo in your signature. Take care ;) -- Laurent -- You received this message because you are subscribed to the Google Groups "Clojure" group

Re: Getting started with Counterclockwise

2011-01-20 Thread Laurent PETIT
Seriously, Aaron, there's a typo in your signature. Take care ;) -- Laurent -- 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 pat

Re: Getting started with Counterclockwise

2011-01-20 Thread Laurent PETIT
2011/1/20 Aaron Bedra Dropped a lot of raaather ininteresting stuff > > Cheers, > > Aaron Bedra > -- > Clojure/core > http://clojure.comcl > > Aaron, >From your signature, where I see "Clojure/core", I thought that you were maybe a core member of the clojure community. But how laaame are y

Re: Getting started with Counterclockwise

2011-01-20 Thread Luc Prefontaine
Issuing threats against you ? Chasing a fly with a news paper has more value than spending time with you for any purpose. You clearly do not understand what a lot of people have been telling you in different ways. Ignoring you is a much more rational use of my time. Others should come to the sam

Re: Getting started with Counterclockwise

2011-01-20 Thread Ken Wesson
On Thu, Jan 20, 2011 at 8:46 AM, Laurent PETIT wrote: > 2011/1/20 Ken Wesson >> >> On Wed, Jan 19, 2011 at 9:39 AM, Rayne wrote: >> > Aren't you a developer? >> >> I'm not a CCW developer. >> >> > If a code.google link is the top of google results, that's what I'm >> > going to click and check o

Re: Getting started with Counterclockwise

2011-01-20 Thread Aaron Bedra
You have been asked kindly to change your tone. Are you implying a threat? The next part of your post seemed to descend into name-calling, more threats, and other unconstructive material, so I did not bother to read further. Have a good day. Nobody is implying any threats. They are simply

Re: Getting started with Counterclockwise

2011-01-20 Thread Laurent PETIT
2011/1/20 Ken Wesson > On Wed, Jan 19, 2011 at 9:39 AM, Rayne wrote: > > Aren't you a developer? > > I'm not a CCW developer. > > > If a code.google link is the top of google results, that's what I'm > > going to click and check out first. code.google is a project hosting > > site, not just a pl

Re: Getting started with Counterclockwise

2011-01-20 Thread Ken Wesson
On Wed, Jan 19, 2011 at 9:56 AM, Luc Prefontaine wrote: > Not reading wiki pages available, not investigating available links > about ccw are more a sign of mental laziness than anything else or > some form of disdain. Or, they can be a sign of not having been pointed to the links by the install

Re: Getting started with Counterclockwise

2011-01-20 Thread Ken Wesson
On Wed, Jan 19, 2011 at 9:39 AM, Rayne wrote: > Aren't you a developer? I'm not a CCW developer. > If a code.google link is the top of google results, that's what I'm > going to click and check out first. code.google is a project hosting > site, not just a place to throw up code and developer di

Re: Getting started with Counterclockwise

2011-01-19 Thread Laurent PETIT
2011/1/19 Luc Prefontaine > Ken, > > It's always easy to complain and you seem excellent at it. > However, to investigate any problem, hard facts are needed to > support the fixing process. > > There are little facts reported in your emails about the problems you > experienced according to you re

Re: Getting started with Counterclockwise

2011-01-19 Thread Baishampayan Ghose
> I'm big, mean and I hate prima donnas. You would not even try to use that > tone with a guy like me. I can vouch for that! Regards, BG -- Baishampayan Ghose b.ghose at gmail.com -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this gro

Re: Getting started with Counterclockwise

2011-01-19 Thread Luc Prefontaine
Ken, It's always easy to complain and you seem excellent at it. However, to investigate any problem, hard facts are needed to support the fixing process. There are little facts reported in your emails about the problems you experienced according to you regarding ccw. Not reading wiki pages avail

Re: Getting started with Counterclockwise

2011-01-19 Thread Rayne
Aren't you a developer? I am. I think everybody else here is as well. If a code.google link is the top of google results, that's what I'm going to click and check out first. code.google is a project hosting site, not just a place to throw up code and developer discussion. It offers wiki services, d

Re: Getting started with Counterclockwise

2011-01-19 Thread Ken Wesson
On Wed, Jan 19, 2011 at 5:13 AM, Laurent PETIT wrote: > > > 2011/1/18 Ken Wesson >> >> On Tue, Jan 18, 2011 at 1:14 PM, Chas Emerick >> wrote: >> > Any tone you might have picked up from Laurent might be a reaction to >> > your ranting about how ccw is apparently rubbish rather than asking for >

Re: Getting started with Counterclockwise

2011-01-19 Thread Laurent PETIT
2011/1/18 Ken Wesson > On Tue, Jan 18, 2011 at 1:14 PM, Chas Emerick > wrote: > > Any tone you might have picked up from Laurent might be a reaction to > your ranting about how ccw is apparently rubbish rather than asking for > help. > > Well, excse me for assuming, Another day, less tired

Re: Getting started with Counterclockwise

2011-01-19 Thread Laurent PETIT
2011/1/19 Meikel Brandmeyer > Hi, > > On 19 Jan., 00:28, Luc Prefontaine > wrote: > > > Can you provide the plugin list from Eclipse ? (About -> Installation > > details) > > A while back I ran into a similar problem: a fresh install of eclipse > + only ccw didn't work on my machine. Mysteriousl

Re: Getting started with Counterclockwise

2011-01-18 Thread Meikel Brandmeyer
Hi, On 19 Jan., 00:28, Luc Prefontaine wrote: > Can you provide the plugin list from Eclipse ? (About -> Installation > details) A while back I ran into a similar problem: a fresh install of eclipse + only ccw didn't work on my machine. Mysteriously using the same files for eclipse and ccw on a

Re: Getting started with Counterclockwise

2011-01-18 Thread Ken Wesson
On Tue, Jan 18, 2011 at 10:36 PM, blcooley wrote: > > On Jan 18, 9:14 pm, Ken Wesson wrote: >> On Tue, Jan 18, 2011 at 3:45 PM, Chas Emerick wrote: >> >> > The links to the users' and developers' google groups for ccw are >> > prominently linked on the right side of the ccw site: >> >> >http://

Re: Getting started with Counterclockwise

2011-01-18 Thread blcooley
On Jan 18, 9:14 pm, Ken Wesson wrote: > On Tue, Jan 18, 2011 at 3:45 PM, Chas Emerick wrote: > > > On Jan 18, 2011, at 2:01 PM, Ken Wesson wrote: > > >>> Tangentially, IMO it'd be nice if tooling troubleshooting discussions > >>> didn't hit this list at all, since there are presumably mailing l

Re: Getting started with Counterclockwise

2011-01-18 Thread Ken Wesson
On Tue, Jan 18, 2011 at 6:28 PM, Luc Prefontaine wrote: > We have been using ccw for more than a year here. Never had significant > problems with it nor with updates to it. > > We have been using Eclipse since 2002. > > Can you provide the plugin list from Eclipse ? (About -> Installation > detail

Re: Getting started with Counterclockwise

2011-01-18 Thread Ken Wesson
On Tue, Jan 18, 2011 at 3:45 PM, Chas Emerick wrote: > > On Jan 18, 2011, at 2:01 PM, Ken Wesson wrote: > >>> Tangentially, IMO it'd be nice if tooling troubleshooting discussions >>> didn't hit this list at all, since there are presumably mailing lists and >>> other forums specific to each tool

Re: Getting started with Counterclockwise

2011-01-18 Thread Luc Prefontaine
We have been using ccw for more than a year here. Never had significant problems with it nor with updates to it. We have been using Eclipse since 2002. Can you provide the plugin list from Eclipse ? (About -> Installation details) Luc P. On Tue, 18 Jan 2011 10:21:50 -0500 Ken Wesson wrote: >

Re: Getting started with Counterclockwise

2011-01-18 Thread Chas Emerick
On Jan 18, 2011, at 2:01 PM, Ken Wesson wrote: >> Tangentially, IMO it'd be nice if tooling troubleshooting discussions didn't >> hit this list at all, since there are presumably mailing lists and other >> forums specific to each toolset. > > Your email is the first place that I encountered th

Re: Getting started with Counterclockwise

2011-01-18 Thread Ken Wesson
On Tue, Jan 18, 2011 at 1:14 PM, Chas Emerick wrote: > Any tone you might have picked up from Laurent might be a reaction to your > ranting about how ccw is apparently rubbish rather than asking for help. Well, excse me for assuming, quite reasonably, that if, after an install and restart du

Re: Getting started with Counterclockwise

2011-01-18 Thread Chas Emerick
On Jan 18, 2011, at 3:22 AM, Ken Wesson wrote: > I could use the new-generic-file option to create files with the .clj > extension and maybe I'd even get Clojure syntax highlighting and > indenting in the editor if I did so; I didn't bother to check. Lack of > any apparent way to launch a project

Re: Getting started with Counterclockwise

2011-01-18 Thread Ken Wesson
On Tue, Jan 18, 2011 at 10:27 AM, Laurent PETIT wrote: >> That's a bit snarky. But no-one should have to read the documentation >> just to get it installed and to locate and use the most obvious >> features that have direct parallels in Enclojure. In particular, >> no-one has to with Enclojure. If

Re: Getting started with Counterclockwise

2011-01-18 Thread Base
For what it's worth, I installed CCW on Eclipse Helios on Win7 yesterday and it works perfectly. Thanks Laurent! On Jan 18, 9:27 am, Laurent PETIT wrote: > 2011/1/18 Ken Wesson > > > > > > > > > > > On Tue, Jan 18, 2011 at 4:46 AM, Laurent PETIT > > wrote: > > > Hi, > > >> No menu options exis

Re: Getting started with Counterclockwise

2011-01-18 Thread Laurent PETIT
2011/1/18 Ken Wesson > On Tue, Jan 18, 2011 at 4:46 AM, Laurent PETIT > wrote: > > Hi, > >> No menu options exist to create a > >> new Clojure namespace .clj file, > > > > It does. You should see an option "Clojure File" in the "File > Create > new" > > menu. > > I don't. > > > If not, then prob

Re: Getting started with Counterclockwise

2011-01-18 Thread Ken Wesson
On Tue, Jan 18, 2011 at 4:46 AM, Laurent PETIT wrote: > Hi, >> No menu options exist to create a >> new Clojure namespace .clj file, > > It does. You should see an option "Clojure File" in the "File > Create new" > menu. I don't. > If not, then probably there's a problem with the java perspectiv

Re: Getting started with Counterclockwise

2011-01-18 Thread Laurent PETIT
2011/1/18 Laurent PETIT > Hi, > > 2011/1/18 Ken Wesson > > I decided to test-drive CCW to see if it had leapfrogged Enclojure. >> >> Apparently not: whereas it was quick and easy to get NB 6.9.1 and >> Enclojure installed, create a new Clojure project, and get a REPL, >> trying the same with Ecl

Re: Getting started with Counterclockwise

2011-01-18 Thread Laurent PETIT
Hi, 2011/1/18 Ken Wesson > I decided to test-drive CCW to see if it had leapfrogged Enclojure. > > Apparently not: whereas it was quick and easy to get NB 6.9.1 and > Enclojure installed, create a new Clojure project, and get a REPL, > trying the same with Eclipse and CCW rapidly hit a snag. > >

Re: getting started with clojure

2010-10-20 Thread Meikel Brandmeyer
Hi, On 21 Okt., 00:04, Eric Lavigne wrote: > I hope you are enjoying Clojure. Don't let all of this talk about > compiling distract you from the fun part: writing code. Especially since compilation is not necessarily necessary and in most of the cases even counter-productive. Unless you use gen

Re: getting started with clojure

2010-10-20 Thread Mike Meyer
On Wed, 20 Oct 2010 18:04:17 -0400 Eric Lavigne wrote: > The short answer is that it's okay to use Clojure directly. You don't > need Leiningen. > > If you are familiar with C programming, the difference between the > Clojure compiler and Leiningen is like the difference between GCC and > Make.

Re: getting started with clojure

2010-10-20 Thread Eric Lavigne
The short answer is that it's okay to use Clojure directly. You don't need Leiningen. If you are familiar with C programming, the difference between the Clojure compiler and Leiningen is like the difference between GCC and Make. Using the compiler directly is fine when you have only one file of so

Re: getting started with clojure

2010-10-20 Thread ishkabible
thanks guys, im at school right now so i cant really try anything out, i think im just going to use a text editor with coljure via command line.. yes i was using repl, later i found that i could edit full files by simply saving a new file but could not compile them, i think i will try using command

Re: getting started with clojure

2010-10-19 Thread Richard Lyman
On Tue, Oct 19, 2010 at 5:55 PM, ishkabible wrote: > lastly i have been messing around with new languages just to try them > out. Fantastic fun! I wish you the best of luck. > in trying out coljure (only functional language i have tried yet) > but i can compile anything longer than one line. Ar

Re: getting started with clojure

2010-10-19 Thread Santosh Rajan
I have written a tutorial just for beginners, that will quickly get you started on clojure. This tutorial was written based on my own experience learning clojure. When learning a new language I am impatient, and like to dive into thick of things immediately. Hopefully this will do the same for oth

Re: getting started with clojure

2010-10-19 Thread Eric Lavigne
I use Leiningen to compile and run my Clojure projects. I create a new project with Leiningen, use Clojure Box to edit code and try out one line at a time, then switch back to Leiningen for downloading libraries or for compiling my own project into a library or program. http://github.com/technoman

Re: Getting started with labrepl...

2010-04-10 Thread Douglas Philips
On 2010 Apr 10, at 3:11 AM, Mike Mazur wrote: On Sat, Apr 10, 2010 at 12:19, Douglas Philips wrote: Run lein deps: $ lein deps No project.clj found in this directory. You need to run `lein deps` from within the labrepl directory. If you clone the labrepl repo, project.clj will be there. H

Re: Getting started with labrepl...

2010-04-10 Thread Mike Mazur
Hi, On Sat, Apr 10, 2010 at 12:19, Douglas Philips wrote: >  Run lein deps: >  $ lein deps >  No project.clj found in this directory. You need to run `lein deps` from within the labrepl directory. If you clone the labrepl repo, project.clj will be there. HTH, Mike -- You received this message

Re: Getting started embedding Clojure into an existing codebase

2010-04-02 Thread Josh Daghlian
On Apr 2, 9:24 am, Chas Emerick wrote: > But: invoking clojure.main.main programmatically?  Ouch. :-) > > - Chas Yeah, I know it's shady, and I know that with more time and effort I can avoid doing it, but should I bother? It's given me a command shell with access to my JPA layer that's been wor

Re: Getting started embedding Clojure into an existing codebase

2010-04-02 Thread Chas Emerick
Assuming your environment is set up properly w.r.t. classpaths, spring should work just fine in a REPL. We use spring security for our compojure webapp, and the spring context starts up as expected in our enclojure REPLs. FWIW, we do use maven and the clojure-maven-plugin, which informs N

Re: Getting started with open source Clojure projects

2010-03-31 Thread David Nolen
On Tue, Mar 30, 2010 at 10:26 PM, Daniel wrote: > Thanks for all the quick replies. I should've mentioned that I'm > already using leiningen, so the problem isn't so much getting the > dependencies and building the application as it is figuring out a way > to get inside the code and play with it

Re: Getting started with open source Clojure projects

2010-03-31 Thread Daniel
Thanks for all the quick replies. I should've mentioned that I'm already using leiningen, so the problem isn't so much getting the dependencies and building the application as it is figuring out a way to get inside the code and play with it a bit. I'd like to be able to load the source files, execu

Re: Getting started with open source Clojure projects

2010-03-30 Thread Matt
If you're not stuck on using Compojure, you can try Conjure which will includes all of the dependencies in the jar. To start a hello world app: 1. Download conjure.jar from: http://github.com/macourtney/Conjure/downloads 2. java -jar conjure.jar hello_world 3. cd hello_world 4. ./run.sh script/se

Re: Getting started with open source Clojure projects

2010-03-30 Thread Meikel Brandmeyer
Hi, On Mar 30, 3:45 pm, Stuart Sierra wrote: > Take a look at the dependency management tools.  Most open-source > Clojure projects use either Maven and Leiningen.  Both use the same > dependency model and provide similar capabilities for starting a REPL > with the classpath configured automatic

Re: Getting started with open source Clojure projects

2010-03-30 Thread Stuart Sierra
Take a look at the dependency management tools. Most open-source Clojure projects use either Maven and Leiningen. Both use the same dependency model and provide similar capabilities for starting a REPL with the classpath configured automatically. -SS On Mar 29, 11:39 pm, Daniel wrote: > If t

RE: Getting started with open source Clojure projects

2010-03-30 Thread Kevin
> So here are my questions: > > Am I going about this the wrong way? Is there an easier way > to explore existing open-source projects? I Is there a less > cumbersome way to get a load of files on the classpath than > manually editing the .clojure file? How do I tell the REPL > where to find r

Re: Getting started with open source Clojure projects

2010-03-30 Thread Alex Osborne
Daniel writes: > Am I going about this the wrong way? Is there an easier way to explore > existing open-source projects? I Try this for any leiningen project (check for the existence of a project.clj file). I'm assuming you're using a unixy operating system. First and once-off, install leining

Re: Getting started with open source Clojure projects

2010-03-30 Thread Mark J. Reed
On Mon, Mar 29, 2010 at 11:39 PM, Daniel wrote: > Is there a less cumbersome way to get a load of files on the classpath > than manually editing the .clojure file? Well, I have a ~/lib/clojure directory and a clj script that automatically puts that directory and all .jar's in it on the classpath.

  1   2   >