Nothing
string_to_uint <- function(str) {
stopifnot(is.character(str), length(str) == 1L, !is.na(str))
# The hashcode for a character string is computed as
#
# s[1]*31^(n-1) + s[2]*31^(n-2) + ... + s[n]
#
# using int arithmetic, where s[i] is the i:th character of the
# string, n is the length of the string. The hash value of the
# empty string is zero.
bytes <- as.integer(charToRaw(str))
hash <- 0
for (kk in seq_along(bytes)) {
hash <- 31 * hash + bytes[kk]
# Convert into [0,2^32-1] range
hash <- hash %% 2^32
}
hash
}
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.