search for: helm

Displaying 20 results from an estimated 37 matches for "helm".

Did you mean: held
2011 Mar 22
1
how to convert a data.frame to a list of dist objects for individual differences MDS?
...milarities among 10 colors, giving in each column the 45 = 10*9/2 pairwise judgments for one of 16 subjects. The rownames identify each pair of colors, e.g, "AC" = ("A","C"), and the pairs are ordered by columns in the lower triangle of each distance matrix. > helm.raw <- read.table("http://euclid.psych.yorku.ca/datavis/Private/mdshelm.dat", header=TRUE, row.names=1) > head(helm.raw) N1 N2 N3 N4 N5 N6a N6b N7 N8 N9 N10 CD1 CD2a CD2b CD3 CD4 AC 6.8 5.9 7.1 7.5 6.6 5.2 5.8 6.2 7.5 6.0 9.2 11.5 9.3 9.0 10...
2008 Oct 17
1
asterisk +heartbeat (Wilton Helm)
> >> having two NICs on the same subnet > > I'm trying to wrap my brain around that in the larger network > picture. Two > NICs in the same subnet (presumably on the same computer) would have > access > to the same other devices. This could potentially increase bandwidth > (maybe?) and offer redundancy (if NICS, wiring or switches were the > biggest >
2008 Mar 12
2
Problem with a sieve file
Hello, I use a simple sieve file like: require "fileinto"; if header :contains ["From"] ["root"] { redirect "test at domain.com"; } When I send an email with root to this user, I have this error in my deliver log: Mar 12 09:43:18 helm deliver(user at domain.net): open(~/.temp.hostname.net.53398.23c1b1a363c2c4e8) failed: No such file or directory Mar 12 09:43:18 helm deliver(user at domain.net): msgid=<20080312084317.C01BD37FEC13 at hostname.com>: forwarded to <test at domain.com> Why I have this error? I don'...
2013 Jan 11
3
Access comonents in lists of lists
Dear R users,I have a list of equally structured lists, how can I access e.g. all 2nd compontents in those sub-lists?An example:lst <- list(rep(list(1:3),3), rep(list(4:6),3))> lst[[1]][[1]][[1]][1] 1 2 3[[1]][[2]][1] 1 2 3[[1]][[3]][1] 1 2 3[[2]][[2]][[1]][1] 4 5 6[[2]][[2]][1] 4 5 6[[2]][[3]][1] 4 5 6What I want to get are all second sub-lists, in this case:[[1]][[2]][1] 1 2
1998 Aug 05
1
Samba Weird One
Hello all! I have a strange one that I really need help with: I have samba p8 running on SCO Unix openserver 5.0.4. The rest of our network is Windows 95/NT 4.0 with our domain called 'SABINMETAL'. One of the NT workstations (named HELM with a user called steve) was working, but now it is doing the following: if steve logs onto the SABINMETAL domain, he cannot get to the Unix server through network neighboorhood. if steve logs onto the HELM domain, he can get to the Unix server, but he can't map his home directory. if I log o...
2009 Feb 04
2
Expire plugin does not work
Hi. I test expire plugin for my dovecot 1.1.8. But, it seems to not work. I have 3 mailboxes on my machine. I want my messages in Junk and Trash expire after 1 day. I removed all messages in them before installing expire plugin. See my dovecot.conf: expire: Trash 1 Junk 1 expire_dict: proxy::expire My dabatases in /var/lib/dovecot are used. When I launch /usr/local/sbin/dovecot
2000 Feb 12
2
ssh_exchange_identification fails (how to fix)
Renaud Guerin <renaudg at hexanet.fr> writes: >I'm running OpenSSH 1.2.2. with OpenSSL 0.9.4 on Linux 2.2.14 >(Mandrake 7.0) They were recompiled from source RPMS with gcc 2.95.2 >When I try to connect to localhost, I get >SSH Version OpenSSH-1.2.2, protocol version 1.5. >Compiled with SSL. >debug: Reading configuration data /etc/ssh/ssh_config >debug: Applying
2018 Jul 29
2
[fdo] Postmortem: July 17th GitLab outage
...outages happen early in the European morning, when we see the lightest usage from only eastern Europe and Asia being online, and only last for approximately five minutes. Background ---------------- gitlab.freedesktop.org runs on the Google Cloud Platform, using the Google Kubernetes Engine and Helm charts[0]. The cluster currently runs Kubernetes 1.10.x. The service itself runs in a single Kubernetes Pod, using the latest published GitLab CE image from gitlab.org (at time of writing this is 11.1.2, however at the time it was 11.0.4). Some GitLab data is stored in Google Cloud Storage buckets...
2008 Oct 13
6
ISDN
...o be greatly appreciated. Asterisk has a bit of a learning curve, and ISDN BRI isn't the most widely used or covered aspect of it. BTW, I have a strong telecom background, so the theory part of it will not be a problem, only the necessary documentation to apply it to Asterisk. Thanks, Wilton Helm Embedded System Resources -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20081013/37613563/attachment.htm
2003 Jan 06
1
problem adding printer driver
...inters path = /var/spool/samba browseable = no guest ok = yes guest only = yes public = yes writable = no printable = yes printer admin = root,@ntadmin [print$] comment = Printer Drivers path = /sftw/samba/printers guest ok = yes ;guest only = yes browseable = yes read only = yes write list = root,helmsjw,@ntadmin Any hints/help would be greatly appreciated. We are reducing our NT server count due to licensing issues and I hope to switch some of the services over to linux. Thanks, John Helms Unix/Linux Admin DuPont Photomasks, Inc.
2008 Oct 14
3
Looking for a mentor
...> is more specific > than "Re: Contents of asterisk-users digest..." > > > Today's Topics: > > 1. Re: is there a way (Brent Davidson) > 2. Re: Asterisk 1.6.1 + openais (Russell Bryant) > 3. asterisk+heartbeat (Nhadie) > 4. Re: ISDN (Wilton Helm) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 14 Oct 2008 11:11:23 -0500 > From: Brent Davidson <brent at texascountrytitle.com> > Subject: Re: [asterisk-users] is there a way > To: Asterisk Users Mailin...
2008 Mar 12
1
Fileinto to a maildir with sieve
...: require "fileinto"; if header :contains "X-Spam-Flag" "YES" { fileinto ".Junk"; } does'nt work becaise .Junk is a directoty, not a mailbox... See my dovecot-deliver log: Couldn't open mailbox .Junk: Invalid mailbox name Mar 12 09:52:38 helm deliver(nicolas at nicoelro.net): sieve runtime error: Fileinto: Generic Error Is it possible to specify a directory (maildir)? Thanks. - Nicolas.
2009 Jun 03
0
CESA-2009:1076-01: Low CentOS 2 i386 End Of Life
...details are available from the RedHat web site at https://rhn.redhat.com/errata/rh21as-errata.html Thank you to everyone who helped make this project possible. The CAOS and CentOS projects, the unnamed upstream vendor and of course, the users who gave it a reason to exist. After 5 years at the helm of CentOS-2, I look forward to working on some new projects both CentOS and elsewhere. This might be the last update announcement I post but it won't be the last time you see my name. John. -- John Newbigin ITS Senior Analyst / Programmer Faculty of Information and Communication Technologi...
2005 Apr 15
3
PAM authentication
I find it annoying that openssh takes active part in the authentication process when using PAM. Namely, SSH doesn't pass the user's password if the getpwent for the user returns NULL. I use a clever PAM setup that allows nonexisting users to log in if they are succesfully authenticated against a Samba server. When the user logs in for the first time, he's added to the user database
2009 Jan 16
0
No subject
...nect it to the proper interface card. At that point if it doesn't work right, someone here may be able to help you with a configuration file or something. At the moment what I have stated is about all anyone can tell you. You appear to be quite a ways away from knowing what you have. Wilton Helm
2009 Jun 03
0
CentOS-announce Digest, Vol 52, Issue 2
...details are available from the RedHat web site at https://rhn.redhat.com/errata/rh21as-errata.html Thank you to everyone who helped make this project possible. The CAOS and CentOS projects, the unnamed upstream vendor and of course, the users who gave it a reason to exist. After 5 years at the helm of CentOS-2, I look forward to working on some new projects both CentOS and elsewhere. This might be the last update announcement I post but it won't be the last time you see my name. John. -- John Newbigin ITS Senior Analyst / Programmer Faculty of Information and Communication Technologi...
2007 Dec 04
1
FOSS Codecs for Online Video: Usability, Uptake and Development
...nd further development of FOSS video codecs and associated software. The report is released under the GNU Free Documentation License 1.2/ *Support and Network* This report was written for the Transmission network of social justice online video projects. http://transmission.cc Many thanks, Anna Helme EngageMedia.org / Plumi.org -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/theora/attachments/20071204/f3ad8dee/attachment.htm
2003 Dec 10
1
cvs version 1.11.10 import? [security fix]
On a recent NetBSD commit I saw that they have imported cvs 1.11.10 as a security fix yesterday: http://mail-index.netbsd.org/source-changes/2003/12/10/0025.html http://mail-index.netbsd.org/source-changes/2003/12/10/0026.html itojun has clairfied the commit in a mail sent to tech-userlevel list of NetBSD: http://mail-index.netbsd.org/tech-userlevel/2003/12/10/0003.html Will this affect
2008 Oct 30
1
ISDN - BRI
Subsequent to some previous E-Mails, I've been trying to dig into the ISDN - BRI situation a bit more. I have determined that I have a HFC card with Winbond chip, but I'm not sure what combination of drivers is best or usable. zaphfc is out because it only supports the cologne chip. misdn is a possibility. I haven't determined if it supports the card natively, or needs a card
2005 Jan 29
1
ISDN in US?
Hi All, After several months using a TDM400p to access my 4 POTS lines I'm thinking that there has to be a better way. I could order up a BRI from SBC and ditch the POTS lines altogether.Does anyone have ISDN working in the US? What are the issues involved with that interface? Thanks, Michael -- Michael Graves mgraves@pixelpower.com Sr. Product Specialist