Re: [Rd] R-Forge > GitHub?

2019-06-30 Thread Ott Toomet
Apparently you created id_rsa key pair with a passphrase. Passphrase is like an additional password protection layer on your ssh key. I don't know how did you create it. But you can always create a new one (you should delete the old one before you create a new one) using the shell command 'ssh-k

Re: [Rd] R-Forge > GitHub?

2019-06-30 Thread Spencer Graves
On 2019-06-30 06:58, Joshua Ulrich wrote: I imported both packages into separate repositories: https://github.com/joshuaulrich/tmp-ecdat https://github.com/joshuaulrich/tmp-ecfun I changed your email address on your R-Forge commits to match your GitHub email address, so R-Forge commits woul

Re: [Rd] Making R CMD nicer

2019-06-30 Thread Duncan Murdoch
On 30/06/2019 8:08 p.m., Abby Spurdle wrote: In that case, I was wrong. And I must apologize... In saying that, good to see Windows out performing Linux on the command line... That's going to set the bees abuzz... __ R-devel@r-project.org mailing li

Re: [Rd] Making R CMD nicer

2019-06-30 Thread Abby Spurdle
In that case, I was wrong. And I must apologize... In saying that, good to see Windows out performing Linux on the command line... On Mon, Jul 1, 2019 at 11:30 AM Gábor Csárdi wrote: > > For the record, this is Linux R-devel: > > root@4bef68c16864:~# R CMD > /opt/R-devel/lib/R/bin/Rcmd: 60: shi

Re: [Rd] Making R CMD nicer

2019-06-30 Thread Gábor Csárdi
For the record, this is Linux R-devel: root@4bef68c16864:~# R CMD /opt/R-devel/lib/R/bin/Rcmd: 60: shift: can't shift that many root@4bef68c16864:~# R CMD -h /opt/R-devel/lib/R/bin/Rcmd: 62: exec: -h: not found root@4bef68c16864:~# R CMD --help /opt/R-devel/lib/R/bin/Rcmd: 62: exec: --help: not fo

Re: [Rd] Making R CMD nicer

2019-06-30 Thread Abby Spurdle
> First time posting in the R mailing lists so hopefully this works well. > I noticed when I type `R CMD` I get this unhelpful message: > /usr/lib/R/bin/Rcmd: 60: shift: can't shift that many I wasn't able to reproduce this. Maybe it's a Linux thing. But then, I suspect you've omitted some of your

Re: [Rd] R-Forge > GitHub?

2019-06-30 Thread Joshua Ulrich
On Sat, Jun 29, 2019 at 9:46 PM Joshua Ulrich wrote: > > On Sat, Jun 29, 2019 at 6:06 PM Spencer Graves > wrote: > > > > Hi, Henrik et al.: > > > > > >What's your favorite documentation on how to make two GitHub > > projects from one containing two packages? > > > > > >Currently,

Re: [Rd] memory access question

2019-06-30 Thread Iñaki Ucar
It doesn't matter you didn't use the value. An invalid read may fail or not. It depends on whether that memory portion was reallocated or not by the OS. When it was, you are trying to read in a memory region where you don't have permission, so it crashes. Iñaki On Sun, 30 Jun 2019 at 04:27, Thern