search for: source_url

Displaying 6 results from an estimated 6 matches for "source_url".

2007 Feb 16
0
displaying images from this controllers code
...layout ''default'' def index require ''cgi'' require ''openssl'' require ''base64'' require ''open-uri'' access_id = ''XXXXX'' secret_id = ''XXXXXXXXXX'' source_url = ''google.com'' timestamp = Time.now.strftime("%Y-%m-%dT%H:%M:%SZ") sig = Base64.encode64(OpenSSL::HMAC::digest(OpenSSL::Digest::Digest.new(''SHA1''), secret_id, ''Thumbnail'' + timestamp)).strip url = "http://ast.amazona...
2023 Jul 26
1
Downloading a directory of text files into R
...subf in sub_folder) { d <- file.path(dest_dir, subf) if(!dir.exists(d)) { success <- dir.create(d) msg <- paste("created directory", d, "-", success) message(msg) } } # prepare to download the files dest_dir <- file.path(dest_dir, sub_folder) source_url <- paste0(link, sub_folder) success <- mapply(\(src, dest) { # read each Data subfolder # and get the file names therein # then lapply 'download.file' to each filename pg <- read_html(src) pg %>% html_elements("a") %>% html_text() %>%...
2012 Mar 02
0
devtools 0.6
...for `run_examples` which runs each example in a clean environment. This is much slower than the default (running in the current environment), but ensures that each example works standalone. * `dev_mode` now updates prompt to indicate that it's active (Thanks to Kohske Takahashi) * new `source_url` function for sourcing script on a remote server via protocols other than http (e.g. https or ftp). (Thanks to Kohske Takahashi) * new `source_gist` function to source R code stored in a github gist. (Thanks to Kohske Takahashi) * `load_all` now also loads all package dependencies (including...
2012 Mar 02
0
devtools 0.6
...for `run_examples` which runs each example in a clean environment. This is much slower than the default (running in the current environment), but ensures that each example works standalone. * `dev_mode` now updates prompt to indicate that it's active (Thanks to Kohske Takahashi) * new `source_url` function for sourcing script on a remote server via protocols other than http (e.g. https or ftp). (Thanks to Kohske Takahashi) * new `source_gist` function to source R code stored in a github gist. (Thanks to Kohske Takahashi) * `load_all` now also loads all package dependencies (including...
2016 Oct 23
3
Support for signing R packages with GPG
I would like to propose adding experimental support for including a PGP signature in R source packages. This would make it possible to verify the identity of the package author and integrity of the package sources. There are two ways to implement this. Assuming GnuPG is on the PATH, the CMD build script could call: gpg --clearsign MD5 -o MD5.gpg Alternatively the 'gpg' R package
2014 Sep 01
3
help: shiny leer ficheros desde google drive
Hola, no suelo usar dropbox para dejar ficheros de datos pero no he tenido ningĂșn problema para descargar un dataset (respondiendo a una consulta en un foro linkedin). Por ejemplo: file_url = "https://www.dropbox.com/s/1j0pdi02asc3g20/BigDataE1.csv?dl=1" kk <- read.table(file_url, header = TRUE, sep = ';', quote = "\\")