search for: woudl

Displaying 20 results from an estimated 73 matches for "woudl".

Did you mean: woud
2006 Dec 13
3
How to temporarily unload modules.
Hi, In what Asterisk file can I edit for me to temporarily unload such modules. But later I woudl still be able to load them. Thanks Angel ____________________________________________________________________________________ Yahoo! Music Unlimited Access over 1 million songs. http://music.yahoo.com/unlimited -------------- next part -------------- An HTML attachment was scrubbed... URL: ht...
2006 Jan 18
4
Coercing a list to integer?
...form [1] 1,2,3,4,5 into the form [1] 1 [2] 2 [3] 3 [4] 4 [5] 5? Depending on hwo you define a list, apparentely, it goes one way or the other. x <- list(1:5) means you have [1] 1,2,3,4,5 y <- list(1,2,3,4,5) means you have [1] 1 [2] 2 [3] 3 [4] 4 [5] 5 Can anyone help?# I woudl greatly appreciate it. Sincerely, Norman Goodacre --------------------------------- [[alternative HTML version deleted]]
2007 Feb 16
4
Ideas for rails
...g what others thought: When you generate a model for a DB table, it would be nice if the model.rb contained the DB schema (kind of like # commented out schema) right in the model file. This would make reference WAY easier and put all of the DB stuff in one easy file. Thanks. also nice, of course, woudl be for rails to try and ''guess'' the relationships among tables, and auto-generate the ''has_many'' or ''belongs_to'', if it is possible based on the syntax. Thanks. --~--~---------~--~----~------------~-------~--~----~ You received this message be...
2010 Oct 09
4
same random numbers in different sessions
...ame random numbers whenever I start a new session of R. For example, I keep getting > sample(1:1000, 1) [1] 87 or > rnorm(1:10) [1] -1.3618103 0.4241701 1.0720076 0.2208145 -0.5375314 -0.4846588 [7] 0.7576768 0.6527407 -0.6868786 0.8718527 I expected that some set.seed() instruction woudl be present in a config file in /usr/lib/R/etc/ but after grepping the only reference came out in Rprofile.site and it was commented out: # set.seed(1234) What else could be causing this? Regards Liviu > sessionInfo() R version 2.11.1 (2010-05-31) x86_64-pc-linux-gnu locale: [1] LC_CTYPE=en_...
2008 Sep 14
4
Fetching a range of columns
...p) data_filter <- data[c(2,12,17)] write.table(data_filter, fileout, append = TRUE, sep= ",", row.names= FALSE, col.names = FALSE) nskip <- nskip+320 This time, however, instead of grabbing columns 2, 12, 17, I woudl like all columns in the range of 842-2411. I can't seem to do this correctly. Could somebody please provide some insight? Thanks in advance. -- Jason Thibodeau [[alternative HTML version deleted]]
2007 Mar 08
6
Transfer-encoding: gzip
Hello! What is the simplest way to make merb respond to the client sending Accept-Encoding: gzip? Just checking if it exists, otherwise I''ll implement it myself. Regards, Magnus
2012 Mar 25
2
string substitution for argument in function
...=2,data) > data = cbind('two'=2,data) > data = cbind('three'=2,data) > data 'one' 'two' 'three' [1,] 2 2 2 I guess that the clue would be in sub(),gsub(), paste() or similar but I didnt get it to work. I am comming from python were we woudl do something like: > a = ['one','two','three'] > data = {} > for elem in a: > data[elem] = 2 > data {'three': 2, 'two': 2, 'one': 2} Thanks, Pedro - Prof. Dr. P. Martinez Arbizu DZMB-Forschungsinstitut Senckenberg Suedstran...
2005 Dec 17
3
some beginnerkernel questions
...king and just add this to the XEN stuff? Regarding the devfs_mk-dir issue I found the solution to upgrade to kernel 2.6.13 or above. Is it corrct tat XEN 3 is still using 2.6.12 and as I have to recompile the kernel in any case - how can I do this with the latest stable version 2.6.14.4? Any help woudl be appreciated Mathias _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2004 Mar 10
1
accuracy of chi-square distribution approximations
Hi there, How accurate is the aproximation R makes to the Chi-Square distribution? For example, if I run: > qchisq(1/1000000,6) [1] 0.03650857 how accurate is 0.0365 compared to the theoretical percentile? What kind of approximations have been made in the software's algorithm? It woudl be useful to know since I am working with tiny percentiles such as one one-millionth and one one-billionth, and I am not sure how R comes up with the percentile numbers. Thanks for any help, -Victoria
2005 Jul 28
1
People using the HPN patch...
...ld take a moment to answer a quick question Are you seeing vastly different performance between scp throughput and sftp throughput? On my test network (pittsburgh to chicago) I'm getting 26MB/s with scp (arcfour) and only 6.4MB/s with sftp (arcfour). We just started looking into this but it woudl be nice to know that its not just some weirdness associated with our network. Thanks. Chris
2004 Sep 17
1
Silently Wait for DTMF Input
Hello! I would like to call a number (e.g.35), and when i press a secret code (12345), it should jump to my voicebox menu. On this page http://www.voip-info.org/wiki-Asterisk+cmd+background i found something about "Silently Wait for DTMF Input". In my case it wouldn`t be silence. It woudl just play the away message. Now how can i include such a secret code to my background funktion? I am looking for something _like_ this: exten => s,1,Background(away,12345,voicebox_35) If someone presses 12345 whilest the away message is playing, it jumps to the voicebox_35 context. Know wha...
2010 Jan 26
1
monitor option in libvirt ?
Hello, I woudl liek to start qemu-kvm with -monitor myfile.pipe options instead of default -monitor pty Anyway I have not found any way to tell libvirt (using virsh) that I want to set a specific -monitor option to the qemu-kvm command line. How can I do this ? I do not want to start manually qemu-kvm because...
2023 Sep 08
2
Asterisk 18.14.0 vs 18.18.0 and chan_console/chan_alsa
So I have done through chan_console.c and searched for console_pct_lock() - every one - has a matching console_pvt_unlock() How is the deadlock occurring ? jerry -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20230908/dee530c8/attachment.html>
2007 Mar 07
3
Is there a thread safe ActiveRecord replacement?
I''m using merb as an application server backend for a client application, the goal is to be able to handle thousands of parallell sessions (not parallell requests). It will use sendfile to send files. The controller uses an singleton that saves sessions in a hash that is memory resident cross requests, but isn''t persistent otherwise. I''m using ActiveRecord since there
2007 Jan 02
1
RMySQL adn FC6 - install fail
...s it is not in any of the standard directories (e.g., /usr/lib/, /usr/local/lib)? Aborting the installation of RMySQL. I haev checked my installation adn foudn teh follwing files: /usr/lib/libz.so (whcih points to) /usr/lib/libz.so.1.2 Any help woudl be appreciated. I couldn't find anytign in teh archives. Richard
2007 Apr 03
11
monit vs mongrel cluster
Is there anything mongrel cluster gives you that monit doesn''t? I''ll be using monit to monitor a number of other services anyways, so it seems logical to just use it for everything including mongrel. Chris
2007 Dec 30
2
Loading config YAML into merb process for the life of the process
Hey Chaps, Forgive me for not fully understanding the inner workings of merb, but I would like to read in a YAML configuration file once when the application is booted rather than reading it every time it is used (as presumably the overhead in doing that is significant?) - I had presumed this is how both Merb and rails do it for there database.yml config files (hence its a requirement
2005 Mar 07
6
Automatic timestamping in join tables [596]
...also apply for the join tables of habtm. The answer was that it was left for milestone 1.x, and since I think that without this functionality rails 1.0 would be incomplete, I''m raising the issue here to discuss it. My use case is very simple, I think. When I relate two objects, it woudl be very useful for me to have available the moment I did so, so that I can have a default order which is not the id of any of the tables, but the order of addition. Specifically, I''m thinking of books and owners, it would make sense to me to have the books a user bought ordered alphabe...
2007 Jan 19
5
Merb Init Script
I''m trying to emulate the mongrel_cluster_ctl but it takes a -c conf_file option... meaning I can run it from anywhere as long as I tell it where the conf file is. Merb doesn''t have that capability does it? (it has an additional/supplemental config like mup.conf etc) Do I have to be under the merb_app root /path/to/merb/app/ to be able to run merb? Let me know. Thanks,
2010 Apr 26
1
Dahdi will not compile on Unbuntu Studio Linux 9.10 (Karmic) 32bit
...s a 32bit guest OS running in VMware under a 64 bit windows host.. (although I'be compiled it on other distros in this config without issues. 2. This is ubuntu Studio which uses an RT (realtime kernel).. There seems to be very little aout there regarding running asterisk on RT linux... one woudl think this would have some benefits.. Big benefits.. I've always wondered. But moreso in a nn-virtual machine environment. Asterisk builds just fine and works. Kernel is : 2.6.31-9-rt (buildd at palmer) (gcc version 4.4.1 (Ubuntu 4.4.1-4ubuntu8) ) #152-Ubuntu SMP PREEMPT RT Thu Oct 15 05:01:...