Brandon T. Willard

Results 358 comments of Brandon T. Willard

It would also be great to have filtering on in-page elements. For instance, this extension renders equations even while typing in Hangouts, but the rendered results can't be sent as...

I looked into this a while back, and it was a pretty tricky thing to do well.

We could exclude issues marked as bugs, I believe.

> @brandonwillard I'm not sure it quite makes sense to reopen a two-year-old issue asking for old issues to be closed. This issue isn't "asking for old issues to be...

Where are we with this; is it a desired feature? I think it's well worth having, so, if I put in a PR that does it, how will it go...

I don't think this functionality *necessitates* incremental compilation, but it would make it easy to implement (or automatically available) by allowing macros to behave like the basic Python functions with...

Of course that wouldn't work; the code is evaluated too many times (and in different modules/namespaces) during the course of compilation and the superfluous `eval` of the resulting AST! The...

No specific changes have been proposed, yet; I'm only discussing broad functionality and its implications. Otherwise, relative to the subject of this issue, any changes would necessarily allow the macro...

Yes, currently, the compiler produces AST for `(print (m))` reflecting `(print [1 2])` and not something like `(print (do (.append x 2) x))`. I don't see why we couldn't make...

> That's why it's undesirable: the program needs to do the work of expanding macros (represented in this case by the sleep time) every time you run the program. It...