Displaying 4 results from an estimated 4 matches for "proscript".
Did you mean:
prescript
2004 Jul 12
1
Nested source()s
I had an error message while running a macro from Yudi Pawitan's web site:
> source("ex2-13.r")
Error in parse(file, n, text, prompt) : syntax error on line 2
Inspecting ex2-13.r I found that the error was generated by another
source() command.
Clearly R does not like nested source()s, which is fair enough when you
think about it. Still it's something that you might want
2008 Jun 13
0
[Bug 1172] [PATCH] Restrict public key authentication to scp access only
...|RESOLVED
Resolution| |WONTFIX
CC| |djm at mindrot.org
--- Comment #4 from Damien Miller <djm at mindrot.org> 2008-06-13 13:30:54 ---
OpenSSH now has a "Match" directive that supports proscriptive control
of the user's command. We won't be building in special glue for scp,
but you can use it (along with the new chroot support) to force users
to be able to run sftp only.
If you absolutely require scp, then you can use the same mechanism to
force them to use a restrictive shell lik...
2013 Aug 27
2
trying to create asset management app having trouble with edit page
i trying to create an asset management app. i am working through the
ruby on rails 4.0 guide by Michael Hartl but in his guide it shows edit
page for authenticated users i do not needthis function as the app will
be deployed to an intranet. i have tried to adapt the edit portion in
the above mentioned guide but it is not working. i am a newbie to this
so any help with websites to look at or other
2013 Nov 05
2
Error message glmer using R: “ 'what' must be a character string or a function”
I am running a multi-level model. I use the following commands with
validatedRS6 as the outcome, random as the predictor and clustno as the
random effects variable.
new<-as.data.frame(read.delim("BABEX.dat", header=TRUE))
install.packages("lme4")
library(lme4)
model1<- glmer(validatedRS6 ~ random + (1|clustno), data=new,
family=binomial("logit"), nAGQ)