Bug in prim branch?

2010-06-09 Thread David Nolen
(defn foo [#^ARef wah]) Works fine on master but throws: java.lang.IllegalArgumentException: Unable to resolve classname: ARef (NO_SOURCE_FILE:6) on the prim branch. David -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send

Re: A simple csv parsing library

2010-06-09 Thread Daniel Werner
Jonas, Thanks for stepping forward and publishing your work. From the short glance I had at it already, your code seems very low-level (probably for performance), but sound. The only thing that, compared to other CSV libraries I've used, I miss somewhat is explicit support for "dialects". While th

Re: Clojure Enhancement Proposals or "wish list"

2010-06-09 Thread David Nolen
On Wed, Jun 9, 2010 at 4:25 PM, frantz wrote: > I would like to know if there is "Clojure Enhacements Proposals" list > ("wish list"). I would like to add something. > > Best wishes, Franis. > user> (= mailing-list wish-list) true ;) -- You received this message because you are subscribed to

Re: PDF generation with Clojure?

2010-06-09 Thread Moritz Ulrich
For simple things like lists, I like to use org-mode files as a intermediate format. Emacs then generates .tex and pdflatex .pdf for me :) On Wed, Jun 9, 2010 at 11:46 PM, Martin DeMello wrote: > On Wed, Jun 9, 2010 at 8:05 PM, Peter Thatcher wrote: >> Just recently, I had a little hobby project

Re: PDF generation with Clojure?

2010-06-09 Thread Martin DeMello
On Wed, Jun 9, 2010 at 8:05 PM, Peter Thatcher wrote: > Just recently, I had a little hobby project to make PDFs for printing > little vocabulary books for kids.   I used Clojure to output Latex, > which then produced the PDFs.   I might do a blog post about it to > give you more details. > > Cloj

Re: New Clojure web application launched: DocuHarvest

2010-06-09 Thread Mark Derricutt
Awesome! Congrats on the launch - looks like an awesome service ( and nice looking as well! ) - is that compojure on the backend? -- Pull me down under... On Thu, Jun 10, 2010 at 7:21 AM, Chas Emerick wrote: > DocuHarvest is a web application we launched today, built using Clojure > (along

Re: use within a let

2010-06-09 Thread Moritz Ulrich
I'm not sure why you'd want to do that. As far as I know, you can't scope uses or imports. (let [foo nil] (use 'c.c.duck-streams)) wouldn't keep the use'd stuff inside the let. On Wed, Jun 9, 2010 at 10:40 PM, Laurent PETIT wrote: > Hello, > > for seqable? to be recognized by the reader, the use

Re: use within a let

2010-06-09 Thread Laurent PETIT
Hello, for seqable? to be recognized by the reader, the use call should have been evaluated. But being part of the same compilation block as seqable, use is read, but not yet executed. HTH, -- Laurent 2010/6/9 lance bradley : > hello all- > It appears that 'use' functions are ignored within a

Clojure Enhancement Proposals or "wish list"

2010-06-09 Thread frantz
I would like to know if there is "Clojure Enhacements Proposals" list ("wish list"). I would like to add something. Best wishes, Franis. -- 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 Not

Re: PDF generation with Clojure?

2010-06-09 Thread Peter Thatcher
Just recently, I had a little hobby project to make PDFs for printing little vocabulary books for kids. I used Clojure to output Latex, which then produced the PDFs. I might do a blog post about it to give you more details. Clojure worked great, and I was glad I used it. The only problem is t

Re: JIT Compilation on Android

2010-06-09 Thread Philip
George's modifications are a bit slow in compiling and require the App to have writing privileges to the /data folder. I have made a few patches to remedy that during my Bachelor's thesis and hope to be able to put them on github in July, but there are some things that have to be done first - main

use within a let

