Displaying 20 results from an estimated 400 matches similar to: "Problem with incremental backup - copies instead of hard links"
2005 Apr 14
3
files and directories with accented characters are destroyed
On Mac OS X (mini Mac), using rsync with --delete option to backup a
linux Box, all the file and directories with accented characters are
destroyed:
deleting Documents/Ve??lo/
deleting Documents/Ckr/marche??s_publics/
deleting Documents/Ckr/Pre??sentations/Linux_logiciels_libres(SICTIAM).sxi
deleting Documents/Ckr/Pre??sentations/Linux_logiciels_libres(SICTIAM).ppt
deleting
2012 Jun 21
2
Have download.packages consider non-CRAN repositories
Hi List,
I've set up a CRAN-like repository (not a CRAN mirror) on the local
filesystem (this will change to http in the future). R has been told
about this repository using the following entry in
R_HOME/etc/repositories:
PMR2 PMR2 file:///Users/arbeit/Documents/clarin/Open_Science/PMR2/
TRUE TRUE FALSE FALSE
Now I expected download.packages(), install.packages() etc. to look
for
2007 Feb 01
2
read.spss and encodings
Hi!
I'm having trouble with importing spss files containing non-ascii characters
(R 2.4.1, debian linux, i386). To reproduce:
Download the following file:
http://statmath.wu-wien.ac.at/data/spss/de/comphomeneu.sav
require (foreign)
Sys.setlocale (locale="C")
read.spss("comphomeneu.sav")$ARBEIT[1]
# prints:
# [1] im B\374ro
# Levels: im B\374ro zuhause
\374 of course
2007 Feb 01
0
Fwd: Re: read.spss and encodings
--- John Kane <jrkrideau at yahoo.ca> wrote:
> Date: Thu, 1 Feb 2007 09:07:11 -0500 (EST)
> From: John Kane <jrkrideau at yahoo.ca>
> Subject: Re: [R] read.spss and encodings
> To: Thomas Friedrichsmeier
> <thomas.friedrichsmeier at ruhr-uni-bochum.de>
>
> Hi Thomas,
>
> I am using R 2.4.1 on WindowsXP and I don't seem to
> be
> having any
2005 Apr 07
3
analyse des correspondances multiples
bonjour,
Je voudrais faire une analyse des correspondances multiples avec R. avec
les repr?sentation graphiques correspondantes avec R.
je ne sais pas comment proc?der ..
en vour remerciant par avance
Faouzi
2023 Apr 03
2
Let R compile for libcurl8 ?
Hi!
The same Inar reported for rawhide
(https://stat.ethz.ch/pipermail/r-devel/2023-March/082482.html)
is true for SuSE's distros.
Right now R does not compile with libcurl8, but SuSE Tumbleweed/Factory
switched to 8 a week ago.
Would be great, if the patch Inar provided could be applied to
main.
Detlef
--
"Wozu leben wir, wenn nicht dazu, uns gegenseitig das Leben
einfacher zu
2006 May 18
3
access to an ApplicationController property from a view
Hi there,
How is it possible to get access to an ApplicationController property
from a view?
Consider this (simplified) situation:
class ApplicationController < ActionController::Base
def folder_id
@folder_id = params[:id]
return @folder_id
end
end
class FolderController < ApplicationController
def show
@folder = Folder.find_by_id(folder_id)
end
end
So far,
2006 Mar 13
6
:dependent => :destroy
Hi,
There is something I don''t understand about :dependent => :destroy. I
hope someone can help me. Consider this code:
class Folder < ActiveRecord::Base
has_many :myfiles
has_many :folders
has_many :group_folders, :dependent => :destroy
validates_uniqueness_of :name, :scope => "folder_id"
validates_presence_of :name
before_destroy
2008 Dec 04
2
Cucumber and Rcov
I am now trying to get rcov to work for me, without much success. I
stole the rake task code from the cucumber site:
desc "Run all features"
task :features => "features:all"
task :features => ''db:test:prepare''
require ''cucumber/rake/task'' #I have to add this -mischa
namespace :features do
Cucumber::Rake::Task.new(:all) do |t|
2006 Jan 16
4
Question about self and private
Hi!
There''s something I don''t understand yet about static/private methods. I
hope someone can explain...
E.g.:
class SayHello
def hello(who)
puts "Hello, " + who + "!"
end
def self.say(words)
puts words
end
end
hello = SayHello.new
hello.hello "World" : Hello World!
hello.say "hi" : Error
SayHello.say
2023 Apr 03
1
Let R compile for libcurl8 ?
Am Mon, 3 Apr 2023 15:13:58 +0100
schrieb Prof Brian Ripley <ripley at stats.ox.ac.uk>:
> On 03/04/2023 14:07, Detlef Steuer wrote:
> > Hi!
> >
> > The same Inar reported for rawhide
> > (https://stat.ethz.ch/pipermail/r-devel/2023-March/082482.html)
> > is true for SuSE's distros.
> >
> > Right now R does not compile with libcurl8, but
2008 Mar 18
1
odbcQuery , memory.size
Dear R cracks
I am trying to fetch 38 Tables from 38 ESRI Geodatabases through an ODBC
connection.
I stored the 38 channels in a list and the 38 tablenames in an other list.
With a
for(i in 1:38) .... sqlFetch(....) I try to read the tables into a third
list. But always after a certain amount of rounds (mostly 16) i get
Fehler in odbcQuery(channel, query, rows_at_time) :
Calloc konnte
2006 Jan 11
3
Just update 1 field
Hi All,
I wonder how I can get rails to update just one field when I do Myfile.save.
Right now this happens when I do a Myfile.save:
UPDATE myfiles SET `folder_id` = 0, `filesize` = 1, `data` =
''2f7573722f6c6f63616c2f6d ... f7061636b65743d33324d'', `user_id` = 0,
`date_modified` = ''2006-01-11T23:33:57+0100'', `filename` =
''mysqlscripts.sql''
2007 Feb 13
1
cakePHP Programmierer gesucht
Für die Entwicklung einer Online Community suchen wir einen erfahrenen
cakePHP Programmierer in Heimarbeit und Vollzeit.
- fundierte cakePHP Kenntnisse.
- svn Routine.
- zeitlich ab sofort verfügbar.
- 2-3 Monate, ggf. länger.
- Kurz-Bewerbung per E-Mail.
- Bezahlung wahlweise pauschal nach Milestones oder Stundensatz.
Bitte senden Sie uns einen Link auf eine Demo Page Ihrer bisherigen
Arbeit,
2007 Feb 28
5
How to use find_options in multi_search
Hello everyone,
I''m using multi-search to search in some attributes of two classes. One
of the attributes is the id of the customer. For each multi_search I
want to do a give the id of the current customer as a parameter. This
should only return results for the given customer.
My current code looks like this:
Folder.multi_search(@search_query, [Myfile])
I noticed in the API you can
2004 Oct 05
2
Installation Package "gregmisc" nicht möglich?!?
Hallo zusammen.
Da ich R zur Erstellung meiner wissenschaftlichen Arbeit brauche versuchte ich dies heute zu installieren. Zunächst in der Vrsion 1.9.1 (rw1091.exe). Ich benötige das Package "gregmisc" und installierte dies von CRAN. Bei der Installation tritt folgende Meldung auf:
trying URL `http://cran.r-project.org/bin/windows/contrib/2.0/gregmisc_2.0.0.zip'
Content type
2006 Nov 01
1
Call a script after every file modification
Is there a simple possibility to hook in a script which is called every
time a file is modified via smbd, e.g. a user is adding a file via samba
share? The script should get also the filename too :-)
The intended purpose is to duplicate the write operations of samba to
another disk. Yes I know there exists RAID and Rsync and other software,
but I want to use it for longtime archiving purposes,
2008 Mar 30
7
FTP DNAT not working - "Server sent passive reply with unroutable address"
Hi all!
I am a long time lurker, but have not posted until now.
My old trusted firewall machine broke a couple of weeks ago and I replaced it
with a XEN domU that is using DNAT and has two interfaces. The firewall domU and
the FTP server domU are both guests on the same dom0. All three machines are
running Debian/etch (stable) and Shorewall has version 3.2.6.
I can''t get FTP to work
2001 Nov 09
2
spider / radar plot
Hmmmm, not quite statistics,
but can R do spider plot like shown in
http://seamonkey.ed.asu.edu/~behrens/asu/msms/student/recent_vis/spider.html
or
http://www.caesarsystems.com/Technica/spiderPlots.htm
Thanks for any hints, Mathias
--
virtual earth
Mathias Picker
Gesch?ftsf?hrer Gesellschaft f?r Wissens re/pr? sentation mbH
2012 Sep 11
1
problem starting virt-manager
Hi,
i try to run virt-manager on a SLES 11 SP1 box. I'm using kernel 2.6.32.12 and virt-manager 0.9.4-106.1.x86_64 .
The system is a 64bit box.
Here is the output:
=========================
pc56846:/media/idg2/SysAdmin_AG_Wurst/software_und_treiber/virt_manager/sles_11_sp1 # virt-manager &
[1] 9659
pc56846:/media/idg2/SysAdmin_AG_Wurst/software_und_treiber/virt_manager/sles_11_sp1 #