Re: Google working on JIT compiler for Dalvik

2011-07-31 Thread Fred Concklin
DOH! http://developer.android.com/videos/index.html#v=Ls0tM-c4Vfo On Jul 31, 2:38 pm, Fred Concklin wrote: > Thought it might be of interest to some on the list. > > http://developer.android.com/videos/index.html#v=Oq05KqjXTvs -- You received this message because you are subscrib

Google working on JIT compiler for Dalvik

2011-07-31 Thread Fred Concklin
Thought it might be of interest to some on the list. http://developer.android.com/videos/index.html#v=Oq05KqjXTvs -- 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 m

Re: clojure-jack-in & slime-highlight-edits

2011-06-19 Thread Fred Concklin
Phil Hagelberg writes: > Fred Concklin writes: > >> Clearly the solution is to turn off slime-highlight-edits. Although why >> is slime bootstrapped on every jack-in? > > Future versions will try to detect if it's already been bootstrapped and > skip that step

clojure-jack-in & slime-highlight-edits

2011-06-19 Thread Fred Concklin
I'm using clojure-jack-in with slime-highlight-edits in my slime config (.emacs). The problem is that the after slime is bootstrapped by jack-in the highlights show up in every .clj file I'm editing, regardless of whether or not it is in the project with the slime-connection. Thoughts/opinions/fi

Re: ANN: Clojure Atlas (preview!)

2011-04-19 Thread Fred Concklin
t; 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, send email to > clojure+unsubscr...@googlegroups.com > For more options, visit this group a

question re: quote

2011-03-28 Thread Fred Concklin
in common lisp: > (setf x '((1st element) 2 (element 3) ((4)) 5)) ((1ST ELEMENT) 2 (ELEMENT 3) ((4)) 5) in clojure: user> (def x '((1st element) 2 (element 3) ((4)) 5)) java.lang.NumberFormatException: Invalid number: 1st [Thrown class clojure.lang.LispReader$ReaderException] Looking into it u

Re: arithmetic progression

2011-03-08 Thread Fred Concklin
Thanks! fpc -- 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, send e

Lift and Clojure

2011-03-08 Thread Fred Concklin
I'm looking for examples and resources about using Lift (Scala Web Framework) and clojure together. Anybody know of anything good? fpc -- 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

arithmetic progression

2011-03-08 Thread Fred Concklin
Tests whether list is arithmetic progression. Thoughts, feedback: (defn arithmetic-progression? [intlist] "tests if list is arithmetic progression." (apply = (map #(apply - %) (partition 2 1 (reverse intlist) fpc -- You received this message because you are subscribed to th

Clojure & CEDET?

2011-03-07 Thread Fred Concklin
Just wondering if anybody uses CEDET with clojure or anybody would be interested in clojure language support for smart code completion. http://cedet.sourceforge.net/ fpc -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send e

Re: Swank fix for slime cvs

2011-03-03 Thread Fred Concklin
You should patch and send upstream. fpc -- 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 unsubs

Java Agent Based Modeling Systems and Clojure

2011-02-16 Thread Fred Concklin
Hi, I've been surveying some agent based modeling systems for use in a project I am doing in clojure. I've narrowed down the list to those below. I am wondering if anybody here has experience with these or has any thoughts about choosing one over the other for use with clojure. I will probably wr

Re: Append a # and a string

2011-02-13 Thread Fred Concklin
Christopher Maggio writes: > Hi, clojure newbie here; > > I have a quick question, I am writing a small pattern matching program > and I can't figure out how to append a string to a # for re-matcher: Not quite following, but check out re-pattern (http://clojuredocs.org/clojure_core/clojure.core/r

Re: Pimp my algorithm: finding repeating subsequences

2011-02-13 Thread Fred Concklin
DEFLATE is a compression method that combines LZ77 with Huffman coding. It is implemented in java.util.zip. Read about it here: http://download.oracle.com/javase/1.4.2/docs/api/java/util/zip/package-summary.html fpc -- You received this message because you are subscribed to the Google Groups "