Nothing
with_parallel <- function(code) {
cores <- as.numeric(Sys.getenv("TEST_CORES"))
if (is.na(cores)) cores <- 1
if (require("doParallel", quietly = TRUE) && cores > 1) {
doParallel::registerDoParallel(cores = cores)
on.exit(doParallel::stopImplicitCluster())
}
code
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.