Re: [ANN] bleach 0.0.11

2013-05-05 Thread David Lowe
It's much, much simpler than any compiler! It just translates arbitrary clojure code to and from all-whitespace strings :) Thanks, David On Sat, May 4, 2013 at 11:26 AM, Gary Verhaegen gary.verhae...@gmail.comwrote: Without looking at more than the Readme on github, I guess it's kind of like

Re: [ANN] bleach 0.0.11

2013-05-05 Thread Simone Mosciatti
It is probably me being stupid, but WHY ? On Sunday, May 5, 2013 8:11:05 AM UTC+2, David Lowe wrote: It's much, much simpler than any compiler! It just translates arbitrary clojure code to and from all-whitespace strings :) Thanks, David On Sat, May 4, 2013 at 11:26 AM, Gary Verhaegen

Re: [ANN] bleach 0.0.11

2013-05-05 Thread Michał Marczyk
On 5 May 2013 15:19, Simone Mosciatti mweb@gmail.com wrote: It is probably me being stupid, but WHY ? Much easier to maintain your code when you can touch it without risking it soiling your hands with all the black lettering. On Sunday, May 5, 2013 8:11:05 AM UTC+2, David Lowe wrote:

Re: [ANN] bleach 0.0.11

2013-05-05 Thread Moritz Ulrich
It's also nice for printing on paper. Ink is expensive. On Sun, May 5, 2013 at 6:49 PM, Michał Marczyk michal.marc...@gmail.com wrote: On 5 May 2013 15:19, Simone Mosciatti mweb@gmail.com wrote: It is probably me being stupid, but WHY ? Much easier to maintain your code when you can touch

Re: [ANN] bleach 0.0.11

2013-05-05 Thread Plínio Balduino
And there's also a lot less syntax to learn. On Sun, May 5, 2013 at 3:07 PM, Moritz Ulrich mor...@tarn-vedra.de wrote: It's also nice for printing on paper. Ink is expensive. On Sun, May 5, 2013 at 6:49 PM, Michał Marczyk michal.marc...@gmail.com wrote: On 5 May 2013 15:19, Simone Mosciatti

Re: [ANN] bleach 0.0.11

2013-05-04 Thread AtKaaZ
could you post a sample code how it looks before and after? On Thu, May 2, 2013 at 7:36 AM, David Lowe j.david.l...@gmail.com wrote: bleach: whitens unsightly code! When you bleach your code, it continues to work as before, only now it looks like: (use 'bleach.core) #bleach/ed

Re: [ANN] bleach 0.0.11

2013-05-04 Thread Gary Verhaegen
Without looking at more than the Readme on github, I guess it's kind of like a compiler to whitespace. You know, the whitespace programming language : http://en.wikipedia.org/wiki/Whitespace_(programming_language) like implemented as a user defined type with the #bleach/ed type. On 4 May 2013

Re: [ANN] bleach 0.0.11

2013-05-04 Thread Jonathan Fischer Friberg
You could try reading about it here: http://search.cpan.org/~dconway/Acme-Bleach-1.150/lib/Acme/Bleach.pm I still can't figure out exactly what it does though... Reading the description, it seems like it removes, for example whitespace at the end of lines. But from the example it seems like it

Re: [ANN] bleach 0.0.11

2013-05-04 Thread AtKaaZ
got it, thanks Gary! On Sat, May 4, 2013 at 9:26 PM, Gary Verhaegen gary.verhae...@gmail.comwrote: Without looking at more than the Readme on github, I guess it's kind of like a compiler to whitespace. You know, the whitespace programming language :

Re: [ANN] bleach 0.0.11

2013-05-04 Thread David Lowe
Sure thing! Here's a sample: $ cat src/helloworld/core.clj (ns helloworld.core) (defn foo I don't do a whole lot. [x] (println x Hello, World!)) $ lein bleach src/helloworld/core.clj $ cat src/helloworld/core.clj (use 'bleach.core) #bleach/ed

[ANN] bleach 0.0.11

2013-05-02 Thread David Lowe
bleach: whitens unsightly code! When you bleach your code, it continues to work as before, only now it looks like: (use 'bleach.core) #bleach/ed Find it here: https://github.com/dlowe/bleach Enjoy :) David Lowe -- -- You received this message because you are subscribed to the Google