similar to: Is asterisks the best for a simple DTMF response system?

Displaying 20 results from an estimated 1200 matches similar to: "Is asterisks the best for a simple DTMF response system?"

2000 Apr 20
2
removing NA values from data frame & identification function
Dear people, 1) I have a data frame with named columns.For concreteness, let us say that I created a data frame from the vectors fee, fi fo, fum by giant.df <- cbind(fee, fi, fo, fum) Now, some of the entries in fee, fi fo fum are NAs. I want to remove any row which contains a NA, thus creating a new, smaller data frame, with the same column names. This seems like something people would need
2009 Oct 27
2
Print several xyplots to the same page in a pdf file
Hello everybody, I'm using the lattice package and the xyplot to make several graphs like below. However, I can just print the three grouped plots onto one page as I'm putting them into a pdf-file, which gives me a huge amount of pages... Is it possible to put them all, or at least more than one on the same page, for instance put three groups beside each other like columns? ...
2010 Dec 26
2
environment question
Hello, everybody. I'm putting together some lecture notes and course exercises on R programming. My plan is to pick some R packages, ask students to read through code and see why things work, maybe make some changes. As I look for examples, I'm running up against the problem that packages use coding idioms that are unfamiliar to me. A difficult thing for me is explaining scope of
2014 Mar 29
2
[LLVMdev] Cast specific pointer type to generic one
Hi, Suppose I have a pointer to "something" (a structure I defined) and I want to pass the pointer to a generic function, that gets a 64-bit address pointer. How do I do that? For instance: The function is: void Foo (void *); I get the specific pointer using getPointerOperand() on a store instruction that store to it: inst->getPointerOperand()->getType() Now I want
2008 Feb 13
6
pvmove speed
Are there any ways to improve/manage the speed of pvmove? Man doesn't show any documented switches for priority scheduling. Iostat shows the system way underutilized even though the lv whose pe's are being migrated is continuously being written (slowly) to. Thanks! jlc
2009 Oct 27
1
Exclude rows in xyplot
Hi all, I'm searching for a way to exclude outliers from my dataset while making xyplots. While plotting using pairs(), I exclude specific row in my data frame and save the settings as a variable which I later include as an argument: # Discard outliers and save settings as idx idx=with(fieldTrial0809, which(Pro>0 & Pro<0.95 & Fum>0 & Fum<0.4 & Mal>0.1 &
2010 Apr 14
2
Why no race condition when returning UNPROTECT-ed memory from C?
Consider the C (or C++) code called from the .Call interface: SEXP foo() { SEXP *p = PROTECT(allocVector(REALSXP, 10)); ... UNPROTECT(1); return p; } Why is there no danger that the allocated memory will be garbage collected after the UNPROTECT, but before the return of p? I have used code like this for some time and have never had a problem, but I'm not sure if/why it is guaranteed
2008 May 09
1
disk partitioning - I'm missing something simple, I think
Hi all, Excuse the question as I'm sure those more experienced will find it simple. I've a CentOS5.1 box with six physical drives, two of which are used for nightly rsync backups. Contents of /etc/mtab, /etc/fstab, df and a brief narrative follow: ====================================================== # cat ./fstab /dev/VolGroup00/LogVol00 / ext3 defaults
2003 Oct 16
3
indexing a particular element in a list of vectors
I have a "list" of character vectors. I'm trying to see if there is a way (in a single line, without a loop) to pull out the first element of all the vectors contained in the list. listOfVectors[1:length(listOfVectors][1] doesn't work. ========================== If you want more details.. Here is my listOfVectors which is called "uuu" >
2007 May 30
2
poor IO perfomance
Здравствуйте, xen-users. Just test domU IO perfomance: sda1 configure via phy:/dev/sdb1. Benchmark with dbench (dbench -D /usr/src -s 10 -t 120) - 102 Mb/s Native sistem (mount /dev/sdb1 /mnt && dbench -D /mnt -s 10 -t 120) - 140 Mb/s How i can speedup dbench? -- С уважением, Vitaliy mailto:vitaliy.okulov@gmail.com
2006 Mar 21
6
FAX over PRI
We are doing this with the latest spandsp, iaxmodem and hylafax. Seems to work very well for us so far. -Jonathan > -----Original Message----- > From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users- > bounces@lists.digium.com] On Behalf Of Michael Gaudette > Sent: Tuesday, March 21, 2006 3:34 PM > To: 'Asterisk Users Mailing List - Non-Commercial
2005 Oct 20
2
KeepAlive/ClientAliveInterval not working? Idle timeout.
I have set /etc/ssh/sshd_config with: KeepAlive yes ClientAliveInterval 3 However, no KeepAlive type messages seem to be sent. I've verified this by looking at the network lights, which don't flicker every 3 seconds. I am attempting to keep interactive ssh sessions alive longer. If don't type anything for about 2 minutes, the sessions close. If I run a "idle"
2010 Jun 22
3
PRI span problem - no D channel
Hi, I have the following happen to me after the restart of one of my servers: out of my 3 PRIs (all configured with the same technical settings), the last one isn't coming back. It's underutilized (chances it didn't get a call since my reboot), if it makes a difference . The PRI goes from provisioned to unprovisioned, and I get this regularly: [Jun 22 09:03:48]
2016 Nov 27
3
A couple metrics of LLD/ELF's performance
These numbers were collected on Rafael's clang-fsds test case (however, I removed -O3 and --gc-sections) with a command like: ``` sudo perf record --event=cache-misses --call-graph=dwarf -- /home/sean/pg/llvm/release/bin/ld.lld @response.txt -o /tmp/t --no-threads ``` And then ``` sudo perf report --no-children --sort dso,srcfile ``` One annoying thing about these numbers from perf is that
2004 Apr 30
1
Asterisk missing DTMF tones from some cell phones
While most cell phones are fine, some cell phones don't seem to produce DTMF digits that Asterisk/Zapata will detect. One of our salespeople has an AT&T model that never gets any digits through. Is there a known solution? I understand, of course, that with cell phones the DTMF tones are actually created at the base, and that pressing the key longer usually does not result in longer
2006 Nov 03
27
# devices in raidz.
for s10u2, documentation recommends 3 to 9 devices in raidz. what is the basis for this recommendation? i assume it is performance and not failure resilience, but i am just guessing... [i know, recommendation was intended for people who know their raid cold, so it needed no further explanation] thanks... oz -- ozan s. yigit | oz at somanetworks.com | 416 977 1414 x 1540 I have a hard time
2003 Nov 11
1
+= assignment operator
The thread "Finding the name ob an object" gave me an idea about how to write an assignment operator like C's "+=": "%+=%" <- function(a, b) { as <- deparse(substitute(a)) bs <- deparse(substitute(b)) st <- paste(as, "<-", as, "+", bs) eval.parent(parse(text=st), 2) } R> xx <- matrix(1:9, 3,3) R> xx[2,
2005 Oct 13
1
Idealx 9.1
Hoping someone knows how to deal with this, as I'm scratching my head. I have 8.3 or 8.4 installed already and they work ok for the most part. Server: FBSD5.4, Samba 3.0.20 Error in smbldap-useradd: camarillo# ./smbldap-useradd -w fums Could not find base dn, to get next uidNumber at /usr/local/sbin//smbldap_tools.pm line 995, <DATA> line 283. Data output during connection to
2005 Feb 17
3
A vector or array of data frames
Hi A simple question again, but I can't find it by google-ing R-help. Quite simply, I want to read in the contents of a number of files, using read.table, and assign the results to elements of a vector/array/list/whatever. I want it so that, if my vector/array/whatever is "pos", that pos[1] will give me the first data frame, pos[2] will give me the second etc... Kind of basic
2006 Apr 19
2
ANNOUNCE: Asterisk Jobs and Consulting Site
Greetings, I would like to announce the availability of a new site dedicated to finding and creating jobs in the Asterisk VOIP field. I've created this site, after noticing there are no sites dedicated to providing quality job postings and hiring abilities to people in the field. http://www.asterisk-jobs.com It's in beta now, so if you notice any problems please let me know at