search for: nerving

Displaying 20 results from an estimated 138 matches for "nerving".

Did you mean: serving
2013 Jun 16
1
Trash plugin
Hello! This is my first dovecot install, which I put together by mixing and matching pieces of various online howtos (fortunately, Dovecot doesn't seem to be overly complex - a big plus). I've got it mostly working, but the trash plugin doesn't seem to be working right. Below are configs and some logs. Any thoughts? Also, any suggestions regarding my configuration? I can post
2009 Jun 12
1
Studentized intervals
I am trying to find studentized bootstrap intervals for the skewness of a data set. I have tried the following (nerve.dat is a set of data containing observations on one variable) (using Windows XP): x <- scan("e:/Flashbackup2009/Nonparametrics/nerve.dat") n <- length(x) library(e1071) skewness(x) library(boot) sampleskew <- function(x,d) {return(skewness(x[d]))} bb <-
2006 Aug 08
11
When will rails support true prepared statements?
I''m in an Oracle shop, and it''s the 1 thing that gets on my bosses nerves. I wish they would support this. Anyone any idea if or when it will be supported? Thanks Chris -- Posted via http://www.ruby-forum.com/.
2015 Sep 14
6
[Bug 2467] New: point-to-point Tunnel doen't work since 6.8
https://bugzilla.mindrot.org/show_bug.cgi?id=2467 Bug ID: 2467 Summary: point-to-point Tunnel doen't work since 6.8 Product: Portable OpenSSH Version: 7.1p1 Hardware: amd64 OS: Linux Status: NEW Severity: major Priority: P5 Component: sshd Assignee: unassigned-bugs at
2009 Jan 30
3
Q about how to use Anova.mlm
Hi, Am newish to stats and R, so I certainly appreciate any help. Basically I have 50 inidividuals whom I have 6 photos each of their optic nerve head. I want to check that the orientation of the nerve head is consistent, ie the 6 replicates show minimal or preferably no rotation differences. I'll draw an arbitrary line between some blood vessels (same reference in each set of replicates) and
2007 Feb 28
3
Registrations, how many is too many?
Anyone have any idea if there is some sort of limitation to the number of SIP or IAX end points which can register to an Asterisk system (2.8Ghz dual processor, 2GB ram) while also handling 30-50 simultaneous calls without getting into trouble? Of course the 30-50 simultaneous calls end up being 60-100 channels of mostly G711 VoIP. We have seen issues where our Asterisk just gets all crazy and
2011 May 07
4
how to calculate the mean of a group in a table
Hi its me again I don't mean to get on your nerves, but the use of R proofs to be a bit more complicated than envisaged. I would like to calculate the mean of a group of values, here "wage_accepted". The group is determined by the stage and period, so in the end there should be a column with the values of the wages in period 1 stage1, period 1 stage 2, period 2 stage1...
2010 Apr 08
2
how can I stop getting email from every comment posted in this forum?
hello people, I didn't know where should post this thread, I asked Hugo the nabble administrator and his response was I should be able to unsubscribed from getting an email from every comment or response posted here. Yet I couldn't find the method nor the button to click to do so. I even change the email address to one of my sub-main email account that every threads will sent to there,
2019 Nov 13
2
calls with comment attribute
I suspect that the parser used it to store comments, including the initial "#", before R started using the srcref attribute. (S also stored comments in the parse tree.) Bill Dunlap TIBCO Software wdunlap tibco.com On Tue, Nov 12, 2019 at 4:16 PM Duncan Murdoch <murdoch.duncan at gmail.com> wrote: > On 12/11/2019 5:01 p.m., William Dunlap via R-devel wrote: > > In
2005 Mar 09
3
Asterisk@home silly problem, please help!
Hi all! After much struggling I got my *@home working fine AND making use of two AVMFritz!PCI cards. Really nice ! (kernel 2.4.2x) There's however a silly glitch that's getting on my nerves, and, kind of a newbie that I am to linux, it should be easy to get help : -- "capiinit start" MUST BE run before Asterisk. (any other way makes * not to start because chan_capi
2003 Jun 03
1
Call Parking on 7960
Hi all, I've got a fairly minor question, but it's getting on my nerves .. hopefully it's an easy answer. I'm having trouble parking calls on our 7960s. It works fine on ZAP devices, though, and they're both using the same context. What I do is: When I'm on the call, I hit More, Transfer, 700, Dial. I then get a fast busy. If I dial 701, for example, I do get the
2003 Jul 09
1
OpenBSD version???
John Todd's Onlamp article mentions an OpenBSD version as of June 2003. Have I been sleeping while reading asterisk-users? Is it a seperate project or is it just making Asterisk portable? Who is working on this and is it in the main CVS yet? Do they have device drivers ported or just the software parts of Asterisk? I think the software parts would be relatively simple but time consuming.
2011 Oct 19
2
network mapping software
Hi all, I'm looking for network mapping software that would walk the local subnet and using snmp/cdp/nmap & friends produce a picture of network connections for documentation purposes. I've seen some for wintendo, but haven't found any decent for linux and CentOS specifically. Something like cheops-ng.sf.net would fill my needs, but before I start a fight with 5+ years old code
2002 Aug 27
1
smbpasswd with a postscript error
hi smbusers, i use an samba2.2.5 server. every time when i type "smbpasswd" with or not options it return me an message like this: WARNING: The "postscript"option is deprecated: which postscript option is mean? smbpasswd works, but it nerves. thx -- STEPHAN PFEIFFER ICQ: 39844459 (Home) 39064604 (Work) http://www.synopex.de/ mailto:info@synopex.de *** Linux is
2006 Feb 27
4
Getting nuts with sortables...
Folks, It has been a whole day spent on this but I still can''t get my mind around the most probably very stupid/basic mistake here... First, the code I use: <h3>List A</h3> <ul id="lista" > <li id="item1"> Item 1</li> <li id="item2"> Item 2</li> <li id="item3"> Item 3</li> </ul>
2005 Feb 15
1
Teles PCI and chan_capi, possible ???
Hello! I'm curently using * with two old Teles PCI card (wich, btw, were hard to install and make good use of) with ISDN4Linux. The sound quality is simply perfect. However both dialing in and out through the ISDN line, there seems to be a _little_ bit of echo that eventually gets on your nerves ! Also the echo seems to get a _little_ bigger after a minute or so into the conversation. Now,
2019 Nov 12
3
calls with comment attribute
In general R doesn't print the "comment" attribute of an object > structure(1:3, comment=c("a comment", "another comment")) [1] 1 2 3 but if the object is a call it prints it in an unusual format > structure(quote(func(arg)), comment=c("a comment", "another comment")) a comment another comment func(arg) What is the
2003 Jun 13
7
sshd refusing connections problem
We have been having a problem with sshd on our shell server. This has been happening since March 4, 2003 or before IIRC. Initially I thought the next OS upgrade, to 4.8 would fix this. I am accustomed to haveing little things go away in a month or two. I think we jumped to 4.7-STABLE on Feb 28, 2003. Some exploit fix wasn't being MFSd to RELENG_4_7 fast enough for my nerves (cvsd?). It
2004 Jul 24
2
acl handling on delete (performance problem)
Hi all, I'm debugging a performance problem for a client. Needless to say, the organisation of their data is such that this problem is really annoying. Here's the situation: Samba 3.0.x PDC in a mixed 9x/nt/xp environment, using acls. When trying to delete a large number of folders from a folder, the 'preparing to delete' stage takes about half hour. It's simple to repeat:
2007 Jul 26
2
Ubuntu 64
Dear sig-R-Debian I'd like to second Christophe Bonenfan's plea for an up-to-date Ubuntu 64 (and maybe an up-to-date Debian 64) repository(ies). There seems to be no "easy" way, at least for Debian 64, to stay up-to-date on a 64 bits Debian-derived system, "easy" meaning being able to keep a consistent system up-to-date with no local package creation and no