Re: suggestion for clojure development

2011-09-28 Thread cran1988
Improve as much as possible , performances and memory management !! -- 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

Re: How to attach debugger on clojure's repl ?

2011-09-22 Thread cran1988
swank / > > slime. > > >    -http://www.youtube.com/watch?v=galfpq969Hg > > > Tim Washington > > twash...@gmail.com > > 416.843.9060 > > > On Tue, Sep 20, 2011 at 10:37 AM, cran1988 wrote: > > >> I am trying to figure out how abcl does it > > &g

Re: How to attach debugger on clojure's repl ?

2011-09-22 Thread cran1988
ime. > > >    -http://www.youtube.com/watch?v=galfpq969Hg > > > Tim Washington > > twash...@gmail.com > > 416.843.9060 > > > On Tue, Sep 20, 2011 at 10:37 AM, cran1988 wrote: > > >> I am trying to figure out how abcl does it > > >> On Se

Re: How to attach debugger on clojure's repl ?

2011-09-20 Thread cran1988
I am trying to figure out how abcl does it On Sep 20, 12:41 pm, Herwig Hochleitner wrote: > You can debug clojure code with a normal Java Debugger. > When using Emacs, you can tryhttp://georgejahad.com/clojure/swank-cdt.html > > -- > ___

How to attach debugger on clojure's repl ?

2011-09-19 Thread cran1988
I am looking forward for a debugger like in CLISP , SBCL etc.. Is there any solution out there ? Are you going to develop such a tool and you need help ? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@goog

JavaOne 2011 videos

2011-09-19 Thread cran1988
http://vimeo.com/tag:javazone2011/page:0/sort:newest I am not sure if all the clojure videos are there. But for sure have plenty videos about scala. Dont worry ... clojurians will rise up and control the market , next year! -- You received this message because you are subscribed to the Google Gr

Re: Clojure 1.3 Beta 3

2011-09-05 Thread cran1988
I love you all !!! -- 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,

Re: Problem with Greeks!

2011-08-17 Thread cran1988
stallation) , but using your advices , i solved it ! You were very helpful !!! THANK YOU MAN! On Aug 17, 12:04 pm, Rasmus Svensson wrote: > 2011/8/17 cran1988 : > > > My jvm is already UTF-8 > > however it works with clojure 1.3.0 beta1 > > but i have problems i

Re: Problem with Greeks!

2011-08-16 Thread cran1988
THE PROBLEM SOLVED !!! https://groups.google.com/group/clj-noir/browse_thread/thread/b02a740e6db62b58 Thanks for your support ! On Aug 17, 6:58 am, cran1988 wrote: > I am going to try java 7 with clojure > > On Aug 17, 6:36 am, Kevin Livingston > > > > > > > >

Re: Problem with Greeks!

2011-08-16 Thread cran1988
, but it's evidence that you aren't > hallucinating anyway, > > Kevin > > On Aug 16, 7:09 pm, cran1988 wrote: > > > > > > > > > My jvm is already UTF-8 > > however it works with clojure 1.3.0 beta1 > > but i have problems i get an

Re: Problem with Greeks!

2011-08-16 Thread cran1988
PM, cran1988 wrote: > > I tried (str "Γεια!") > > and i got  " !" > > what can I do to fix it ? > > Set something, somewhere, to UTF-8 that's probably set to ISO-8859-1 > or US-ASCII right now. > > Also, her name would be spelt Λεια, and her

Problem with Greeks!

2011-08-16 Thread cran1988
I tried (str "Γεια!") and i got "!" what can I do to fix it ? -- 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 yo

Re: Using Clojure To Debug Java Apps

2011-07-13 Thread cran1988
This is great !!! But you should posting it in a blog and compare it with other solutions. On Jul 12, 2:31 am, Asim Jalis wrote: > I have been using the Clojure REPL to debug a large Java server app. > It's great for exploratory testing and for validating assumptions > about how the system works.

Native compiler on Clojure

2011-07-10 Thread cran1988
Did anyone started creating native compiler for Clojure language ? -- 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 y

Re: Mutable Clojure Data Structures

2011-07-08 Thread cran1988
oblems - that's kind of the point with > automatically managed memory and garbage collection systems... > > Sean > > > > > > > > On Fri, Jul 8, 2011 at 12:47 PM, cran1988 wrote: > > I love Clojure ,but Clojure sucks a lot of memory  and that frustr

Re: Mutable Clojure Data Structures

2011-07-08 Thread cran1988
Sorry ,I just guessed that the fault is in immutability I read about for clojure performance tips http://gnuvince.wordpress.com/2009/05/11/clojure-performance-tips/ but i feel it is not enough. On Jul 8, 11:02 pm, Timothy Baldridge wrote: > > I love Clojure ,but Clojure sucks a lot of memory

Mutable Clojure Data Structures

2011-07-08 Thread cran1988
Hi I love Clojure ,but Clojure sucks a lot of memory and that frustrates me ! I am looking forward to find a way to put mutability in my code the same way i put immutable data structures. For example imagine ~[ 1 2 3 4 ] to be mutable vector and every semicolon that have this ~ in front to be mu