Problem with svn checkout

2009-02-24 Thread atreyu
Hi, when i try to checkout clojure or clojure-contrib: svn checkout http://clojure-contrib.googlecode.com/svn/trunk/ clojure- contrib-read-only (or svn checkout http://clojure-contrib.googlecode.com/svn/trunk/) i get this error: svn: server sent unexpected return value (400 Bad Request) in resp

Re: Problem with svn checkout

2009-02-24 Thread atreyu
Thanks for your replies I am afraid I must choose to download the source code from github --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.co

Re: Producing HTML

2009-03-17 Thread atreyu
Maybe Clojure-Haml helps you http://github.com/antoniogarrote/clj-haml/tree/master On 17 mar, 14:01, Jeffrey Straszheim wrote: > Is there a good standalone library to create HTML from Clojure, preferably > something like the CL-WHO?  This will be for a standalone application, not > an applicatio

A newbie implementation of partition-by with lazy-seq

2009-03-18 Thread atreyu
Hi, to get compiled clj-contrib with the lastest version of clojure i had to rewrite partition-by and replace lazy-cons with lazy-seq. I think its wrong but it works! umbly i wait yours corrections (defn partition-by "Applies f to each value in coll, splitting it each time f returns a new v

Re: A newbie implementation of partition-by with lazy-seq

2009-03-18 Thread atreyu
oppps sorry i suppose something is wrong with my svn client and the update didnt work,,thanks On 18 mar, 17:56, "Stephen C. Gilardi" wrote: > On Mar 18, 2009, at 12:35 PM, atreyu wrote: > > > Hi, to get compiled clj-contrib with the lastest version of clojure i > >

Re: Got a Clojure user group?

2009-04-12 Thread atreyu
A group for share bookmarks (and comments) about clojure and functional programming: http://groups.diigo.com/groups/clojure_dev thanks for clojure! it rocks! On Apr 9, 9:00 pm, Rich Hickey wrote: > Got a Clojure user group, meetup etc? > > Reply to this message and let me know, I'll add them to

Re: Unloading a namespace?

2009-04-27 Thread atreyu
http://clojure.org/api#remove-ns ?? i never used it but it seems to do it ;-) On 27 abr, 06:08, Mark Derricutt wrote: > Is it possible to unload/remove a namespace at runtime at all? > > Mark > > ...and then Buffy staked Edward.  The End. --~--~-~--~~~---~--~~ You

Re: Looping idiom

2009-09-10 Thread atreyu
uau cutting the Gordian knot On 8 sep, 05:39, Timothy Pratley wrote: > Yet another way :) > > user=> (map + (rest a) a) > (3 5 7 9 11) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this

Re: swank-clojure and GNU Emacs 23 - package.el install issues

2010-05-18 Thread atreyu
Hi folks I had the same issue and i got round the problem desinstalling clojure- mode and slime-repl from elpa before installing swank-clojure (which installs the previous two again) My env is a liitle bit strange. I have Vista with Clojure Box (with its own installation of slime-swank-clojure) an

Re: Saving runtime clojure image

2010-07-17 Thread atreyu
and serialized continuations ? could they be used to save a "image" of a moment of a execution to return to it lately? -- 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 n

Re: Clojure resources in Spanish

2009-10-22 Thread atreyu
I am afraid my blog it isnt a great example...it is is more a project than a reality and i am a beginner as clojure programmer and as blogger. Although Antonio Garrote has excellent posts in spanish (the best i found) and english about clojure: http://antoniogarrote.lacoctelera.net/tags/clojure

Re: appengine-magic 0.4.0: Clojure on Google App Engine

2011-03-28 Thread atreyu
Amazing work. In my previous tests i did all the dirty work by hand to learn the guts of clojure way to use gae but i want to start a personal project a little bit more serious and i am going to use your lib. I hope i'll can help with some feedback. Congrats and thanks! -- You received this mess

Re: New Release of the Clojure Debugging Toolkit

