Nothing
# On posix all requests mus be done from an extra session
# otherwise the main session will deadlock.
fetch_get <- function(...) {
if (.Platform$OS.type == "windows") {
return(
httr::GET(...)
)
} else {
return(
(function() {
future::plan("multisession")
v <- future::value(future::future({
return(httr::GET(...))
}))
future::plan("sequential")
v
})()
)
}
}
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.