Chris Gill
Chris Gill
Is this a known fact? I ended up fixing this by turning the literals to strings. http://stackoverflow.com/questions/16610383/remove-inst-and-uuid-literals-in-clojure Is this the recommended procedure or am I missing something obvious? :)
I've left out collections purposefully since it really would slow down the development of the library, but I think it's time to start thinking about how collections might be used...
Static logic does not exist, it's based on identity. So something like ```is_false false```, does not work as expected. This is probably a sore point and should be looked at
Being able to chain functions would be a big plus ``` def sword damage 2 ; def root @player.sword new sword -> damage + 5 # build new sword and...
The evaluator has a basic save-state function to pause state and surrender the environment, however it does not currently serialize this and the associated environment and thus cannot be saved...
need to derive copy all the way up to [promise](https://github.com/viperscape/rust-promise) so we can copy instead of clone streams, which _should_ mean we can move out of an iteration and continue...
create bounded sized stream - [ ] store nth data in producer var - [ ] track strong_count from producer - [ ] return Result on deliver for producer
Using ghash to create a gmac I noticed is slower than an hmac using sha256; I was under the impression gmac would be faster when c is left blank (no...
In the [trimesh](https://github.com/sebcrozet/ncollide/blob/master/ncollide_entities/shape/trimesh.rs) shape, I want to perform ray queries against the mesh but with a scaled mesh. I scale the mesh dynamically. Is this possible? Should I instead rebuild...
I was confused by this until I reread the example vlc connection where it doesn't use base64 encoded password, just wanted to point that out for anyone else connecting. For...