Nothing
# Watch htop or task manager or activity monitor for CPU load during test.
library(autometric)
local({
out <- FALSE
out <- tryCatch(
log_print(path = "/etc/test"),
error = function(condition) TRUE
)
stopifnot(isTRUE(out))
})
local({
process <- callr::r_bg(
function() {
is_prime <- function(n) {
if (n <= 1) return(FALSE)
for (i in seq(2, sqrt(n))) {
if (n %% i == 0) {
return(FALSE)
}
}
TRUE
}
lapply(seq_len(1e6), is_prime)
invisible()
}
)
message(Sys.getpid())
message(process$get_pid())
path <- tempfile()
log_print(
path = path,
seconds = 2,
pids = c(Sys.getpid(), process$get_pid())
)
log_read(path)
unlink(path)
})
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.