similar to: Probably very simple... call a number and play a sound?

Displaying 20 results from an estimated 70 matches similar to: "Probably very simple... call a number and play a sound?"

2006 Jan 16
3
new comer's question
I am new to R. I try to search the web but could not find the answer so I post it here asking for help. I have a csv file looks like this: (between two ==== lines) =========================== Machine Name,"Resource, Type","Resource, Sub-type","Resource, Instance",Date,,Data ->,,,,,, ,0.041666667,,,,,,,,,,, Time (HH:MM)
2008 Nov 16
4
duplicate values
Hei R Users, i have the following dataframe: Datetime Temperature and many more collumns 1 2008-6-1 00:00:00 5 2 2008-6-1 02:00:00 5 3 2008-6-1 03:00:00 6 4 2008-6-1 03:00:00 0 5 2008-6-1 04:00:00 6 6 2008-6-1 04:00:00 0 7 2008-6-1 05:00:00 7 8 2008-6-1 06:00:00
2013 Jun 25
5
Marvell, IOMMU/VT-d, and pci-phantom
Hi, guys. I''ve been trying to use the pci-phantom command line options to xen so as to work around the hardware issue with the Marvell 88SE91xx SATA controllers in IOMMU ([Intel:] VT-d) mode, but I cannot seem to get my head around it. From having had a glance here: http://xenbits.xen.org/docs/unstable/misc/xen-command-line.html and in particular the syntax described as such:
2013 Apr 12
2
split date and time
Hi R experts, For example I have a dataset looks like this: Number TimeStamp Value 1 1/1/2013 0:00 1 2 1/1/2013 0:01 2 3 1/1/2013 0:03 3 How can I split the "TimeStamp" Column into two and return a new table like this: Number Date Time Value 1 1/1/2013 0:00 1 2 1/1/2013 0:01 2 3 1/1/2013 0:03 3 Thank! [[alternative HTML version
2013 Nov 09
1
disk controller not working with xen: Marvell Technology Group Ltd. 88SE9172
Dear Xen folk, I''m trying to use xen as shipped with debian 7.0. The system has 13 disks over 3 controllers. When I boot normal linux, I get this (condensed output from lshw): product: MV64460/64461/64462 System Controller, Revision B disk:0 disk:1 disk:2 disk:3 disk:4 disk:5 product: 88SE9172 SATA 6Gb/s Controller disk:0 disk:1
2007 Jan 30
5
Asterisk dual contexts stupidity
So I have my extensions.conf (http://www.infiltrated.net/exten.stupidity.conf) shortened in case someone wants to look. Has someone encountered the following? I've racked my brain on this for too long... I have two contexts, day and night... Caller (Daytime) --> Dials an extension --> Caller hears extension ring on receiver --> Call goes through Caller (Night) --> Dials an
2007 Apr 02
5
simplify
hello friends, is there any way to simplify that extensions.conf file? [miprimerejemplo] exten => 20000,1,Dial(SIP/20000,30,Ttm) exten => 20000,2,Hangup exten => 20000,102,Voicemail(20000) exten => 20000,103,Hangup exten => 20100,1,Dial(SIP/20100,30,Ttm) exten => 20100,2,Hangup exten => 20100,102,Voicemail(20100) exten => 20100,103,Hangup exten =>
2019 Nov 07
5
[PATCH v2 02/15] mm/mmu_notifier: add an interval tree notifier
On 10/28/19 1:10 PM, Jason Gunthorpe wrote: ... > include/linux/mmu_notifier.h | 98 +++++++ > mm/Kconfig | 1 + > mm/mmu_notifier.c | 533 +++++++++++++++++++++++++++++++++-- > 3 files changed, 607 insertions(+), 25 deletions(-) > > diff --git a/include/linux/mmu_notifier.h b/include/linux/mmu_notifier.h > index 12bd603d318ce7..51b92ba013ddce
2003 Apr 12
1
ps commandline option woes (-v weired formatting, more power for -m)
Two issues concerning ps commandline options. 1) -v option, cosmetic ! currently the formatting is very unsexy, makes this option rather unusable, you can't easy follow the columns 2) -m option doesn't have precedence over other options forcing the output to be memory sorted. i.e. -u option implies -r (-r = sort by current cpu usage) Now I find the output format of -u very
2006 May 22
0
Asterisk Nortel Legacy Integration
Hi Srs. we have to integrate a Nortel MATRA M6501-L with Asterisk with a TE410P. All call from outside get into asterisk and asterisk send to Nortel in a correct way. My problem is when a call is made from Nortel to Asterisk. If we digit a national Number in Spain([98]ZXXXXXXX or 6XXXXXXXX) all work find. But if we digit an international number call doesn't progress. I Have seen in
2019 Nov 07
0
[PATCH v2 02/15] mm/mmu_notifier: add an interval tree notifier
On 11/7/19 12:06 PM, Jason Gunthorpe wrote: ... >> >> Also, it is best moved down to be next to the new MNR structs, so that all the >> MNR stuff is in one group. > > I agree with Jerome, this enum is part of the 'struct > mmu_notifier_range' (ie the description of the invalidation) and it > doesn't really matter that only these new notifiers can be
2007 Jan 26
1
Ringing oddity/stupidity
Anyone experience ring oddities with extensions.conf rollovers? Let me summarize... One of my extensions.conf file is built to ring during the day, ring/go to voicemail after a certain time: [main-aa] exten => s,1,GotoIfTime(17:00-8:30|mon-fri|*|*|*?main-night-aa,s,1) exten => s,2,GotoIfTime(*|sat-sun|*|*|*?main-night-aa,s,1) exten => s,3,Dial(SIP/201,25,tr) exten =>
2008 Jan 31
4
[PATCH] virtio_blk: Dont waste major numbers
Rusty, currently virtio_blk uses one major number per device. While this works quite well on most systems it is wasteful and will exhaust major numbers on larger installations. This patch allocates a major number on init and will use 16 minor numbers for each disk. That will allow ~64k virtio_blk disks. Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com> ---
2008 Jan 31
4
[PATCH] virtio_blk: Dont waste major numbers
Rusty, currently virtio_blk uses one major number per device. While this works quite well on most systems it is wasteful and will exhaust major numbers on larger installations. This patch allocates a major number on init and will use 16 minor numbers for each disk. That will allow ~64k virtio_blk disks. Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com> ---
2019 Nov 07
1
[PATCH v2 02/15] mm/mmu_notifier: add an interval tree notifier
On Wed, Nov 06, 2019 at 04:23:21PM -0800, John Hubbard wrote: > Nice design, I love the seq foundation! So far, I'm not able to spot anything > actually wrong with the implementation, sorry about that. Alas :( I feel there must be a bug in here still, but onwards! One of the main sad points was it didn't make sense to use the existing seqlock/seqcount primitives as they have
2008 Dec 23
0
PB 12" G4: Pointer to flat panel table invalid
I just installed Debian on my PowerBook G4 12", but my X server refuses the start. I've appended my Xorg.log and xorg.conf. This is with a Debian testing system with the following relevant packages: # dpkg -l '*nouveau' 'drm*' 'xserver-xorg' Desired=Unknown/Install/Remove/Purge/Hold |
2007 Nov 08
0
configure.ac libswfdec-gtk/swfdec_gtk_widget.c libswfdec-gtk/swfdec_playback_alsa.c libswfdec/swfdec_as_date.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_types.c libswfdec/swfdec_audio_flv.c libswfdec/swfdec_audio_flv.h
configure.ac | 2 +- libswfdec-gtk/swfdec_gtk_widget.c | 11 ++++------- libswfdec-gtk/swfdec_playback_alsa.c | 8 +++++++- libswfdec/swfdec_as_date.c | 18 ++++++++++-------- libswfdec/swfdec_as_interpret.c | 2 ++ libswfdec/swfdec_as_types.c | 5 +++++ libswfdec/swfdec_audio_flv.c | 2 +- libswfdec/swfdec_audio_flv.h
2005 Mar 12
0
Image corruption with default X-server for Geforce 6600
Hi, (This is a recend, as the original post was refused by the CentOS moderators due to the size of the X-log file) I''ve just installed the CentOS 4.0 RC1 for x86_64 -set on my new Nforce4-based system with a PCIe GF6600-card. When installing, the screen becomes garbled as the system enters X mode, but installing with ''linux text'' works, until the system reboots and
2008 Jun 22
2
cant change settings in wine.cfg
I had wine loading Guild wars just fine, i am trying to get city of heroes to work properly, it loads but the graphics are not refreshing properly, eventually, about 30 seconds into the game the screen goes jittery, and displays hundreds of images of everything within view. if I do nothing for about 5 minutes, the screen goes back to normal, but only if i am looking at the ground or sky. it cant
2008 Mar 24
4
Ati Low Perfomance
I have such problem: When i start Warcraft 3 (or WOW) in opengl mode (or DirectX, no matter) i got theese lines in console: > ibGL error: drmMap of framebuffer failed (Cannot allocate memory) > libGL error: reverting to (slow) indirect rendering Game works fine but low perfomance. I really can't find solution in the internet. My system: Ati X1600 Mobility Radeon - ATI 8.3