Kevin Ushey
Kevin Ushey
On macOS, one can use the linker flags `-undefined dynamic_lookup` to basically tell macOS that the application will provide the required symbols at runtime, rather than via explicitly linking with...
The main intent here is to allow RStudio (or, other front-ends) to add their own global "on connection closed" callback hooks, which could be used to allow the front-end to...
Somewhat related to a recent post on R-devel, some users will still try to use `Rf_error()` in C++ code using Rcpp. However, (as is documented) C++ destructors won't run when...
I saw this error in trying to build `rstan` on a recent submission of RcppParallel, which included an updated build of TBB: ``` clang++ -arch arm64 -std=gnu++14 -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG -I"../inst/include"...
If I open `rice`, then hold down Ctrl + C to interrupt for a while, `rice` is closed and control is returned to the console. Text input in the terminal...
``` > usethis::use_description(check_name = FALSE) Warning in path_file(base_path) : restarting interrupted promise evaluation Error: Path '/private/var/folders/9n/3nxsgkrj0rlfx196kzdttpww0000gn/T/tmp.eEeqQPBN/' does not appear to be inside a project or package. Read more in the...
For example, if I try to run this inside a folder I just created, I see: ``` > usethis::create_package(".") New project 'example' is nested inside an existing project './', which...
Using https://github.com/rstudio/renv/issues/1634 as a template, I wonder if we should also suggest starting with something like: - [ ] Create and switch to release branch `release/` Then, follow the regular...
From https://github.com/fastfloat/fast_float. I'm speculating that "string" => "double" conversions are a relatively hot code path for `readr`, so it might be worth investigating whether this library could be used to...
For example, it might be nice if you could write: ``` cli::cli_inform(c( "!" = "The thing happened.", "?" = "Did you intend for the thing to happen?" )) ``` Right...