Results 7 issues of Felix Andrews

Bump dependencies since clojurescript now requires clojure 1.5.1. I also updated the clojurescript tests to use `bind!` and `->dom`. It seems that we can't use plain `:id` as a key...

Hi, I ran into errors using c2 with recent clojurescript versions. For example if I make the following patch to the `c2-demos/hello-bars` `project.clj`: ``` diff (defproject hello-bars "0.0.1-SNAPSHOT" :description "hello-bars:...

Fixes #36 Here's a one-character fix (after hours of pain and suffering!)... making `insert-assignments` recurse into blocks. Or was there a reason that was commented out? I'm not sure if...

Hi, I found this failure case. If a term appears multiple times within one branch of an `if`, the shared term gets emitted without an assignment to a variable. ```clojure...

HTM model creation can be extremely slow. The time goes into creating the huge proximal synapse graphs containing all potential connections. The problem of explicitly representing full potential synapse graphs...

We know that synaptic connections are reinforced if the source cell fires just before target (LTP) and punished if the reverse occurs - target fires before source (LTD). Currently only...

Some encoders run non-trivial computations: currently the coordinate encoder and unique (random) encoder. We should cache the results for performance. For JVM there is the very nice `core.cache` with a...