Nothing
#' @rdname account
#' @title Determine whether a given user account is being used
#'
#' @param username Username to check for
#'
#' @return A logical value
#' @export
#'
#' @examples
#' using_account("root")
using_account <- function(username) {
assert_string(username)
identical(Sys.info()[["effective_user"]], username)
}
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.