2010-10-11 Thread atreyu
s the class in my jdk) with various formats, after testing the urls in browser with success but i get the ClassNotFound all the time Current directory is c:/Users/atreyu/AppData/Roaming/.emacs.d/ Clojure 1.2.0 user=> java.lang.ClassNotFoundException: com.sun.jdi.Bootstrap (cdt.clj:

Re: New Release of the Clojure Debugging Toolkit

2010-10-11 Thread atreyu
On Oct 12, 12:48 am, atreyu wrote: > Hi folks and congrats to George Jahad for this great work. > Hoewer the cdt dont work on my windows vista. After some changes on my > own i get the same error of Greg Willams: > > java.lang.ClassNotFoundException: com.sun.jdi.Bootstrap (cdt.c

Re: New Release of the Clojure Debugging Toolkit

2010-10-11 Thread atreyu
ok i have made a (ugly) trick to make it work, copying tools.jar in cdt/lib and changing cdt.el: (defun cdt-query-cmdline () (let ((path (strip-trail cdt-dir))) (format "java -classpath%s/lib/clojure-1.2.0.jar;%s/lib/clojure- contrib-1.2.0.jar;%s/lib/debug-repl-0.3.0-20091229.021828-3.jar;%s

Re: New Release of the Clojure Debugging Toolkit

2010-10-11 Thread atreyu
ok i have made a (ugly) trick to make it work, copying tools.jar in cdt/lib and changing cdt.el: (defun cdt-query-cmdline () (let ((path (strip-trail cdt-dir))) (format "java -classpath%s/lib/clojure-1.2.0.jar;%s/lib/clojure- contrib-1.2.0.jar;%s/lib/debug-repl-0.3.0-20091229.021828-3.jar;%s

Re: New Release of the Clojure Debugging Toolkit

2010-10-13 Thread atreyu
I suppose it could be a way to unify both versions using (System/ getProperty "path.separator") and (System/getProperty "file.separator") I try to fix it like Leo but i get a regexp exception using (reval) with \ -- You received this message because you are subscribed to the Google Groups "Clojur

Re: New Release of the Clojure Debugging Toolkit

2010-10-13 Thread atreyu
lass [c] > -  (str/replace c "/" ".")) > +  (str/replace c "\\" ".")) > >  (defn get-class* [fname] >    (->> (.split @source-path ";") > -       (map #(re-find (re-pattern (str % "\\(.*)(.clj|.java)")) > fname)) > +       (

Re: shorter alternatives for `comp' and `partial'

2010-11-16 Thread atreyu
impenetrable for builtin curried functions and . operator as comp?? i dont think so, haskell can be hard to read but not for those reasons F. e. filter when the sum of elements are even: Prelude> filter (even.sum) [[2,3],[3,3]] [[3,3]] i think is pretty readable ;-) On Nov 16, 2:19 am, Cyrus Har

Re: shorter alternatives for `comp' and `partial'

2010-11-16 Thread atreyu
e... ((∘ (𝒫 map (𝒫 + 5)) concat2) (filter (comp even? sum) [[2 3] [3 3] [6 6]])) On Nov 16, 9:34 am, Ken Wesson wrote: > On Tue, Nov 16, 2010 at 3:23 AM, atreyu wrote: > > impenetrable for builtin curried functions and . operator as comp?? i > > dont think so, haskell can be hard

Re: shorter alternatives for `comp' and `partial'

2010-11-16 Thread atreyu
'll not comment about (superficial) syntax in a month!! :-P On Nov 16, 11:35 am, Meikel Brandmeyer wrote: > Hi, > > On 16 Nov., 11:06, atreyu wrote: > > > clojure is nice too for the example but if you'd add functions and > > they have arity more than 1 haskell ge

Re: Add method implementations to proxy

2010-11-17 Thread atreyu
Hi, i added your example (quoting the source) to http://clojuredocs.org/clojure_core/clojure.core/update-proxy On Nov 17, 2:05 pm, Mark Rathwell wrote: > An example of update-proxy in case it may help anyone in the future: > > user> (import java.util.Date) > java.util.Date > > user> (def d (prox

Re: Community attitude

2010-12-21 Thread atreyu
I would like to think is a symptom of the growth of Clojure. More Clojure users from different perspectives and attitudes means more potential for conflict. But some attitudes only causes noise: in particular people who requires without counterpart and think Clojure is like Visual Basic and this gr