2010-06-09 Thread lance bradley
hello all- It appears that 'use' functions are ignored within a let. The same is true of refer, but require works fine. Is this intended, or a bug? (let [] (use 'clojure.contrib.core) (seqable? [:a :b])) java.lang.Exception: Unable to resolve symbol: seqable? in this context (NO_SOURCE_FILE:6) th

New Clojure web application launched: DocuHarvest

2010-06-09 Thread Chas Emerick
DocuHarvest is a web application we launched today, built using Clojure (along with a variety of stellar frameworks and libraries from the community): "Getting valuable data out of documents should not require an I.T. staff, outside consultants, building or buying software, or an up- front

Re: Perplexing bug

2010-06-09 Thread Praki Prakash
Yes, I did. I also checked with an entirely different package (compojure.core) and see the same problem. On Wed, Jun 9, 2010 at 11:09 AM, Moritz Ulrich wrote: > Have you noticed the change of the namespace from clojure.http.client > to clojure-http.client? (notice the dash after 'clojure') > > O

Re: Perplexing bug

2010-06-09 Thread Moritz Ulrich
Have you noticed the change of the namespace from clojure.http.client to clojure-http.client? (notice the dash after 'clojure') On Wed, Jun 9, 2010 at 8:04 PM, Praki Prakash wrote: > Same story with the latest snapshot of clojure-http-client. Same thing > happens with compojure.core. > > >> BTW,

Re: Perplexing bug

2010-06-09 Thread Praki Prakash
Same story with the latest snapshot of clojure-http-client. Same thing happens with compojure.core. > BTW, I am using 1.2.0-master-SNAPSHOT for clojure and clojure-contrib > but clojure-http-client is 1.0.0-SNAPSHOT. I will try this with the > most recent version. > > Thanks > > wrote: >> I'm no

Re: Perplexing bug

2010-06-09 Thread Praki Prakash
BTW, I am using 1.2.0-master-SNAPSHOT for clojure and clojure-contrib but clojure-http-client is 1.0.0-SNAPSHOT. I will try this with the most recent version. Thanks On Wed, Jun 9, 2010 at 10:35 AM, Moritz Ulrich wrote: > I'm not sure if this is related, but in recent Snapshots of > clojure-http

Re: Perplexing bug

2010-06-09 Thread Moritz Ulrich
I'm not sure if this is related, but in recent Snapshots of clojure-http-client, the namespace was renamed to clojure-http.client. This was a small issue with my fork from clojure-couchdb. (I think clojure-http-client really needs a stable release for clojure 1.1.0) On Wed, Jun 9, 2010 at 7:31 PM

Perplexing bug

2010-06-09 Thread Praki
I started using one-jar to package my clojure code as a single executable jar and ran into a problem right away with loading of classes. I have a very simple project at g...@github.com:fgx3prak/ bug.git that crashes in the same manner as my real code base and think that the underlying problem is th

Re: Commercially-supported, polished Clojure development environment

2010-06-09 Thread Matthew Elder
i think if la clojure were improved more, ie autocompletion in the repl etc that it would be very solid. On Wed, Jun 9, 2010 at 4:33 AM, Chas Emerick wrote: > Following the results from the State of Clojure survey, and some follow-up > comments from some in #clojure indicating that they, too, wo

Re: A simple csv parsing library

2010-06-09 Thread Andrzej
On Wed, Jun 9, 2010 at 4:54 AM, Jonas Enlund wrote: > I've added my work on the csv reader/writer library to github > (http://github.com/jonase/cljcsv). Please let me know If anyone finds > it useful. Would it be possible to expose the output data as a "rel" (a set of maps)? Or, possibly better,

Re: A simple csv parsing library

2010-06-09 Thread Jonas Enlund
On Wed, Jun 9, 2010 at 3:47 PM, Kyle R. Burton wrote: >> When I say that it supports the RFC I mean that the library should be >> able to read any file that follows that standard. It might (and it >> does) read files that do not follow the standard. Here are some >> examples: >> >> 1) quotes can a

Re: A simple csv parsing library

2010-06-09 Thread Kyle R. Burton
> When I say that it supports the RFC I mean that the library should be > able to read any file that follows that standard. It might (and it > does) read files that do not follow the standard. Here are some > examples: > > 1) quotes can appear anywhere, not only as the first and last > character in

Commercially-supported, polished Clojure development environment

2010-06-09 Thread Chas Emerick
Following the results from the State of Clojure survey, and some follow-up comments from some in #clojure indicating that they, too, would like to see a commercially-supported Clojure development environment (adjectives included "badass", "no-compromise", and the like, just to give you the

Re: A simple csv parsing library

2010-06-09 Thread Jonas Enlund
When I say that it supports the RFC I mean that the library should be able to read any file that follows that standard. It might (and it does) read files that do not follow the standard. Here are some examples: 1) quotes can appear anywhere, not only as the first and last character in a cell. 2) r