Displaying 20 results from an estimated 47 matches for "doling".
Did you mean:
doing
2007 Oct 23
6
Auto complete plugin and CSRF protection-- do you care?
Hi,
I just noticed that the auto_complete plugin does not work with the
CSRF protection in Rails 2.0. I''ve patched the plugin, but I''m
wondering if people would like to see the official plugin fixed. If
so, speak up and I will write some tests and submit the patch.
Krishna
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are
2007 Sep 05
2
Renouveau and GeForce 7950 GX2
Hello,
I have a dual-GPU card GeForce 7950 GX2 (PCI ID 10de:0294). Unfortunately, I
cannot make a dump using renouveau, because the program crashes. The
backtrace looks like this:
Program received signal SIGSEGV, Segmentation fault.
0x00000000004153af in read_fb_ramin (instanceMem=4, offset=2) at
objects.c:4089
4089 return fb[((fb_size - (ramin_block*512*1024) + ramin_inst)/4)
+
2005 Jul 13
1
problems with MNP
Hi all,
Does anybody have a hint on what may be going wrong in this R code? I
mimic the sample code from the MNP developers but I seem unable to get the
choice specific variables right.
Thanks,
Joan Serra
> rm(list=ls())
> library(foreign)
> small<-read.spss("small.sav")
Warning message:
small.sav: Unrecognized record type 7, subtype 13 encountered in system
file.
>
2007 Jan 13
0
better nested set 0.1
We are pleased to announce the 0.1 release of the plugin
betternestedset. It greatly enhances ActiveRecord''s internal
acts_as_nested_set.
Install it with:
script/plugin install
svn://rubyforge.org/var/svn/betternestedset/tags/stable/betternestedset
Join the mailing list:
http://rubyforge.org/mailman/listinfo/betternestedset-talk
Report bugs:
2007 Sep 05
1
GeForce 6150SE and Renouveau failure
Hello,
renouveau has failed on my machine with an integrated GeForce 6150SE
(nForce 430) - PCI ID 10de:03d0.
detect_devices: Creating probe window failed.
We tried to create a window by using SDL.
Our OpenGL tests require a stencil buffer whichusually
is not available with 16-bit desktop colordepth. If you are
using 16-bit colors, please try24-bit instead.
Device detection failed.
The problem
2009 Feb 17
8
Converting Acts_As_Tree to Acts_As_Nested_Set
Hello,
I have a tree structure that needs to be converted into a nested set.
A great deal of work has already been done on the tree items, so
maintaining the integrity of the id''s is mandatory. However I need
the ability to access entire branches of the tree, which is what
Nested set does. Does anyone have any suggestions on how to
efficiently transfer the tree to the nested set and
2005 Nov 23
2
USAGE OF ADD USER TO GROUP SCRIPT
Hi list
I've started playing with Samba 3.0.20b (compiled with only with
--with-acl-support). It's a fresh install on a clean machine and samba is
setup as a Standalone server, I've tried using the TDBSAM and SMBPASSWD
backends (don't have access to an LDAP server). At the moment I am testing
- I have not got as far as using any of the new privilege options. All
administration of
2005 Feb 03
2
People with applications needing directories containing large numbers of files.
...branch
may hold the fix for this problem, so I'd like to request
people who need this functionality to give it a try.
The key was fixing the directory handling to read only
the current list requested instead of the old (up to 3.0.11)
behaviour of reading the entire directory into memory before
doling out names. Normally this would have broken OS/2
applications which have *very* strange delete semantics :-),
but by stealing logic from Samba4 (thanks tridge) I think
the current code in SVN handles this correctly.
So here's how to set up an application that needs large
number of files per dir...
2001 Mar 02
3
Preloading WINS registrations
I have a couple of Samba boxes, one of which is dedicated to WINS. The other I dole out anti-virus stuff to 3,500 odd PCs from.
This second one will disappear from the WINS server from time to time which is a bit of a pain. I use nmblookup -R -U <wins_ip> <2nd_box_ip> to test for it. All clients are configured as "P" nodes so WINS is a bit essential. To bring it back I
2003 Apr 11
4
Can I improve the efficiency of my scan() command?
Hi,
Suppose I use the following codes to read in a data set.
###############################################
> rating <- scan("../Data/Rating.csv",
+ what = list(
+ usage = "",
+ mileage = 0,
+ sex = "",
+ excess = "",
+ ncd = "",
+
2005 Feb 03
2
Large numbers of files in a directory - take #2 :-)
...branch
may hold the fix for this problem, so I'd like to request
people who need this functionality to give it a try.
The key was fixing the directory handling to read only
the current list requested instead of the old (up to 3.0.11)
behaviour of reading the entire directory into memory before
doling out names. Normally this would have broken OS/2
applications which have *very* strange delete semantics :-),
but by stealing logic from Samba4 (thanks tridge) I think
the current code in SVN handles this correctly.
So here's how to set up an application that needs large
number of files per dir...
2000 Apr 27
1
quit(save=default??)
Somehow I've inadvertently configured the default behavior on quit()
to be save="no" whether I'm in batch or interactive (No... I'm not
setting the --no-save option). I am running R version 1.0.0. I've
searched for info on how to reset things to behave as advertised, but no
luck. Anybody have a clue?
Thanks, Pierre
--
2005 May 24
1
contourLines() starts a plot device
I want to use contourLines() to get contour line coordinate vectors,
but I don't want to make a plot. However contourLines() insists on
opening a graphics device. Is there a way tell it not to do this?
> version
platform i686-pc-linux-gnu
arch i686
os linux-gnu
system i686, linux-gnu
status Patched
major 2
minor 1.0
year 2005
month 04
day 20
language R
2010 Aug 13
2
Kalman filter
Dear All,
Could anyone?give me a hand?to suggest few packages in R to running Kalman
prediction and filtration ?
Thanks
Fir
2011 Sep 07
0
Setting specific path for home, netlogon and profile
Hello.
I have tried every things but I can't make it work.
On the server
I want home for user FRED physically in /data/samba/home/FRED
I want profile for user FRED physically in /data/samba/profile/FRED/linux ( when connecting from his laptop under linux )
I want profile for user FRED physically in /data/samba/profile/FRED/WinXP ( when connecting from his laptop under windows XP )
I
2004 Apr 02
3
Doing SQL GROUP BY in R
I want a list of the number of times some factor levels appear together,
similar to the following SQL statement:
SELECT A, B, COUNT(C) FROM TBL GROUP BY A, B
How do I do that with a data.frame in R?
Thanks,
Jesper Frickmann
Statistician, Quality Control
Novozymes North America Inc.
77 Perry Chapel Church Road
Franklinton, NC 27525
USA
Tel. +1 919 494 3266
[[alternative HTML version deleted]]
2002 Aug 15
2
complex splits
Hi everyone,
I'm having trouble figuring out how to split a dataframe more than once.
Let's say I have a dataframe d with a certain column called splitcol
composed of four possible ordinal values. The same dataframe has
two other columns, col1 and col2, that have one of two possible values
each. I'd like to split d$splitcol based on col1 and col2 so I can report
frequencies of the
2002 Feb 14
1
immortal connections
I have several data input functions that include a construct like
the following:
indat <- function(stuff) {
[...]
awkp <- paste("awk ...yada yada...", stuff, etc.)
scan(pipe(awkp),quiet=TRUE)
}
I use these functions a lot, and as I do, a lengthening list of
closed, but undestroyed, connections accumulates. Ultimately this
appears to stuff things up and cause
2004 Apr 20
2
Creating variable names
My apologies for asking what is doubtless a dumb question, but I have
scant experience in R.
It would be very convenient in doing lots of plots to be able to do them
in a loop that stepped through a vector of variable names. For example
one could say
x<-("mydates")
y<-c("foo1","foo2","foo3") #where "foon" were vectors
2008 Dec 03
3
Yum upgrade inside firewall
We have several CENTOS 4.X which inside Firewall.? I can NOT run "yum" inside firewall to upgrade O.S. to new release.
?
Does there has way I can download all RPM to otherside firewall server then transfer those files into servers inside firewall and upgrade.
?
Anyone have procedure dicuments or website can be reference?
?
Thanks.