Re: ANN: ClojureScript release 0.0-1798

2013-06-26 Thread gerrit . hentschel
Not sure why my previous post was deleted but anyway. Yeah, the source map didn't work as I've seen on some screenshots in tutorials, but the line numbers alone were good enough and very useful for finding that incompatible line. Documentation would definitely help as crawling through the comm

Re: ANN: ClojureScript release 0.0-1798

2013-06-26 Thread David Nolen
That's great to hear. Will update documentation in the appropriate places. On Wed, Jun 26, 2013 at 4:01 AM, wrote: > Not sure why my previous post was deleted but anyway. > > Yeah, the source map didn't work as I've seen on some screenshots in > tutorials, but the line numbers alone were good e

Re: New CSS library - Garden

2013-06-26 Thread Rob Jens
Hey Jeremy, You might be interested, in case you hadn't heard of it yet, of the Semantic Grid (http://semantic.gs) probably in particular their Stylus version https://github.com/twigkit/semantic.gs/blob/master/stylesheets/styl/grid.styl but depending on your taste/clarity might also wish to c

[ANN] Taoensso library updates (major: Carmine v2-beta1, Nippy v2-RC1)

2013-06-26 Thread Peter Taoussanis
Hey all, a bunch of (batched) library updates for today - happy Wednesday! Sorted in order of update size since last group post: *Carmine* - Redis client & message queue (GitHub ) Current version: *2.0.0-beta1* -* *MAJOR RELEASE (BREAKING) Clojure depe

Re: [ANN] Taoensso library updates (major: Carmine v2-beta1, Nippy v2-RC1)

2013-06-26 Thread Peter Taoussanis
Oh Emlyn Corrin (emlyn) just reminded me that he's also been adding some new appenders to Timbre! There's a socket appender, IRC appender, and MongoDB (Congomongo) appender (just awaiting merging now). Cheers -- -- You received this message because you are subscribed to the Google Groups "Clo

[ANN] modern-cljs - Tutorial 14 - It's better to safe than sorry (part 1)

2013-06-26 Thread Giacomo Cosenza
Hi all, I just published the 14th tutorial of modern-cljs, the series of tutorials on ClojureScript. https://github.com/magomimmo/modern-cljs/blob/master/doc/tutorial-14.md In this tutorial I prepared the field for unit testing and introduced enlive templating system to adhere to the progress

Re: New CSS library - Garden

2013-06-26 Thread Joel Holdbrooks
Garden 0.1.0-beta5 is now available! The newest version includes functions for working with *color* and performing generic *arithmetic*(ie. operators for transparently adding numbers and units or numbers

lein repl and missing yank

2013-06-26 Thread Manuel Sugawara
Hi all, Am working on a linux terminal with the REPL (as in lein repl) and the C-y binding does not work (yank-command, or paste). I miss it a lot. Any idas what I'm missing?. lein --version reports: Leiningen 2.0.0-preview10 on Java 1.7.0_25 OpenJDK 64-Bit Server VM Thanks in advance. Regards

Re: lein repl and missing yank

2013-06-26 Thread Cedric Greevey
Have you tried control-V, which has been the industry standard paste key binding for at least the past 20 years? Legacy bindings from before user interfaces started becoming more standardized will not typically work outside of the particular legacy applications (in your case, apparently emacs) wher

Re: lein repl and missing yank

2013-06-26 Thread Ben Wolfson
On Wed, Jun 26, 2013 at 4:31 PM, Cedric Greevey wrote: > Have you tried control-V, which has been the industry standard paste key > binding for at least the past 20 years? > In terminals, and terminal applications? -- Ben Wolfson "Human kind has used its intelligence to vary the flavour of dri

Pure/deterministic functions, as values in the compiler

2013-06-26 Thread emporas
Hello, I have a question that is more of a Lisp question, than Clojure specific, but it is in the true spirit of things as 'values'. Now that the practice of applying collision resistant hashes (ie unique strings), to save multiple versions of structures with the possibility of overlapping, is

Re: lein repl and missing yank

2013-06-26 Thread Phil Hagelberg
On Wednesday, June 26, 2013 3:26:58 PM UTC-7, Manuel Sugawara wrote: > Am working on a linux terminal with the REPL (as in lein repl) and the C-y binding does not work (yank-command, or paste). Definitely a bug that it's not working. Can you report it on the reply project? https://github.com/tr

Re: lein repl and missing yank

2013-06-26 Thread Chris Allen
You could try: rlwrap lein repl as a stopgap. On Wednesday, June 26, 2013 3:26:58 PM UTC-7, Manuel Sugawara wrote: > > Hi all, > > Am working on a linux terminal with the REPL (as in lein repl) and the C-y > binding does not work (yank-command, or paste). I miss it a lot. Any idas > what I'm

Re: lein repl and missing yank

2013-06-26 Thread Stanislav Sedov
On Wed, 26 Jun 2013 19:31:49 -0400 Cedric Greevey mentioned: > Have you tried control-V, which has been the industry standard paste key > binding for at least the past 20 years? Legacy bindings from before user > interfaces started becoming more standardized will not typically work > outside of t

Re: Pure/deterministic functions, as values in the compiler

2013-06-26 Thread Gary Trakhman
The first thing I think of along these lines is codeq http://blog.datomic.com/2012/10/codeq.html When I first heard about it, I thought it might have potential for code reuse and whole-program optimization. If you've ever imported something that causes irrelevant classes to take up space in your

Re: Pure/deterministic functions, as values in the compiler

2013-06-26 Thread Kostas Pramatias
On Thu, Jun 27, 2013 at 3:04 AM, Gary Trakhman wrote: > The first thing I think of along these lines is codeq > http://blog.datomic.com/2012/10/codeq.html > Codeq seems very good for querying and manipulating the history of the project, but i was thinking along the lines of executing the whole h

Adding implicit indexing to Clojure lists and arrays?

2013-06-26 Thread Greg
There is one feature that I really miss from newLISP and seems like it could be a natural extension to Clojure, and that is implicit indexing for lists and arrays. Clojure already has something similar in its use of keywords to act as functions that look themselves up in a map. This is basical

Re: Adding implicit indexing to Clojure lists and arrays?

2013-06-26 Thread Michael-Keith Bernard (SegFaultAX)
Vectors and maps are already functions of their indices and keys, respectively. I don't really think it makes sense for other sequence types (seqs, lists, etc.) because they aren't naturally associative in the same way. Finally, there isn't a Clojure form I'm aware of that allows negative indic

Re: New CSS library - Garden

2013-06-26 Thread Joel Holdbrooks
Cool. I haven't seen this one before. Since it was fairly simple I reimplemented it in Clojure with Garden. *Here's the gist.* I took a functional approach using higher order functions. It could be a little cleaner but then again *the arithmetic isn't a

Re: Adding implicit indexing to Clojure lists and arrays?

2013-06-26 Thread Cedric Greevey
(v 0) and the like already work when v is a vector. You can also do something like this: (defn proper-rem [a b] (if (neg? a) (dec (- b (rem (- (inc a)) b))) (rem a b))) (defn at [v idx] (v (proper-rem idx (count v (defn r [start end v] (let [c (count v) s (proper-rem st

New Fuzzy Matching Library - Fuzzy Matcher

2013-06-26 Thread Smit Shah
Hey folks, This is my first post on the mailing list, I would like to introduce myself. I have been love with Lisp since I started reading SICP, the way you express problems and decompose them it's just amazing. I always wanted to build a real world application in Lisp but I never got around it