search for: winston

Displaying 20 results from an estimated 274 matches for "winston".

2001 Oct 19
10
Winbind/RH7.1...More Help
...d now works...my getent passwd & groups returns the domain users/groups What should be the next step? my clients (Win2K & Win9x) are still prompting for a password and I cannot login to my linux box using DOMAIN*domainuser. Must I add each domain user as a user on the linux box? Regards Winston Nimchan -----Original Message----- From: Sean Trammell [mailto:strammell@siumed.edu] Sent: Friday, October 19, 2001 9:15 AM To: Winston Nimchan Cc: samba@lists.samba.org Subject: Re: Winbind/RH7.1...Help It works on Redhat 7.1 against my NT4 server, you should have something that looks like this...
2001 Oct 23
0
Winbind/RH7.1...Problems joining domain
...o setup the PDC credentials to machine APPS_SERVER. Error was : NT_STATUS_NO_TRUST_SAM_ACCOUNT. 2001/10/23 09:32:58 : change_trust_account_password: Failed to change password for domain TSL.COM. ------------------------------------------------------------------------ ---------- Any ideas? Regards Winston Nimchan -----Original Message----- From: Levi Ruiz [mailto:lruiz@pnicorp.com] Sent: Monday, October 22, 2001 5:06 PM To: Samba Mailing List (E-mail) Subject: RE: Winbind/RH7.1...More Help Delete your MACHINE.SID and secrets.tdb files from your config dir (/etc/samba/?), delete the machine accoun...
2005 Jul 25
2
file name handling "bug" in scp?
Hi I think I found a small filename handling issue in scp: evaldo at winston:~$ scp evaldo at 127.0.0.1:test-\`whoami\`-test . Password: scp: test-evaldo-test: No such file or directory evaldo at winston:~$ scp evaldo at 127.0.0.1:test-\`echo\ foo\`-test . Password: scp: test-foo-test: No such file or directory evaldo at winston:~$ evaldo at winston:~$ ssh -V OpenSSH_3.9 N...
2017 Nov 21
1
Are Rprintf and REprintf thread-safe?
Thanks - I'll find another way to send messages to the main thread for printing. -Winston On Tue, Nov 21, 2017 at 12:42 PM, <luke-tierney at uiowa.edu> wrote: > On Tue, 21 Nov 2017, Winston Chang wrote: > >> Is it safe to call Rprintf and REprintf from a background thread? I'm >> working on a package that makes calls to fprintf(stderr, ...) on a >> ba...
2017 Nov 21
2
Are Rprintf and REprintf thread-safe?
...printf(stderr, ...) on a background thread when errors happen, but when I run R CMD check, it says: Compiled code should not call entry points which might terminate R nor write to stdout/stderr instead of to the console, nor the system RNG. Is it safe to replace these calls with REprintf()? -Winston
2020 Mar 26
3
Rebuilding and re-checking of downstream dependencies on CRAN Mac build machines
...httpuv and other packages against Rcpp, then this is a problem. Among other things, it prevents people from building their packages from source using CRAN versions of packages, and it also means that none of these packages can release a new version, because the binaries can't be built on Mac. -Winston
2008 Nov 25
3
Line color based on data values?
...t, to selectively color the data points based on the data value? i.e. if plotting say the percentage change in stock price movements, to color +ve points in green and -ve points in red? And extending this to a user-defined range of colors based on the quartile of the data points? Thanks Rory Rory Winston RBS Global Banking & Markets 280 Bishopsgate, London, EC2M 4RB Office: +44 20 7085 4476 *********************************************************************************** The Royal Bank of Scotland plc. Registered in Scotland No 90312. Registered Office: 36 St Andrew Square, Edinburgh EH2 2...
2008 Nov 24
4
Calculating sum of letter values
..."ABCDA" = 1+2+3+4+1 = 11 Is there an elegant way to do this? Trying something like which(LETTERS %in% unlist(strsplit("ABCDA", ""))) is not quite correct, as it does not count repeated characters. I guess what I need is some kind of lookup table? Cheers Rory Rory Winston RBS Global Banking & Markets 280 Bishopsgate, London, EC2M 4RB Office: +44 20 7085 4476 *********************************************************************************** The Royal Bank of Scotland plc. Registered in Scotland No 90312. Registered Office: 36 St Andrew Square, Edinburgh EH2 2...
2001 Oct 19
2
Winbind/RH7.1...Help
Hi All: I followed all the instructions for activating winbind and it went thru but my getent etc are only showing users on the linux box. The only thing i'm not sure if i did correctly was to create the symbolic link for libnss_winbind.so.2 Anyone got winbind working on RH7.1? Thanx Winston Nimchan _/_/_/_/_/ _/_/_/_/ _/ Software Development Mgr. _/ _/ _/ Trinidad Systems Limited _/ _/_/_/_/ _/ 1.868.628.9330 Ext. 215 _/ _/ _/ 1.868.767.0249 _/ _/_/_/_/ _/_/_/_/
2014 Oct 29
2
Unexpected behavior of identical() with language objects
...result very surprising: identical( quote({ a }), quote({ a }) ) # FALSE It seems related to curly braces. For example, parens work fine: identical( quote(( a )), quote(( a )) ) # TRUE Is this expected behavior? I can't seem to find anything in the help for identical that relates to this. -Winston
2015 Jan 26
2
speedbump in library
>>>>> Winston Chang <winstonchang1 at gmail.com> >>>>> on Fri, 23 Jan 2015 10:15:53 -0600 writes: > I think you can simplify a little by replacing this: > pkg %in% loadedNamespaces() > with this: > .getNamespace(pkg) almost: It would be !is.null...
2009 Feb 14
2
anova help
...stead of glm. I am new to R so this might seem basic. Joe King, M.A. <mailto:jp@joepking.com> jp@joepking.com "Never give in, never give in, never; never; never; never - in nothing, great or small, large or petty - never give in except to convictions of honor and good sense" - Winston Churchill "You have enemies? Good. That means you've stood up for something, sometime in your life." - Winston Churchill [[alternative HTML version deleted]]
2017 Apr 05
6
Very hard to reproduce bug (?) in R-devel
) On Wed, Apr 5, 2017 at 2:59 AM, Martin Maechler <maechler at stat.math.ethz.ch> wrote: > > >>>>> Winston Chang <winstonchang1 at gmail.com> > >>>>> on Tue, 4 Apr 2017 15:29:40 -0500 writes: > > > I've done some more investigation into the problem, and it is very > > difficult to pin down. What it looks like is happening is roughly like this: >...
2017 Apr 18
2
system/system2 and open file descriptors
...e default, but I suspect that making that change would break a lot of existing code. To take an example from the Python world, subprocess.Popen() has an option, close_fds, which closes all file descriptors except 0, 1, and 2. https://docs.python.org/2/library/subprocess.html#popen-constructor -Winston [[alternative HTML version deleted]]
2006 Oct 11
1
RE: W2K3 Server Installation fails with ACPI=1 on
Steven, I found where the difference is, it may be my fault: My changeset number + 1 = your changeset number. My 11160 is your 11159, and my 11161 is your 11160. Attached please see those patches, Thanks, Winston, -----Original Message----- From: Steven Smith [mailto:sos22@hermes.cam.ac.uk] On Behalf Of Steven Smith Sent: Wednesday, October 11, 2006 10:33 AM To: Wang, Winston L Cc: Stefan Berger; Zheng, Shaohui; xen-devel@lists.xensource.com; sos22@srcf.ucam.org Subject: Re: [Xen-devel] W2K3 Server Install...
2018 Mar 26
4
Objects not gc'ed due to caching (?) in R's S3 dispatch mechanism
Hi, I initially opened an issue in the R6 repo because my issue was with an R6 object. But Winston (thanks!) further simplified my example, and it turns out that the issue (whether a feature or a bug is yet to be seen) had to do with S3 dispatching. The following example, by Winston, depicts the issue: print.foo <- function(x, ...) { cat("print.foo called\n") invisible(x) } n...
2008 Apr 04
4
Arbitrary Precision Numbers
Hi (If you're wondering, this is a Project Euler question :)) If I wanted to calculate the sum of the digits in the decimal representation of 2^1000, what would be a good way to go about that? I've tried the following methods: # Calculate the sum of digits in the decimal representation of 2^n # Only works for smaller values of n bsum <- function(n) { s <- 0 e <-
2016 Jun 22
1
dowload.file(method="libcurl") and GET vs. HEAD requests
Thanks for looking into it. Is there a way to avoid the HEAD request in R 3.3.0? I'm asking because if there isn't, then I'll add a workaround in a package I'm working on. -Winston On Tue, Jun 21, 2016 at 9:45 PM, Martin Morgan <martin.morgan at roswellpark.org> wrote: > On 06/21/2016 09:35 PM, Winston Chang wrote: >> >> In R 3.2.4, if you ran download.file(method="libcurl"), it issues a >> HTTP GET request for the file. However, in R 3.3...
2013 Oct 16
1
Internally accessing ref class methods with .self$x is different from .self[['x']]
...f" attr(,"class")attr(,"package") [1] "methods" =============================================== [1] "a" "b" "initialize" [1] "b" "e" "tc" "TestClass" -Winston
2015 Apr 29
2
R CMD check and missing imports from base packages
On Wed, Apr 29, 2015 at 12:53 PM, Winston Chang <winstonchang1 at gmail.com> wrote: > On Tue, Apr 28, 2015 at 3:04 PM, G?bor Cs?rdi <csardi.gabor at gmail.com> > wrote: > > > > > > E.g. if package 'ggplot2' uses 'stats::density()', and package 'igraph' > > also defines '...