Re: Problem Running ClojureScript on OpenJDK

2011-07-20 Thread David Soria
Context is not in GNU classpath. Switching from OpenJDK to Oracle JDK solved the problem On Jul 21, 2:37 am, David Soria wrote: > Hi, I try to run ClojureScript rev > e4ad8ed60ca05645e0ac96362d4c6ef1e1a2bd6f > > my environment is: > Fedora Linux 15 > java version "1.6.0_

Problem Running ClojureScript on OpenJDK

2011-07-20 Thread David Soria
Hi, I try to run ClojureScript rev e4ad8ed60ca05645e0ac96362d4c6ef1e1a2bd6f my environment is: Fedora Linux 15 java version "1.6.0_22" OpenJDK Runtime Environment (IcedTea6 1.10.2) (fedora-58.1.10.2.fc15- x86_64) OpenJDK 64-Bit Server VM (build 20.0-b11, mixed mode) After bootstrapping, I try to

Re: Proposal: Digest

2010-07-20 Thread David Soria Parra
On 2010-07-13, Alex Osborne wrote: > Hi David, > > David Soria Parra writes: >> any feeback on this so far? > >>> A typical example would be: >>> (digest-to-str (digest "hello world" :algorithm "SHA-1")) > > "digest-to-str"

Re: Proposal: Digest

2010-07-12 Thread David Soria Parra
any feeback on this so far? On 2010-07-10, David Soria Parra wrote: > Hi, > > I want to propose a wrapper around MessageDigest to provide a simple way > to generate digests. > > The following proposal includes a multimethods digest, which operates either > on strings or on a

Proposal: Digest

2010-07-10 Thread David Soria Parra
Hi, I want to propose a wrapper around MessageDigest to provide a simple way to generate digests. The following proposal includes a multimethods digest, which operates either on strings or on arrays of bytes. I think digests are usuall used with strings. To expose the byte array api from java's