Vicky Chijwani

Results 46 comments of Vicky Chijwani

+1. This would be great for generating color schemes along with text color(s) with sufficient contrast. For someone looking to implement this themselves for the time being, here is [something...

Same issue here, Nexus 4, Android 4.4.2. It happens in the ListView example if I first scroll down, then scroll back to the top, and then scroll down again.

Yes, this is an issue I'm aware of, and yes, you are right that it is caused by JavaScript's rules around `this`. `do` creates a new JavaScript function scope, which...

Yes, `cond` hasn't been implemented yet. For the moment you could try using `if` instead.

@devn both `do` and `when` are implemented (as special forms). I guess I could implement `cond` as a special form too. I haven't really figured out how to implement Clojure...

@koustuvsinha I'm fine with any number of functions per PR as long as they're in separate commits.

Relates to #3.

Reading material: - [Dmitry Nizhegorodov's Lisp System](http://www.dmitrynizh.com/lisp.html) - Other Lisp->JS implementations conveniently listed [here](http://ceaude.twoticketsplease.de/js-lisps.html): look at implementations that support macros, have an interpreter, are written in JavaScript, and are variants...

Closer doesn't understand the concept of namespaces yet, because it wasn't needed on CodeCombat. The only legal position for a dot character is at the beginning -- `(.property object)` --...

Hey @mattfenwick, thanks for providing the exhaustive details. I'm surprised `fn`, `let` and `loop` aren't really special forms. I can't imagine how they could be implemented as macros or functions...