search for: stuffs

Displaying 20 results from an estimated 36040 matches for "stuffs".

Did you mean: stuff
2008 Jul 09
2
Parsing
Dear R users, I have a big text file formatted like this: x x_string y y_string id1 id1_string id2 id2_string z z_string w w_string stuff stuff stuff stuff stuff stuff stuff stuff stuff // x x_string1 y y_string1 z z_string1 w w_string1 stuff stuff stuff stuff stuff stuff stuff stuff stuff // x x_string2 y y_string2 id1
2004 Aug 17
0
has no CRC! error messages while compiling zaptel
I get this warnings while compiling zaptel Any suggestions would be very helpfull. make -C /usr/src/linux-2.6 SUBDIRS=/usr/src/bri-stuff.0.1.0-RC4/zaptel modules make[1]: Entering directory `/usr/src/linux-2.6.8.1' CC [M] /usr/src/bri-stuff.0.1.0-RC4/zaptel/zaptel.o /usr/src/bri-stuff.0.1.0-RC4/zaptel/zaptel.c:163: warning: `fcstab' defined but not used CC [M]
2003 Aug 30
1
How to synch entire dir???
I hope someone can answer this. I saw another post about this but it had no answer. How do you exclude entire dirs??? I have RTFM, RTF FAQ, RTF Mailing List Archives, and still I can't figure it out. ugh. I am using this: rsync -avz -e ssh --exclude=/Stuff /home/user/Data/Docs/ remotePC:/home/user/Data/Docs/ but "Stuff" is always synched. The actual path to "Stuff"
2006 Aug 03
6
create or update -
Hi everyone, I''m looking for a shortcut to finding and updating or creating record depending on the results of the find. So, is there a shorter way to do it than this? @stuff = Stuff.find_by_foo_and_bar("yay","hooray") if @stuff: Stuff.update(@stuff.id, {:foo => "boo", :bar => "hoo"}) else Stuff.create({:foo => "boo",
2007 Jun 18
1
Second y-axis in xyplot (lattice) where y1 and y2 have different ranges
Hi all, I realize this is asking a lot of lattice, but I want to add a second y axis inside a xyplot and have y1 and y2 have different ranges. Given dat below, I can add a second y axis by overlaying a new plot with par(new=T) and label axis 4 with standard graphics. I've seen an example for doing something similar in xyplot even though Deepayan has indicated that lattice isn't the right
2009 Aug 27
1
generating multiple sequences in subsets of data
I'm running into a problem I can't seem to find a solution for. I'm attempting to add sequences into an existing data set based on subsets of the data. I've done this using a for loop with a small subset of data, but attempting the same process using real data (200k rows) is taking way too long. Here is some sample data and my ultimate goal >
2000 Jul 25
2
Reading files form a server in windows
Hi, I'm just wondering about file name syntax. Instead of stuff <- read.table("e:/statcourses/stuff.dat") I'd like to be able to do stuff <- read.table("ptolemy/statcourses/stuff.dat") or stuff <- read.table("ptolemy.math.waikato.ac.nz/statcourses/stuff.dat") that is, I'd like to be able to read a file from a server without necessarily
2007 Nov 01
2
Nodes and defaults question
Hi there, If I have a manifest with, say: node default { ..stuff.. } node mymachine { ..stuff.. } What would happen on mymachine: will the stuff in default be executed *as well as* the stuff in default, or only the stuff in mymachine? And, if the latter, should I move global stuff just to global scope outside of nodes? Thanks -Iwan
2002 Oct 10
1
Exclude symbolic link to a directory?
Hi folks, I have a subtle problem with rsync that I'm hoping has a simple answer. I have a directory tree (call it /local) that I synchronize every night onto a group of about 100 machines. This works great. On a few of these machines, one of the subdirectories of /local (call it /local/stuff) needs to be a symbolic link to a directory on another device. So, the situation looks like this:
2008 Sep 24
1
function can permanently modify calling function via substitute?
Dear R-devel: The following code seems to allow one function to permanently modify a calling function. I did not expect this would be allowed (short of more creative gymnastics) and wonder if it is really intended. (I can see other ways to accomplish the intended task of this code [e.g. via match.call instead of substitute below] that do not trigger the problem, but I don't think that is
2009 May 29
1
probably simple paste question
Dear R People: I have the following vector and am using the paste command: > ya [1] 57 2 8 > paste("stuff",ya,sep=" ") [1] "stuff 57" "stuff 2" "stuff 8" What I want to have is "stuff 57 2 8" I also tried: > yb <- paste(cat("stuff",ya)) stuff 57 2 8> yb character(0) I have the feeling that it's really
2006 Jul 04
1
LoginGenerator Problem
I am trying to make a barebones login system based on this example (which in turn is just standard RoR login) but when I enter a user name and password, it says the login is unsuccessful every time. I am not sure where I am going wrong. Here is all relevent information CREATE TABLE `users` ( `id` int(6) unsigned NOT NULL auto_increment, `login` varchar(20) NOT NULL default
2020 Mar 27
4
object.size vs lobstr::obj_size
Hi Tomas, On 3/27/20 07:01, Tomas Kalibera wrote: > they provide an over-approximation They can also provide an "under-approximation" (to say the least) e.g. on reference objects where the entire substance of the object is ignored which makes object.size() completely meaningless in that case: setRefClass("A", fields=c(stuff="ANY"))
2006 Apr 24
3
Regex in HTML
So, I''m trying to write a nice bit of regex to handle finding anchor tags in a bit of html. This is what I''ve got.... /<[aA][^>]*>[^<]*<\/[aA]>/ I''m planning on using this with a gsub!. Here is what it has to do.... <html><a href="http://stuff.com" class="link">Anything in here.</a></html> As you can
2009 Jun 03
3
Return variable assignments from a function
I'd like to perform return variable assignments like matlab. For example, the following function would return A, B, and c to the script that called it. ================================= function [A,B,c] = simple(m,n) A=[ 3 2; 3 3] B=m c=1:n ================================= I'd like to do similar assignments in R, but I seem to be able to only return one variable. I tried to use a
2008 May 02
1
nut: simplification of the automake stuff
Hallo. Here is a simplification of the automake stuff for nut 2.2.2. The idea is simple: libcommon.a contains stuff for the binaries libparseconf.la contains stuff for binaries and shared library Both are NOINST, automake understands perfectly our intentions. The rest is only a removal of the implicitly defined stuff. On top of the parallel build patch I got build success on all platforms
2020 Mar 27
2
object.size vs lobstr::obj_size
On 3/27/20 12:00, Hadley Wickham wrote: > > > On Fri, Mar 27, 2020 at 10:39 AM Herv? Pag?s <hpages at fredhutch.org > <mailto:hpages at fredhutch.org>> wrote: > > Hi Tomas, > > On 3/27/20 07:01, Tomas Kalibera wrote: > > they provide an over-approximation > > They can also provide an "under-approximation" (to say the
2007 Aug 27
1
Nested ZFS sharenfs exports are empty on automount clients
Hello I''ve got nested ZFS filesystems exported via NFS. They are mounted on the clients using automount (from a NIS map). But: only the root exported filesystem shows any contents on the clients. Any sub-directories it has are fine, but any sub-filesystems are empty. ie. NIS map auto.stuff contains "stuff server:/stuff/images" server% zfs get sharenfs stuff/images
2007 Aug 02
1
dovecot 1.0.2, sieve 1.0.2 and regex
I've just ported a largeish procmail script across to sieve and want to get to use wildcards in filing mail and can't seem to get regex to work. The script starts nicely with: > require ["fileinto","regex","envelope","vacation","regex"]; and a bit down these few lines comes into play: > elsif header :regex "From"
2017 Feb 22
4
question about directory size in linux..
On 2/22/2017 10:40 AM, Gordon Messmer wrote: > On 02/22/2017 06:34 AM, Jason Welsh wrote: >> How does the directory *itself* have a size of 2.8 megs? > > > If you write a large number of directory entries in a directory, the > directory will grow in order to provide storage for those directory > entries. You can imagine a directory as a text file containing all of >