search for: nik

Displaying 20 results from an estimated 186 matches for "nik".

Did you mean: nic
2006 Apr 07
3
Logging And Environment
...ot;off". I''d like to have it back on :s I have files called production.log, test.log, server.log, development.log in /myapp/log/ but they are all 0 byte files. Doing a "tail -f production.log" just brings up nothing as nothing seems to be being added to it. Help? Thanks, Nik
2011 Mar 25
2
problems with photoshop cs 2 and filters from nik software
I have a little problem with cs2 and filters from nik software(colour efex and silver efex) i linux mint 10 . when I installed the filters, who by the way works fine, cs2 started to hang when using any key like alt(I cant use the clone tool) or backslash. A message apear that says dll wrong format. after that another that says that an aplication libra...
2008 Jun 29
3
Working around/with Restful Authentication
...er_token_expires_at: nil, activation_code: nil, activated_at: nil, is_seller: false> >> u.save => false Any clues as to how I could create a user without actually being sent to the user controller''s create action? The before_save and before_create actions are private. Thanks, Nik --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send e...
2004 Apr 13
4
Dial Plan Format Strings
...entire number, like 1 + area code + number. I'd like to eliminate this by having the user just dial 9 + 7 digit number, and have asterisk put the 1 + area code (which is in a variable in extensions.conf) in front of it prior to sending the request to Voice Pulse. Is this possible? Thanks, Nik Martin
2006 Mar 06
3
Disconnect all MySQL connections
..., that i did not disconnect previous connections.... I don't know the name of this connections. How can I disconnect this "unknown" connections and drivers? if I delete all objects, the error still occurs. Exists a function which i don't know? Thanks a lot for your help. Regards Nik
2018 Mar 10
0
. Package gamlss used inside foreach() and %dopar% fails to find an object (Nik Tuzov)
Dear Nik Try the following code loo_predict.mu <- function(model.obj, input.data) { yhat <- foreach(i = 1 : nrow(input.data), .packages="gamlss", .combine = rbind) %dopar% { updated.model.obj <- update(model.obj, data = input.data[-i, ]) predict(updated.model.obj, what = &q...
2023 Mar 20
2
[Bridge] Multicast: handling of STA disconnect
Hi Nik, Flushing MDB can only be done when we are managing it per station not per port. For that we need to have MCAST_TO_UCAST, EHT and FAST_LEAVE. Here one more point is - some vendors may offload MCAST_TO_UCAST conversion in their own FW to reduce CPU. So, the best way is to have MCAST_TO_UCAST enab...
2004 May 25
6
Downgrading Asterisk
...ting, something about "ast_get_txt" not found. Recompiling and installing asterisk HEAD afterwards works just fine. As a side note, I recently upgraded my kernel to 2.4.26 and had an issue with old kernel headers, but have since resolved that prior to trying this downgrade. Any ideas? Nik
2006 Aug 16
4
How to bypass traffic control for one IP
Hi all, i have a problem: i have an adsl modem that is connected to internet. I can''t manage this modem. Between my PC and the modem i have a linux firewall that make the NAT and the traffic shapping. I have create a script that limit the bandwidth of the "external" interface of the firewall so i can manage my bandwidth for my internet application. The problem is that i need to
2010 Jan 15
5
Asterisk 1.4 or 1.6 automated install script for CentOS 5.3 or 5.4
Hi Guys, Other than than yum repository (which fails when installing freepbx with it) are there any automated install scripts out there that would install Asterisk 1.6 or 1.4 onto a CentOS LAMP system? If the script install FreePBX that would be a BONUS. Thanks, Bruce -------------- next part -------------- An HTML attachment was scrubbed... URL:
2004 Jun 24
1
Winbind/LDAP Backend question
...urg is our AD server (running windows 2003 server). The only thing that I can think of that might be bad is that it won't allow anonymous binds... yet I haven't seen any place to put in a bind password for LDAP. Does anyone know how I might be able to get this up and running? Thanks, Nik -- // Nik Reiman || nik@aboleo.net || http://www.aboleo.net \\
2004 Jun 09
0
Call Pickup problem in Asterisk with SIP phones
...Outgoing callerid="Walter Smith" <103> username=wsmith secret=****** pickupgroup=1-4 ;The phone attempting the *8 [nmartin] type=friend host=dynamic insecure=no nat=yes canreinvite=no qualify=1000 ;defaultip=192.168.30.100 dtmfmode=inband mailbox=105 context=Outgoing callerid="Nik Martin" <105> username=nmartin secret=****** pickupgroup=1-4 callgroup=1 The SIP debug: pbxMobile*CLI> -- Starting simple switch on 'Zap/1-1' pbxMobile*CLI> -- Executing Wait("Zap/1-1", "3") in new stack pbxMobile*CLI> -- Executin...
2008 Aug 08
1
transcoding to theora from quicktime using xiphqt
...irst frame of the video and "Could not open audio device." where the progress bar usually is. The video refuses to play. On RHEL5's Movie Player, the video plays, but there is no audio at all. On Fedora 9's Movie Player, I get a popup saying "Totem could not play '/home/nik/rdob.ogg'. The audio device is busy. Is another application using it?' The file plays fine in VLC on OS X and Fedora 9. How can I go about debugging this? Regards, Nik Lam Unix System Administrator Library IT Services University of Sydney
2018 Mar 09
2
Package gamlss used inside foreach() and %dopar% fails to find an object
...issue. I'm trying to get leave-one-out predicted values for Beta-binomial regression. It may be the gamlss issue because the code seems to work when %do% is used. I have searched for similar issues, but haven't managed to figure it out. This is on Windows 10 platform. Thanks in advance, Nik # -------------------------------------------------------------- library('gamlss') library('foreach') library('doParallel') registerDoParallel(cores = 4) # Generate data set.seed(314) sample.size <- 30 input.processed.cut <- data.frame(TP = round(runif(sample.size)...
2018 Mar 09
0
Package gamlss used inside foreach() and %dopar% fails to find an object
...to. Maybe use parallel::clusterExport yourself? But be a aware that passing parameters is much safer than directly accessing globals in parallel processing, so this might just be your warning to not do that anyway. -- Sent from my phone. Please excuse my brevity. On March 9, 2018 7:50:44 AM PST, Nik Tuzov <ntuzov at beacon.partek.com> wrote: > >Hello all: > >Please help me with this "can't find object" issue. I'm trying to get >leave-one-out predicted values for Beta-binomial regression. >It may be the gamlss issue because the code seems to work when...
2018 Mar 13
5
Learning advanced R
...tbooks are limited and become obsolete fast, I can focus on learning state-of-the-art packages, but for that I need to find a list of most useful general purpose packages (foreach, doParallel, etc) that is updated in real time. Does such list exist? Your recommendations are very welcome. Thanks, Nik
2004 Dec 08
12
Ethernet Channel Bank idea
Anyone ever thought about an Ethernet based channel bank? Basically a rack mount set of 24 IAXys? That would be cool, IMO. No wrangling with zaptel, etc. IAX as the * <-> Channel bank protocol. Just an idea...
2007 Aug 10
2
yaml for mysql
Hi, I''m writing my first application with RoR and would like to use the migrate files for the DB definition. Where can I find the correct syntax to use? Thank you. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this
2018 Mar 12
0
Package gamlss used inside foreach() and %dopar% fails to find an object
Hello Mikis: Thanks a lot, it worked. Could you tell me what the problem was? Regards, Nik ----- Original Message ----- From: r-help-request at r-project.org To: "r-help" Sent: Sunday, March 11, 2018 6:00:02 AM Subject: R-help Digest, Vol 181, Issue 11 Send R-help mailing list submissions to r-help at r-project.org To subscribe or unsubscribe via the World Wide Web...
2009 Sep 23
1
Maximum Likelihood Est. regarding the degree of freedom of a multivariate skew-t copula
...M: Executing the likelihood-function by it self takes half a minute. The optim() even longer. But I need several iterations. (maybe 1000 or even more) Is there a way to make it faster???? THX, John Reichenb?cher PS: The attachment are the time series, that are used data<-read.table("NIKKEI.txt", header=T) attach(data) data<-read.table("DAX.txt", header=T) attach(data) my_dax<-mean(dax) sd_dax<-sqrt(var(dax)) my_nik<-mean(nik) sd_nik<-sqrt(var(nik)) P_dax<-pnorm(dax,mean=my_dax, sd=sd_dax) P_nik<-pnorm(nik,mean=my_nik, sd=sd_nik) xi<-vector...