Jeroen Ooms
Jeroen Ooms
Looks like Fedora 30 version of libv8 now also has a custom ICU so we to do something similar: https://github.com/jeroen/V8/blob/6ac6e34d1d70ea24709179126866544cf714cf36/src/bindings.cpp#L36-L40 Bug report in dagitty: https://github.com/jtextor/dagitty/issues/24
We can use sql.js with RSQLite as an alternative data IO method between R and JavaScript. See [example](https://github.com/kripken/sql.js/wiki/Load-a-database-from-the-server).
Find out of there is a way to determine if a string is an incomplete piece of JavaScript so that we can prompt for additional input in the interactive console....
As added in rstudioapi 0.9.0: https://github.com/rstudio/rstudioapi/commit/84e061f192564daa9cc53927c52429e0c41d3b83
Due to this [upstream issue](https://github.com/hunspell/hunspell/issues/523) we cannot add custom words which are duplicates of existing words in the dictionary with a different case. ```r hunspell_check("Javascript", dict = dictionary(add_words = "Javascript"))...
Remotes should check the http status code of the sysreq api instead of trying to parse the html error page as json, and give an informative error: ![Screen Shot 2021-12-02...
It would be a really cool if evaluate would have an option to include a stack trace for errors. I can see this useful for debugging the call that was...
**Update** my initial diagnosis was wrong. It looks like somewhere there is some warm-up required: ```r > library(evaluate) > options(device = function(file, ...){ + pdf(NULL, ...) + }) > >...