Neal Fultz
Neal Fultz
I believe this is an issue with Amazon's driver, not the R package - please raise an issue with them, for example at https://forums.aws.amazon.com/forum.jspa?forumID=242&start=0
CRAN accepted the package today along with the autodownload :). I'll defer to @daroczig about integrating with other cloud packages and authentication, I wrote the minimum amount of code I...
I believe this is because openxlsx checks for a file extension on the temp file. See also https://github.com/ycphs/openxlsx/blob/47df27e6f4fdab4bd51bedb6123881781f00887b/R/readWorkbook.R#L123-L125 and https://github.com/daroczig/botor/blob/8eb24fa7f0102fbc88d9941dc097cb4016c930e5/R/s3.R#L105
See also https://github.com/r-dbi/RSQLite/pull/408 Also let me know if the newlines are an issue.
I would prefer multi-line strings to multi-line comments.
I was thinking more of the [triple-quote strings in python](https://stackoverflow.com/a/7696966/986793), which serve as its multi-line comments - you can't (generally) wrap a chunk of code in single (character) quotes to...
> @nfultz In that case I don't agree that thats the right way put comments in code in the first place. Comments shouldn't need to be executed, in my opinion,...
> I mean sure, probably. Except that you don't byte compile script code in general. Also I have to say, the concept of people in any real numbers just giving...
There's an environment variable for this, I've had to use it to install packages on red hat when the default temp location did not have execute privileges. I think it...
For me, there's little benefit (but also little harm) to allowing subdirectories if, at the end of the day, all the files are simply concatenated together - eg https://github.com/wch/r-source/blob/780021752eb83a71e2198019acf069ba8741103b/src/library/tools/R/admin.R#L299-L314 If,...