Nothing
parseContentLength <- function(h) {
fldName <- "Content-Length:"
sizeRegex <- "^.*Content-Length: ([0-9]+)[\r\n]+.*"
## Return size in megabytes
if (length(grep(fldName, h)))
as.numeric(sub(sizeRegex, "\\1", h)) / 1024^2
else
as.numeric(NA)
}
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.