Jeroen Ooms
Jeroen Ooms
Requested by @dmurdoch. Fixes #28 If we have settled on the format, we should try to upstream this in cmark.
Most qr encoders and decoders assume [the text payload is in UTF-8 encoding](https://stackoverflow.com/a/9699789/318752). So for example this fails currently: ```r x
We see: ``` R CMD build rms * checking for file ‘rms/DESCRIPTION’ ... OK cp: cannot stat 'rms/.Rbuildignore': No such file or directory ERROR ``` The reason is that your...
This should fix errors like this: https://github.com/r-universe/cran/actions/runs/7619266054/job/20756957057. The problem here is that the LAPACK configuration on the server that has built float could be different than on the user machine....
parallel::detectCores() may return NA in cases that it fails to guess. In those cases we want to use the default. ```r > min(2,NA) # [1] NA > min(2,NA, na.rm=TRUE) #...
The DESCRIPTION refers to a non-existing branch of a remote: https://github.com/cynkra/dm/blob/6bbf32eb169cb60c800714e2e78c9a2365bd3426/DESCRIPTION#L118-L119
We found that `modp_dtoa2` has odd cases where it does not properly round-to-even. For example `x.665` should be rounded down to `x.66` but sometimes it gets rounded to `x.67` ```sh...
Like this: https://github.com/bro/bro/blob/master/src/modp_numtoa.c#L290-L292
Would be nice to have an easy way to enable `-pedantic` warnings in CMD check. I think this is most easily implemented by writing some flags to `~/.R/Makevars`. ``` make...
Setting `r_check_revdep: true` for any package results in: ``` $ export RCHECK_DIR=$(Rscript -e 'cat(paste0(devtools::as.package(".")$package, ".Rcheck"))') 0.01s$ grep -q -R "WARNING" "${RCHECK_DIR}/00check.log"; RETVAL=$? Checking reverse dependencies 0.18s$ Rscript -e 'library("devtools"); res...