Dan Connolly

Results 618 comments of Dan Connolly

darn; I don't think my references idea will work. noun phrases aren't the only place they show up. They're also in lists and such. edit: I have since learned that...

more ideas: - [ ] ADT for AST using [flow](http://flowtype.org/) - [ ] prototype source-to-source translation with [sweetjs](http://sweetjs.org/) macros? - [ ] use [traits](https://code.google.com/p/es-lab/wiki/Traits) to build objects, from miranda etc....

progress deserializing .ty to a flow-happy ADT: [js-monte](https://github.com/dckc/jsmonte/) Modern .js is really quite nice: - static typechecking with flow, with real-time feedback in emacs via flycheck I got as far...

some conversion to javascript via [escodegen](https://github.com/estools/escodegen) is working; e.g. `{ x:= 42; traceln(x) }` becomes `x = __monte_runtime.wrapInt(42), traceln.run(x)`. I haven't added `var` yet because that's at the statement level...

The https://github.com/monte-language/spotter work looks like a possible path here. js_of_ocaml and reason and all that are pretty mature.

I think Rholang Vm events is what I am most interested in. I want to be able to do listenForDataAtName without polling. Being able to do deploy on the same...

Ah. _Block created_ does seem to address my needs. If you have an example using it from JS, that would be particularly helpful.

@jimscarver did you say a couple other people reproduced this bug? Who were they?

Thanks for the update, @Bill-Keuntje