Re: ANN: A pretty printer for Clojure

2009-03-14 Thread budu
I just tried it, this is fantastic! We'll finally be able to debug macros while keeping our sanity. Many thanks for this and I hope it will be added directly into Clojure. On Mar 12, 3:05 am, Tom Faulhaber tomfaulha...@gmail.com wrote: I have now released the first version of my pretty printer

Identifying maps.

2009-03-10 Thread budu
Hi, I've just read the On the importance of recognizing and using maps post and it made wonder about the best way for identifying maps. Obviously, when the situation permit it, we better use some kind of label to identify them. But sometimes, it's preferable to test for multiple keys and I'm not

Turning a sequence of chars into a string.

2009-01-25 Thread budu
Hi everybody, since I started using Clojure I've always felt that a small function for turning a sequence of chars into a string was missing. I'm currently using this one even though the name isn't quite right, but I didn't found better: (defn unseq [chars] (new String (into-array (.

Re: Clojure now running in production

2009-01-14 Thread budu
Congratulation, this is quite amazing to see Clojure mature so fast and already working in production system. Sorry but I need to get back at finding that damn bug in a 10 years old VB legacy application :-( On Jan 13, 10:38 am, Luc Prefontaine lprefonta...@softaddicts.ca wrote: Hi everyone,

Re: update-values for clojure.contrib.sql

2009-01-02 Thread budu
:) (ahem) On Fri, Jan 2, 2009 at 8:21 AM, budu nbudu...@gmail.com wrote: Hi, I was experimenting with clojure-contrib's sql features and found that there wasn't any update-values function. I've written my own and I'm sharing it here: (defn update-values [table where column-names

update-values for clojure.contrib.sql

2009-01-01 Thread budu
Hi, I was experimenting with clojure-contrib's sql features and found that there wasn't any update-values function. I've written my own and I'm sharing it here: (defn update-values [table where column-names values] Update columns of a table with values. columns-names is a vector of column

Re: French translation of the Clojure rationale

2008-11-24 Thread budu
Wow, jamais je n'aurais pensé lire des commentaires à propos des problèmes de prononciation de madame Marois ce matin. Comme on dit au Québec: Osti qu'j'ai hâte qu'les élections finisse! Sorry about being offtopic ;-) On Nov 22, 11:35 am, Luc Prefontaine [EMAIL PROTECTED] wrote: Salutations

Re: packaging App (cross-platform) without scripts, only jar

2008-09-20 Thread budu
Thanks a lot! It's funny that you wrote this post now because I was about to try to figure it out myself this week-end. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send

Re: Binding dynamically created symbols in the lexical context.

2008-08-29 Thread budu
described in the Monadic Parser Combinators papers by Hutton and Meijer. Thanks again!!! On Aug 26, 11:57 pm, Chouser [EMAIL PROTECTED] wrote: On Sun, Aug 24, 2008 at 6:02 PM, budu [EMAIL PROTECTED] wrote: Well, for now only the value s used by the parser macro is really needed. I think you