search for: duper

Displaying 20 results from an estimated 72 matches for "duper".

Did you mean: super
2020 Mar 02
2
No CID between Asterisk using IAX trunk
    Not these particular two servers. On 02/03/20 12:16, Doug Lytle wrote: >>>> I am trying to troubleshoot two Asterisk servers that have an IAX2 >>>> trunk between them. > Carlos, > > Had caller-id ever worked between these two systems? > > Doug > -- Telecomunicaciones Abiertas de México S.A. de C.V. Carlos Chávez +52 (55)8116-9161
2008 Aug 17
1
Wichmann-Hill Random Number Generator and the Birthday Problem
...m is the interesting birthday problem. If there are M possible numbers, randomly draw N numbers from them, the average number of dupilcations D = N(N-1)/2/M. For Knuth-TAOCP and Knuth-TAOCP-2002, M=2^30, since this modulus is used. D = 46566.12 for N=10M samples. For Marsaglia-Multicarry, Super-Duper and Mersene-Twister, M=2^32. D = 11641.53 for N = 10M samples. My testing results (see below) agree with above analysis. But for Wichmann-Hill, it wasn't. Wichmann-Hill's cycle is 6.9536e12 (refer to RNG help by ?RNG and Whichmann's correction in 1984). Thus M <= 6.9536e12. D &g...
2011 Apr 21
6
ssh_authorized_key fails when home directory doesn't exist
...skipping) therefore the reports don''t show errors and give misleading errors in the reports. ssh_authorized_key{ "billys key": ensure => present, key => ''billys sshkey'', name => "super duper key", type => ssh-rsa, user =>"billy", onlyif => "test -d /home/${user}" } I am assuming that I can refer to the user with ${user} and that onlyif is a valid parameter. Is this possib...
2020 Mar 02
0
No CID between Asterisk using IAX trunk
My Asterisk 13 IAX2 trunk posted below: type=friend trunk=yes allowcallerid=yes disallow=all allow=alaw allow=ulaw allow=gsm host=my.super.duper.host username=my.super.duper.username secret=my.super.duper.secret context=sip qualify=500 qualifysmoothing=yes requirecalltoken=no trunk=yes jitterbuffer=yes forcejitterbuffer=yes maxjitterbuffer=300 maxjitterinterps=100 resyncthreshold=1500 tos=ef cos=5 Doug
1998 Nov 09
0
S-Plus RNG (fwd)
...lus RNG Mime-Version: 1.0 Content-Type: text/plain Content-Disposition: inline Mai, Someone forwarded to me your e-mail about RNGs. I do not know about S-Plus 4.5, but S-Plus 4.0 RNG was bad. It failed many of Marsaglia's DIEHARD tests. S-Plus 4.0 documentation indicates that not the Super-Duper, but a "modified" Super-Duper was used. Modifying an RNG is not a good idea. It tends to make the RNG worse. The original Super-Duper passes all the DIEHARD tests. Regards, Bruce -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list --...
2012 Oct 03
3
Fastest non-overlapping binning mean function out there?
Hi, I'm looking for a super-duper fast mean/sum binning implementation available in R, and before implementing z = binnedMeans(x y) in native code myself, does any one know of an existing function/package for this? I'm sure it already exists. So, given data (x,y) and B bins bx[1] < bx[2] < ... < bx[B] < bx[B+1], I...
2005 Nov 17
2
R questions
Dear Sir/Madam, I am a beginner in R. Here is my questions. 1. Can you give me one test for randomness (a name and descriptive paragraph is sufficient). 2. I have learned a uniform random number generator [e.g. not the algorithms: i)Wichmann-Hill, ii) Marsaglia-Multicarry, iii) Super-Duper (Marsaglia), iv) Mersenne-Twister, v) TAOCP-1997 (Knuth), or vi) TAOCP-2002 (Knuth)] . Is there any other method besides that? 3. How to generate 100 random standard normal deviates using the Box-Muller method for standard normal random deviates and sort the sequence, smallest to largest? Your ki...
2010 Jan 04
2
Existing windows server to XEN howto?
I would like to move an existing W2K3 install onto my new super duper xen box -- Installing linux based machine is no issue, it''s the windows ones that keep getting me. I have Acronis which we usually use for bare metal restores, and it seems that bare metal restores don''t want to work too well with XEN, any assistance/help/ideas ? ____________...
1999 Jun 12
0
Random numbers
...e are dumb questions: 1. It is my understanding that, among the three types of random number generators available in R now, the best one is the Marsaglia Multicarry. Is this correct? 2. How does the best RNG in R compare (in terms of quality) to the RNG in SPlus? (based on Marsaglia's Super Duper)? Does the Super-Duper in SPlus pass the MTUPLE test? 3. When running simulations in R, why would I want to use any RNG that is not the Marsaglia-Multicarry? Thanks, Ramon -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci....
2011 Mar 17
0
Gelman-Rubin convergence diagnostics via coda package
...-------# N = 12 n = c(63, 33, 18, 16, 36, 3, 33, 101, 64, 30, 10, 36) z1 = c(33, 8, 14, 4, 2, 8, 24, 76, 35, 14, 6, 22) z2 = c(37, 8, 16, 6, 3, 10, 28, 91, 56, 17, 8, 28) type = c(0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1) init0 = list(a0 = 0.0, a1 = 0.0, .RNG.seed = 1234, .RNG.name = "base::Super-Duper") init1 = list(a0 = 1.0, a1 = 1.0, .RNG.seed = 1234, .RNG.name = "base::Super-Duper") jags <- jags.model('model3.bug', data = list('N' = N, 'n' = n, 'z1' = z1,...
2006 Jun 04
3
Absolutize URLs in a string
I wonder - do we have some helper/processor/gem to automatically convert all URLs in a passed string to their canonical equivalent - i.e. with the protocol, host and such prepended based on the Rails environment. Super-duper infty for RSS feeds (I hate their requirement for canonical URLs everywhere). -- Julian ''Julik'' Tarkhanov please send all personal mail to me at julik.nl
2018 Sep 21
3
Bias in R's random integers?
Not sure what should happen theoretically for the code in vseq.c, but I see the same pattern with the R generators I tried (default, Super-Duper, and L'Ecuyer) and with with bash $RANDOM using N <- 10000 X1 <- replicate(N, as.integer(system("bash -c 'echo $RANDOM'", intern = TRUE))) X2 <- replicate(N, as.integer(system("bash -c 'echo $RANDOM'", intern = TRUE))) X <- X1 + 2 ^ 15 * (X2 >...
2015 Nov 11
2
[RFC] A new intrinsic, `llvm.blackbox`, to explicitly prevent constprop, die, etc optimizations
...cross the barrier. That's part of the normal modelling of external calls. I don't know how you could CSE it, though. Any call you can't reason about can always use inline asm to talk to external devices or issue a write syscall. I don't know how you could practically deploy a super-duper LTO mode that doesn't allow that as part of its model. The following CFG simplification would be legal, as it also fits the normal model of an external call: if (cond) y =llvm.blackbox(x) else y = llvm.blackbox(x) --> y = llvm.blackbox(x) I don't see how this is special. It just provid...
1997 Nov 21
1
R-alpha: random number generator
>1. Is the random number generator in R the same as the one in S >"Super-Duper")? The random number generator is different and also the random seed length is different. As far as I know there is no way to reproduce the same random experiments in R that you may have performed in S (but if you figure it out please let me know). However, in my fairly casual experimentatio...
2011 Jan 25
7
Recommendation for a Linux alternative to Centos - ATH9K disaster
I persuaded a reluctant friend to buy a new computer. I enthusiastically extolled the joys and benefits of Centos and promised to install it on his new machine - dual booting with Micro$oft Windoze 7. His super-duper new laptop arrived. Acer, AMD 4 core, fast etc. but not as nice looking as my impressive HP DV5. The wireless refused to connect. After 8 hours on Saturday I could sometimes see hubs in the neighbourhood but could not connect to my own hub using WPA2. iwlist wlan0 scan produced technical detai...
2007 Feb 16
1
Using Puppet with hosting Rail apps on Amazon Ec2
...th before tons of late night messy bash scripts were written to help boot up an ec2 image.... With very little effort Puppet is now installed on my desktop as a server and one of my staging servers is able to call into the puppetmaster to run a very very simple manifest. So far I am super- duper impressed. After reading through most of the wiki there was finally hope that one could stay sane while managing a small cluster of ec2 instances. Taking a few small steps I put together two definitions that would build my apache vhost files for my static/php sites, as well as my mongrel_...
2008 Mar 02
1
Question on best way of configuring this
...the Antivirus software up to date. When I do use it at the console I'm mostly doing basic video editting or transcoding (eg from transferred TiVo content). I sometimes play older games on it (eg Carmaggedon or Worms 2; I'm not into Warcrack, or City Of Heros or anything that needs a super-duper gaming card). I also have an aging Linux machine. This is my main workstation, although I primarily access it as a server (ssh into it, screen). I do occaisionally use the console as an X display, eg when scanning stuff or previewing my nroff documents before sending them to the printer. This ma...
2008 Aug 14
2
[R] RNG Cycle and Duplication (PR#12540)
...d(kind=3D"Knuth-TAOCP-2002"); sum(duplicated(runif(1e7))); #return 46415 #These collision frequency suggested there were 2^30 distinct values by=20 birthday problem. RNGkind(kind=3D"Marsaglia-Multicarry"); sum(duplicated(runif(1e7))); #return 11682 RNGkind(kind=3D"Super-Duper"); sum(duplicated(runif(1e7))); #return 11542 RNGkind(kind=3D"Mersenne-Twister"); sum(duplicated(runif(1e7))); #return 11656 #These indicated there were 2^32 distinct values, which agrees with the=20 help info. RNGkind(kind=3D"Wichmann-Hill"); sum(duplicated(runif(1e7)))...
2015 Nov 11
5
[RFC] A new intrinsic, `llvm.blackbox`, to explicitly prevent constprop, die, etc optimizations
...M has to understand that. > The liklihood of subtle bugs being introduced in functionality (IE > analysis/etc doing the wrong thing because it is not special cased) > seems super high to me. I do agree this is a concern. >> I don't know how you could practically deploy a super-duper LTO mode >> that doesn't allow that as part of its model. >> >> > Sure. > > >> The following CFG simplification would be legal, as it also fits the >> normal model of an external call: >> if (cond) y =llvm.blackbox(x) >> else y = llvm.blackbo...
2003 May 13
1
3.0alpha23 not authenticating with LDAP (RedHat 9) - Help needed!
...parameter "ldap server" I have commented out these smb.conf entries; essentially crossing my fingers that Samba knows I am using Port 389 and the server is localhost... IS THIS A SERIOUSLY WRONG ASSUMPTION??? Now, testparm is clean. Moving onto 'smbclient'... I have my super-duper-domain-joining- pseudo-user entered into smbpasswd (chosen to be 'root'). If I run smbclient as 'root' (either supplied on the command-line with '-U root', or invoking smbclient while I am the system root user), then it behaves as it should - I get a listing of available sh...