search for: renting

Displaying 20 results from an estimated 409 matches for "renting".

Did you mean: ranting
2007 Feb 09
2
LM Model
Dear R-Users, How can I put a pre-defined regression model into to an object of class lm in order to use the predict.lm function. A simplified example: I would normally run a regression analysis on a dataset, > germany<-lm(RENT~AGE1, in.mi01) > summary(germany) Call: lm(formula = RENT ~ AGE1, data = in.mi01) Residuals: Min 1Q Median 3Q Max
2010 Jun 09
28
Xen License
Hi Everyone, This is going to sound silly but... I''m just off the phone with a Microsoft SPLA reseller. They sell licenses to run Microsoft software in a hosted environment. I was asking about obtaining Windows licenses to run on my Xen VPS hosting solution. Maybe there is a big misunderstanding, but I''m faily sure she said that it was illegial for me to rent out Xen
2015 Feb 05
2
Another Fedora decision
> On Feb 4, 2015, at 5:43 PM, Warren Young <wyml at etr-usa.com> wrote: > > SSH as shipped on CentOS doesn?t allow 1,000 guesses per second, as this calculator assumes Hmm, just thought of a counterattack: If CentOS?s SSH currently allows 10 guesses per minute *per IP*, all you need to do to get 1,000 guesses per second is to rent time on a 6,000 machine botnet.
2015 Feb 05
2
Another Fedora decision
On 02/04/2015 07:55 PM, Always Learning wrote: > Rent ? That costs money. Just crack open some Windoze machines and do > it for free. That is what many hackers do. Those crackers who build these botnets are the ones who rent out botnet time to people who just was to get the work done. There is a large market in botnet time. > > Is this safe enough ? > >
2006 Nov 09
1
Fwd: (kein Betreff)
Perhaps someone can help this poor soul out? I don't *think* it was just spam to webmaster, but it's hard to tell through the [lack of coherent] grammar. Monty ---------- Forwarded message ---------- From: Hosting and More <info@hostingandmore.de> Date: Nov 6, 2006 3:20 PM Subject: (kein Betreff) To: webmaster@xiph.org RadioStreams rent hello We at the moment, unfortunately,
2012 Jul 24
2
QUADRATIC PROGRAMMING
hi, what code in R would I use to solve the problem below? An apartment complex has 250 apartments to rent.If they rent x apartments then their monthly profit is given by: p(x)= -8^x^2 + 3200x -80000 Thanks. [[alternative HTML version deleted]]
2010 Feb 05
2
Importing data coming from Splus into R.
Hello there, I spent all day yesterday trying to get a small data set from Splus into R, no luck! Both, Splus and R, are run on a 64-bit RedHat Linux machine, the versions of the softwares are 64-bit and are as what follows: Splus: TIBCO Software Inc. Confidential Information Copyright (c) 1988-2008 TIBCO Software Inc. ALL RIGHTS RESERVED. TIBCO Spotfire S+ Version 8.1.1 for Linux 2.6.9-34.EL,
2012 Sep 11
1
Plotting every probability curve
I don't have a logistic regression model and am trying to generate probability curves for all possible combinations of the variables. My logit model has 5+ variables, and I want to draw curves for every scenario. See code below. When home_owner is 0 and 1, I want curves. The same goes for all other variables categories, so that I have permutations for all possible combinations. I've
2004 Jan 07
0
different win machines on PDC not accessible at diffe rent times
This problem is something about SAMBA smbd. It doesn't matter whether samba runs also as WINS server. I wrote earlier: http://lists.samba.org/archive/samba/2003-December/077722.html My networks WINS server is WINDOWS 2000, not samba. I had both my PDC and BDC upgraded to 3.0.1 once. The errors accessing W2K workstation went away after downgrading both samba servers to 3.0.0. Even BDC can
2011 Jul 14
5
Splitting one column value into multiple rows
Hi i have the data in the following format: rent,100,1,common,674 pipe,200,0,usual,864 car,300,1,uncommon,392:jump,700,0,common,664 car,200,1,uncommon,864:snap,900,1,usual,746 stint,600,1,uncommon,257 pull,800,0,usual,594 where as i want the above 6 lines data into 8 lines as below (Spliting row 3 & 4 at : and sending to a new row): rent,100,1,common,674 pipe,200,0,usual,864
2014 Jun 20
1
DNS issues (my ignorance?) beating me like a rented mule.
So, I managed to get an ad controller running, but cannot seem to get it to forward dns queries to my DNS server. It resolves it's own SRV records just fine. upstream bind is 9.2 AD controller is the same DNS domain as the rest of my network (could this be the issue?) using SAMBA_INTERNAL on the AD controller. It's like I can either resolve my AD controllers SRV records or the
2008 Jan 16
4
How to test if one range of dates overlaps another?
Hi all, I have a situation with a recurring billing application where I need to test if one range of dates "overlaps" another range of dates. Does anyone know a rails find or mysql select statement that will test for this? Here are the details: * Recurringcharge items have a start_date and an end_date that represent the period of time that the charges should occur. * Statement items
2010 Jan 12
4
Are SSD disks worth the cost for server usage?
Hi, we want to upgrade our infrastructure and are considering renting two different types of server by a provider: - A: one is with 80 GB SSD (and 12 GB memory) http://www.ovh.co.uk/products/eg_ssd.xml - B: the other with 750 GB SATA2 (and 8 GB memory). http://www.ovh.co.uk/products/eg_best_of.xml The target infrastructure will host: - a few public web sites (PHP /...
2010 Jun 05
20
How many guests
Hi Everyone, I have a Dell R210 server which has a Xeon X3430 Quad Core CPU (2.4Ghz x 4) with 8GB of RAM. I intend to use the H200 controller in a RAID1 setup How many VMs do you think I''d be able to run on this machine? Is 20 pushing it? I''d say most (if not all) guests would be in PV mode. Thanks _______________________________________________ Xen-users mailing list
2001 Nov 27
3
Equations as arguments to functions
I am trying to pass an equation as an arguement to a function, which seems pretty straightforward given lazy evaluation. I constructed the following little test to make sure I sort of knew what I was doing: go <- function(X,eq) { C <<- X*2; d <<- eq} a _ rnorm(100) go(10,eq=a[.5*length(a)]+C+1) > C [1] 20 > d [1] 21.10551 > a[.5*length(a)] [1] 0.1055086 Everything
2007 Feb 09
1
subset function
Hello R-Users, I have the following problem with the subset function: See the following simple linear model. Here everything works fine: >germany<-lm(RENT~AGE1, in.mi01) However, if a use the same regression equation and only specify a subset, I get an error message: > berlin<-lm(RENT~AGE1, in.mi01, subset=C_X01=="Berlin") Error in lm.fit(x, y, offset
2009 Jun 26
1
parallel R?
Hi all, Lots of big IT companies are renting out their computing facilities. Amazon has one such service. In my understanding, this will dramatically improve the speed of my R program -- currently the cross validation and model selection part is the bottle neck. It take a few days to just finish optimal parameter tuning via CV. Could anybody...
2008 Dec 01
1
samba & ldap how work group ?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hye all, i have install samba as PDC with openldap authentification everything work fine. But i want to create diff?rent group with diff?rent privileges on folder How gestion of group work with Openldap authentification because users are not in /etc/passwd and domain group are not in /etc/group !? I don't find information about this... can
2018 Jun 08
2
C7, encryption, and clevis
On 06/08/18 15:26, m.roth at 5-cent.us wrote: > Valeri Galtsev wrote: >> On 06/08/18 13:48, m.roth at 5-cent.us wrote: >>> Frank Cox wrote: >>>>>> so if it would work, replace shortname with short and short1? >>>> >>>> With all of this hokey-pokey surrounding licensing and mac addresses, I >>>> wonder if this outfit is
2010 Jul 16
6
Video IVR Asterisk ?
Hi Is it possible to receive video calls using Asterisk and then process them as an IVR ? One of our clients wants to set-up a video IVR system in the US and we are evaluation possible options. Also, what is the bandwidth of receiving a video call in US ? What protocols and codecs are supported and does it work on DID numbers ? Can I rent a hosted solution for this ? Thanks in anticipation of