Displaying 20 results from an estimated 10000 matches similar to: "rsync version executable for Debian"
2012 Mar 27
1
Zero inflated GAMM
HI all,
I am planning to get Zuur et al.'s new book when it comes out, but until
then I was wondering if anyone could suggest examples of zero inflated or
hurdle GAMMs. I have count data with many zeros, non-linear relationships,
and site as a random effect.
Thank you!
Bert Harris, University of Adelaide
[[alternative HTML version deleted]]
2007 Nov 20
4
SETGID not being inherited
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I have an Debian system running samba 3.0.14a from sarge. It is
exporting a file system, /data. This file system has the perms 2770.
I have set the following in the smb.conf:
inherit permissions = yes
inherit acls = yes
I mount the filesystem from a linux, ubuntu, client and create a
directory. The directory comes out with perms 0770. I can
2023 Nov 03
1
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
df$LAP <- with(df, ifelse(G=='male', (WC-65)*TG, (WC-58)*TG))
That will do both calculations and merge the two vectors appropriately. It will use extra memory, but it should be much faster than a 'for' loop.
Regards,
Jorgen Harmse.
------------------------------
Message: 8
Date: Fri, 3 Nov 2023 11:10:49 +1030
From: "Md. Kamruzzaman" <mkzaman.m at gmail.com>
2023 Nov 03
2
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
Just a minor point in the suggested solution:
df$LAP <- with(df, ifelse(G=='male', (WC-65)*TG, (WC-58)*TG))
since WC and TG are not conditional, would this be a slight improvement?
df$LAP <- with(df, TG*(WC - ifelse(G=='male', 65, 58)))
-----Original Message-----
From: R-help <r-help-bounces at r-project.org> On Behalf Of Jorgen Harmse via
R-help
Sent: Friday,
2007 May 08
1
rsync fails to sync files
Hi,
I'm seeing a weird problem with rsync 2.6.9 protocol version 29 on
Debian Sarge. When copying a file from one location to another between
two Debian boxes, if destination includes a file with same size and
name, rsync fails to see that they are not exactly the same file.
The situation originates from copying a file to a place which is
periodically rsynced onwards, and the rsync
2023 Nov 03
1
[EXTERNAL] RE: I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
Yes, that will halve the number of multiplications.
If you?re looking for such optimisations then you can also consider ifelse(G=='male', 65L, 58L). That will definitely use less time & memory if WC is integer, but the trade-offs are more complicated if WC is floating point.
Regards,
Jorgen Harmse.
From: avi.e.gross at gmail.com <avi.e.gross at gmail.com>
Date: Friday,
2006 May 25
4
question about creating rails app and FTP
Hello,
I have a simple question about creating rails applications.
I am signing up with dreamhost so that i can put my rails apps on the
web (after giving up on trying to make my current VPS Plesk hosting work
with rails).
My main question is:
when creating a new rails app, can i create it using the rails command
on my computer and then upload the entire directory structure to my
domain
2006 Feb 14
9
Deploying in Dreamhost
What pain. I am ready to switch hosts. I have this app in Dreamhost
where I load the static pages just fine. The location of my rails app
is /home/username/webaddress.com Under that resides the app/, public/
and so on. Like I said I can see my static pages that I have under
public since I have in the Managed host panel the following:
Web Directory: /home/username/[ webaddress.com/public
2006 Jul 23
18
help with "rake db:migrate" error please?
Hi,
Just trying to get my first database based rails app up on
dreamhost.com. The app was working prior to putting in mysql DB usage
but I''m just stuck on getting the app working with mysql. I''ve already
created the database and can connect to it manually.
Below is the error I get after running the rake migrate. It worked OK
on my home PC environment. I did change the
2006 Aug 26
2
Dreamhost issues
Hi there!
I just have discovered this wonderful plugin a few days ago and I uploaded a
little test to my Dreamhost account. I simply got a worker that resizes an
image that the user uploads.
So this morning I launched the BackgrounDRb server on my account with the
rake task and began to upload some test images. The server daemon has been
executing until a few minutes ago, I suppose because of
2006 Apr 05
2
Typo on Dreamhost
I''ve had no success getting Typo running on my Dreamhost account. Does
anyone have a link to an FAQ on getting Typo up on Dreamhost?
Thanks.
--
Posted via http://www.ruby-forum.com/.
2006 Mar 14
5
Dreamhost Database problems
I''m working on uploading my site to dreamhost. I just setup my
production database, and gave it a host name. It said that it was
successfully created. Now, it''s been like 25 minutes, and I still can''t
connect to it. Is that normal?
How can I get my tables created? Just wait it out? I''m trying to load
it in the browser, and it says "server not
2006 Aug 16
6
Experience with ferret on Dreamhost ?
Does anybody have experience with running ferret on dreamhost ?
My app is running ok until I install the acts_as_ferret plugin, at which
point I get "Rails application failed to start properly" errors. I''ve
used script/console to confirm that I can require ''ferret'' and make a
new Index object . Everything appears to be ok in that respect.
Unfortunately
2006 Jul 27
5
Dreamhost working deploy.rb? Can anyone post/send me a copy?
Hi,
Just trying to get Capistrano working to Dreamhost. I''m hitting a
permissions issue on the reaper file at the moment.
Has anyone a copy of the capistrano DEPLOY.RB file they could post or
send me a copy of please?
Thanks
Greg
--
Posted via http://www.ruby-forum.com/.
2006 Jul 16
14
Rails, FCGI, DreamHost, and endless frustrations
Hi all!
I''m trying to deploy an application out to a subdomain at dreamhost. I am
getting the dreaded "Rails application failed to start properly" error. The
logs for my app are empty. In the DreamHost FTP app, when I look in the
error.log file (I''m guessing this the Apache error log file) I see the
following for each of my attempts:
[Sun Jul 16 12:36:32 2006]
2006 Apr 20
5
Rails, FCGI, Dreamhost
Is anybody getting acceptable performance with a Rails application on
Dreamhost? By this, I mean response times no greater than 3 seconds, and
no large numbers of FCGI processes that you have to kill manually.
If so, how?
I''ve ended up running a constant ping script (once every ten minutes),
and still have to kill some number of excess dispatch.fcgi processes
every day.
Along with
2006 Jul 21
6
Troubleshooting tips for getting Apache/RailsApp/Dreamhost
Hi,
Background: I''m currently stuck getting my basic rails application
working on dreamhost. I have gone throught the doco. Note that I can
via my unix account run "ruby script/server" and get the application
working via webbrick. The problem I am having is that trying to go to
the app via the normal apache approach my browser just sits and spins
with nothing coming
2006 Jul 05
5
How do I reset rails in production mode on DreamHost?
Hello!
I am testing rails on DreamHost.
I believe it''s running on apache.
In development mode, it ran very slowly.
So I changed it into production mode and switched to fcgi.
It''s very fast now.
But the problem is that if I add actions to a controller, it''s not
applied.
I know that in production mode, I need to restart web server.
But I don''t control the web
2007 Feb 27
5
Camping on Dreamhost - Please Help!
Hi Folks,
I''ve been trying to get camping up and running on dreamhost for the
past six hours, but have had no success. I''d really appreciate any
suggestions!
The camping gem is on the dreamhost server, but just to make sure it
wasn''t a dependency issue causing all the problems, I installed
camping + the full set of dependencies in my own gem directory (both
are on the
2006 Jul 20
4
setting site up on dreamhost
Hi,
was wondering if anyone has had any experience setting a site up on
dreamhost.com
Ive uploaded teh site, turned fastCGI on
However having a few problems gettign the site to show, when i go to
/public/ it shows the rails welcome page, should I be redirecting the
sit url to this?
thanks
scott
--
Posted via http://www.ruby-forum.com/.