search for: plugh

Displaying 4 results from an estimated 4 matches for "plugh".

Did you mean: plug
2005 Aug 29
4
Conflict between LDAP and Privilege Separation?
Hi all. OpenSSH_4.1p1, OpenSSL 0.9.7g 11 Apr 2005 on Solaris 8 using host-based authentication. With "PrivilegeSeparation yes" and "UsePAM no" everything works as desired. If I enable PAM, I am able to connect, but just before it gives me a shell, it disconnects. If I leave PAM enabled and disable PrivilegeSeparation, it works. Is this a current limitation, or is there
1997 Dec 03
0
R-beta: generate a dll for R for win95
Hi, I've just downloaded a fracdiff.tar.gz (package for arima(p,d,q) modelling) I would like to plugh-in to R for windows 95 (rsept), how can I make a "*.dll" from the fortran code to put into "lib" directory, and a "library file" to put into "library" directory? Please help me I'm very interested in the arima modelling. Andrea Rossetti. +---------------...
2005 Jan 13
1
Status of latest round of Allison recordings
...press tilde ...press escape ...press return ...press enter ...press the space bar * Misc: splat hash male female bytes kilobytes megabytes gigabytes terabytes bits kilobits megabits gigabits terabits hertz kilohertz megahertz gigahertz * Humor: You are in a maze of twisty little menus, all alike. Plugh (pronounced ploog, not plug) There is a shiny brass lamp nearby. Knock knock... Moron (by itself, as if you're calling someone a...) Idiot (ditto) You step in the stream, but the water has moved on. Go away! (annoyed, maybe other ways...) Oops! (several different ways) Yes, dear. (playful,...
2009 Apr 01
0
回复: R-help Digest, Vol 73, Issue 32
...> Error: unexpected '}' in "                    }" The generic issue here (read: I can't really be bothered to do your problem in all details...) is that you cannot use assignment forms like foo(x) <- bar while accessing x via a character name. That is a <- "plugh!" assign(foo(a), bar) and foo(get(a)) <- bar are both wrong. You need to do it in steps, like x <- get(a) foo(x) <- bar assign(a, x) or, not really any prettier eval(substitute(    foo(x) <- bar, list(x=as.name(a) )) > > > Is there a more elegant way of creating...