search for: gons

Displaying 20 results from an estimated 364 matches for "gons".

Did you mean: cons
2002 Aug 22
1
installing package maps
HI, Is there anybody using package maps, available at ftp://ftp.mcs.vuw.ac.nz/pub/statistics/map/ I have installed it (version maps_0.1-3.tar.gz wich seems to be latest, on R 1.5.1, linux), but whatever I do, I get a segfault. Discussion in the mailing list suggests that the package is not finished yet but is still usable, at least on some platforms. Does anybody has experience with similar
2016 Jul 25
3
ssh-pkcs11.c
Hi Alon, I confirmed with pkcs11-tool (from OpenSC) and I can confirm that pressing return when asked for the pin causes the login to stop (and not to try a empty pin). Can you confirm if a empty pin is actually a valid pin, and if not, can the patch be accepted? Once again, the problem is that from a user experience, *some/most* users would expect they can skip pkcs11 token authentication just
2001 Feb 19
2
How can I create qdisc, class, and filter inside the kernel?
Hi, I am writing a kernel module which works with netfilter. If a certain condition matches, I want to create a qdisc, a class and a filter inside the kernel module. How can I create qdisc, class, and filter inside the kernel? Thanks, Byung-Gon Chun _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com
2011 Sep 08
3
Density function: Area under density plot is not equal to 1. Why?
Hi, I have a vector 'data' of 58 probability values (bounded between 0 and 1) and want to draw a probability density function of these values. For this, I used the commands: data <- runif(58) a <- density(data, from=0, to=1) plot(a, type="l",lwd=3) But then, when I try to approximate the area under the plotted curve with the command: area <- sum(a$y)*(a$x[1]-a$y[2])
2007 Aug 17
4
matching elements from two vectors
Hi, Imagine a vector x with elements (1,2,1,1,3,5,3,3,1) and a vector y with elements (2,3). I need to find out what elements of x match any of the elements of y. Is there a simple command that will return a vector with elements (F,T,F,F,T,F,T,T,F). Ideally, I would like a solution that works with dataframe colums as well. I have tried x==y and it doesn't work. x==any(y) doesn't work
2020 Jun 02
3
SAMBA using existing users and passwords on Linux
This is very problematic for me! In this LINUX VM I have registered more than 40 users for over 10 years. I wouldn't even bother having to register everyone on SAMBA, the question is the passwords of these users. Em seg., 1 de jun. de 2020 ?s 20:09, Andrew Bartlett <abartlet at samba.org> escreveu: > On Mon, 2020-06-01 at 19:02 -0300, Fernando Gon?alves via samba wrote: > >
2020 Jun 02
3
SAMBA using existing users and passwords on Linux
I apologize for forgetting to pass on all the information. In fact, this problem is occurring because of the migration from a VM with Oracle SunOS to another VM with Oracle Linux 7. This old VM is for production and runs the CACH? database, so we decided to create a new VM and migrate everything to it. We have already migrated the database and users without problems. Only on each machine of these
2010 Aug 20
3
change object name within for loop
Hi, I am writing a for loop that creates one object, say 'outn' on every round of the loop. I would like the name of each object to include the index of the loop as in, for example: out1, out2, out3, ... And I would like the naming of the object to take place automatically as the loop moves through? Similarly, I would like to be able to call different objects (in1, in2, in3,
2020 Jun 22
2
SAMBA using existing users and passwords on Linux
Oops, wrong language ;D Okay Rowland. Thank you very much for this help. To the next. <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> Livre de v?rus. www.avast.com <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>.
2012 Nov 08
4
Accessing selected elements of a list
Hi, If I have a vector: junk <- c(2,0,0,3,0) and want to access, say, all the elements that are greater than zero. I just do: junk[which(junk>0)] Now, If I have a list: jlist <- list(NULL,c(1,0),NULL,c(1,2,3), NULL) and want to access all the elements that have length greater than zero, I know how to find the elements with: which(sapply(jlist,length)>0) But how do I get a
2006 Sep 26
4
impossible to enter in the icecast mailing list
Dear all seems impossible to enter in the pages ofthe icecast product can you advice them? i start from here http://dir.xiph.org/ regards --------------------------------- Yahoo! Mail: gratis 1GB per i messaggi, antispam, antivirus, POP3 -------------- next part -------------- An HTML attachment was scrubbed... URL:
2007 Apr 01
3
FLAC: decoding to WAV in the future
What Brian Willoughby means is that even though the future is uncertain, you may trust FLAC. The format is mature enough so that you won't see major changes preventing playback of files encoded by older encoders, but even if that comes to happen, the playback libraries on most software will be backwards-compatible, and FLAC is lossless meaning that you may convert FLAC 1.1.4 to a possible
2008 Feb 01
4
[PATCH] skeleton.c
I'm patching oggenc with this fix. If Conrad reports success in his test, I'll go ahead and patch all other implementations I can find. -Ivo
2008 Feb 01
4
[PATCH] skeleton.c
I'm patching oggenc with this fix. If Conrad reports success in his test, I'll go ahead and patch all other implementations I can find. -Ivo
2008 Apr 11
4
Ogg/Spots and Ogg/MNG
On 12/04/2008, Ivo Emanuel Gon?alves <justivo at gmail.com> wrote: > On 4/11/08, Ivo Emanuel Gon?alves <justivo at gmail.com> wrote: > > > uuencode ^_^ > > > > Hmm... > > Yes! A Vorbis Comment tag called ART or ALBUMART with a Base64 string > would do the trick and it would not choke existing players. No, vorbiscomments are meant to be
2006 Oct 20
3
Extension .v+ogg does work
Hello everyone, As discussed on last Monthly Meeting, Monty settled on recommending the extension .v+ogg for Theora files IF it would work on Linux. Probably many have tested it already, but I haven't seen anything said publically, so for the record, v+ogg works on both Windows and Linux. Hadn't a chance to test it on Mac OS X, but I'm sure it should work there too. And Plan 9 :)
2008 Mar 15
3
locating minimum value in matrix
Hi, I have a matrix BEE and want to find the row and column numbers of the minimum value in that matrix. The command which(BEE==min(BEE)) returns only one value which, I take, is the position of the minimum in a vector with as many elements as the matrix. Is there a quick and simple way of getting row and column numbers? Thanks, Gonçalo [[alternative HTML version deleted]]
2016 Jun 17
3
ssh-pkcs11.c
On Fri, Jun 17, 2016 at 7:57 PM, Alon Bar-Lev <alon.barlev at gmail.com> wrote: > On 17 June 2016 at 20:58, Nuno Gon?alves <nunojpg at gmail.com> wrote: >> Hi, >> >> It seems there is a bug with the pkcs11 feature where a zero-length >> PIN is accepted. I believe this is a bug, since the user might want to >> press return when asked for the PIN to
2002 Sep 16
2
TclTk Again
Dear All, Following Zhang instructions I add the environmental variables, but now I receive the following message: > library(tcltk) Error in firstlib(which.lib.loc, package) : Can't find a usable init.tcl in the following directories: { C:\tcl\lib\tcl8.3} This probably means that Tcl wasn't installed properly. Error in library(tcltk) : .First.lib failed I'm using R Win
2008 Mar 13
2
joining matrices, vectors, scalars in one object
Hi, I have: a <- matrix(c(0,1,0,1),nrow=2) b <- matrix(c(1,1,1,0,0,0),nrow=3) c <- 1 d <- c(1,0,1) And I would like to join them in an object 'thing' so that I can access a, b, c, or d through an index in a for loop. For example: thing[4] would return [1] 1 0 1 Note however, that I have many of these 'thing' components. So many that a command like thing