Nothing
random_id <- function(length = 10, prefix = "q") {
paste(
c(prefix, sample(c(letters, 0:9), length, replace = TRUE)),
collapse = ""
)
}
random_queue_name <- function() {
random_id(length = 10, prefix = "q")
}
random_lock_name <- function() {
random_id(length = 6, prefix = "")
}
`%||%` <- function(l, r) if (is.null(l)) r else l
try_silent <- function(x) {
try(x, silent = TRUE)
}
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.