search for: djames

Displaying 13 results from an estimated 13 matches for "djames".

Did you mean: james
2013 Jun 05
3
dashboard/passenger not connecting on port 8140
I have setup passenger w/ apache, but my dashboard is not connecting properly. I am getting the following errors em::Specification#installation_path called from /etc/puppet/puppet-dashboard/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb:93. NOTE: Gem::Specification#installation_path is deprecated, use base_dir. It will be removed on or after 2011-10-01.
2013 May 20
2
puppet pull code from svn
How can i setup puppet to pull code from A current SVN server? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at
2013 Jun 21
2
mysql access denied on dashboard puppet
i am at a lost, i setup the db schema , database.yml and etc.... passwords are correct. im getting the below error, im trying to get my dashboard to work .....help any? i also chmod the database.yml file to 660 # mysql -u dashboard -p dashboard_production Enter password: ERROR 1045 (28000): Access denied for user ''dashboard''@''localhost'' (using password:
2007 Nov 03
0
Bridge and IP
...-ports ethernet cards. I did this: each port in one bridge, then eth0 br0 eth1 br1... And I did four firewalls in this machine, then, i has four domU. In my config is attribuited one IP to each bridge, but I would like to remove all Ips from bridges. is there some problem make it? Thanks! -- Djames Suhanko LinuxUser 158.760 _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2007 Nov 08
0
Transmit time out in eth3
...ards more 1 onboard ethernet. I''m running 4 firewalls. each firewall receive 2 virtual interfaces each physical interface is in a bridge: eth0 --> br0 eth1 --> br1 ..at iface eth7. I have another machine running 4 firewalls too, but is with no problems. I thank you your help! -- Djames Suhanko LinuxUser 158.760 _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2008 Mar 25
2
creating xenbr0 manually
Hi guys, i use xen3.2. how can i manually create the xenbr0 ? which parameters have i to choose for brctl ? thanks, -- Viele Grüße Dominique Holger Schramm | Linux Administrator http://schwarz-weiss.cc/ | Life between PuTTy and reality http://ihr-linuxadmin.eu/ | Commercial Admin Service _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com
2005 Sep 08
1
Interpolating / smoothing missing time series data
The purpose of this email is to ask for pre-built procedures or techniques for smoothing and interpolating missing time series data. I've made some headway on my problem in my spare time. I started with an irregular time series with lots of missing data. It even had duplicated data. Thanks to zoo, I've cleaned that up -- now I have a regular time series with lots of NA's.
2005 Aug 27
1
ARIMA (seasonal) backcasting & interpolation
Thanks for everyone's help with zoo -- I think I've got my data set ready. (The data consists of surface weather temperatures, from 2002 to 2005, one observation per hour. Some values are missing... i.e. NA) I have three goals: GOAL #1:Get the data in proper time series form, preserving frequency information: > w4.ts <- as.ts( w3.zoo, frequency=(1/3600) ) I hope that 1/3600
2005 Sep 08
1
Tip: I() can designate constants in a regression
Just thought I would share a tip I learned: The function I() is useful for specifying constants to formulas and regressions. It will prevent nls (for example) from trying to treat the variable inside I() as something it needs to estimate. An example is below. -David P.S. This may be obvious to some, but it is not made clear to be by the documentation or common books that I reviewed.
2005 Aug 27
2
zoo, zooreg, & ISOdatetime
I create a zooreg object that runs from Jan-1-2002 0:00 to Jun-1-2005 0:00... regts.start = ISOdatetime(2002, 1, 1, hour=0, min=0, sec=0, tz="") regts.end = ISOdatetime(2005, 6, 1, hour=0, min=0, sec=0, tz="") regts.zoo <- zooreg( NA, regts.start, regts.end, deltat=3600 ) Upon inspection: > regts.zoo[1:3] 2002-01-01 00:00:00 2002-01-01 01:00:00 2002-01-01 02:00:00
2005 Nov 21
2
Multinomial Nested Logit package in R?
Dear R-Help, I'm hoping to find a Multinomial Nested Logit package in R. It would be great to find something analogous to "PROC MDC" in SAS: > The MDC (Multinomial Discrete Choice) procedure analyzes models > where the > choice set consists of multiple alternatives. This procedure > supports conditional logit, > mixed logit, heteroscedastic extreme value,
2005 Sep 08
1
Crash with seasonal ARIMA
The following command crashes my Mac OS X version of R: (I'm running R on a PowerMac G5, with 1 GB of RAM and dual processors.) > arima.0 <- arima(w3.ts,order=c(1,0,0),seasonal=list(order=c (1,0,0),period=365)) -David Here is some background: w3.ts is hourly temperature data with about 20% NA's. It contains about 3.5 years of data. I am using period = 365, which makes
2005 Aug 26
2
Creating factors from continuous variables
What is the quickest way to create many categorical variables (factors) from continuous variables? This is the approach that I have used: # create sample data N <- 20 x <- runif(N,0,1) # setup ranges to define categories x.a <- (x >= 0.0) & (x < 0.4) x.b <- (x >= 0.4) & (x < 0.5) x.c <- (x >= 0.5) & (x < 0.6) x.d <- (x >= 0.6) & (x <