Nothing
i = 1
while(1) {
cat("\r")
str = paste(paste(rep(" ", i), collapse = ""), "https://jokergoo.github.io/circlize", collapse = "")
i = i+1
if(nchar(str) > 80) {
cat(paste(rep(" ", 80), collapse = ""))
str = "https://jokergoo.github.io/circlize"
i = 0
cat("\r")
}
cat(str)
Sys.sleep(0.2)
flush.console()
}
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.