Re: c.c and IBM JDK?

2009-09-06 Thread triddell
This is issue #104 (which was called #100 in the old system.) http://www.assembla.com/spaces/clojure/tickets/104-GC-Issue-100--gen-class-creating-non-compliant-field-names- A simple patch was originally suggested here:

Clojure, Android and Emacs on Ubuntu tutorials

2009-03-30 Thread triddell
For those interested, I've documented the process of beginning clojure- based Android projects using emacs. Android with Emacs on Ubuntu : http://riddell.us/tutorial/android/android.html Clojure and Android with Emacs on Ubuntu : http://riddell.us/tutorial/clojure_android/clojure_android.html

Re: Clojure, Android and Emacs on Ubuntu tutorials

2009-03-30 Thread triddell
Android on Eclipse is fairly well documented. I didn't find much information on using emacs (which I've learned since getting into clojure) with Android so I thought this might be helpful. Ubuntu is the only main OS I use at the moment and I don't have time to document others. The same concepts

Pretty print function using JDK

2009-01-06 Thread triddell
Here is a quick pretty print function I wrote which requires no additional libraries. This version takes a string and returns a string. Since it parses the text before transforming it is probably not the fastest but it worked fine for my needs when generating xml and xhtml files. I hope someone