Displaying 20 results from an estimated 64 matches for "overus".
Did you mean:
overs
2006 Jan 23
4
Enumerable
...t; 44} );
This could even be shortened with a global shortcut to "new
Iterator(...)", such as :
$I(arguments).find( function(value) { value > 44} );
What you people are doing with prototype and scriptaculous is
impressive, but I just have a nasty feeling about (what appears to me
as) overuse of extending on built-in types.
--
cheers,
Troels
2005 May 13
3
List and Column Names in a Function?
In this simple function, how can I pass strings for index and column names
to the function? I've posted this type of question before and received no
response.
Maybe this example will be easier to understand and troubleshoot.
ds <- function(myds, vec) {myds[[vec]]*2}
ds1 <- c(X=list(1:10), Y=list(11:20))
ds(get("ds1"),get("Y"))
khobson at odot.org
Kenneth Ray
2007 Nov 17
1
Posting rules
Just a quick question. Does the list allow screenshots as part of a
post/reply? Is so, size and/or number limit? I don't want to overuse this
method and also don't want to burden anybodies bandwidth limitations, but in
this case "each picture IS worth a thousand words". Written description
wouldn't work.
Thanks,
Jim
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.winehq...
2001 Apr 05
3
Samba - slow browsing/folder opening
Hi All
I have recently started Samba on our Linux RedHat 7 server (P3-1000/512MB
with hardware SCSI RAID-1 on a Ultra-160 Adaptec card) - to serve about 15
Win9X PC's (replacing an overused Win95 machine's D drive!)
The only thing is, users have started to complain that opening folders from
their Win9X machines is much slower than it was before - i.e. there is a
noticable delay between clicking on a folder and it being loaded (three/four
seconds) whereas before (opening from th...
2008 Jan 22
1
[LLVMdev] llvm useability?
...1 with a FPE
and a VFPE. Does llvm-gcc 2.2 generates better code for them ?
I'm a bit disappointed about the llvm-gcc 2.0 I tried for my iPod Touch
as I saw it generated ARM code not very optimically : r7(apparently used
like a frame pointer even when -fomit-frame-pointer is given) largely
overused, generated code like "mov rx, imm8;orr rx, rx, imm8';add rx,
rx, ry" instead of "add rx, ry, imm8;add rx, rx, imm8'", etc.
I'm also wondering if the official SDK expected for February offers a
llvm-gcc as a c/c++ compiler. Which version ?
Regards.
On 21/01/20...
2002 Aug 17
2
Another sharing tehnique, is this possible ?
...other 10kbits etc....
(it is ok for them to get lower rates ''cause the speed is ungaranteed the user are not online 24hours a day and of course when bandwith got used to the max it will upgraded to better speed)..
In fact what I want to say is : the max rate should be X but if the link is overused u will get lower speed ...??
One way this to be done is if I use something like this :
rate 0 ceil desired-speed
but is this possible, or if not what is the lowest possible value....
- Will proirity have be taken into account so that i can say some should be served better than other ?
- the l...
2018 Dec 14
7
Documentation examples for lm and glm
FWIW, before all the examples are changed to data frame variants, I think there's fairly good reason to have at least _one_ example that does _not_ place variables in a data frame.
The data argument in lm() is optional. And there is more than one way to manage data in a project. I personally don't much like lots of stray variables lurking about, but if those are the only variables out
2023 Mar 04
1
transform.data.frame() ignores unnamed arguments when no named argument is provided
...by the one creating or modifying the data.
Some placed warnings are welcome as they tend to reflect a possibly serious error. But that error may not easily be at this point versus later in the game. If later the program tries to access the misnamed column, then an error makes sense. Warnings, if overused, get old quickly and you regularly see code written to suppress startup messages or warnings because the same message shown every day becomes something you ignore mentally even if not suppressed. How many times has loading the tidyverse reminded me it is shadowing a few base R functions? How many...
2018 Dec 15
2
Documentation examples for lm and glm
...;, package = "AER").
I would be happy to help with these if such additions were considered for
datasets/stats.
On Sat, 15 Dec 2018, David Hugh-Jones wrote:
> I would argue examples should encourage good practice. Beginners ought to
> learn to keep data in data frames and not to overuse attach(). Experts can
> do otherwise at their own risk, but they have less need of explicit
> examples.
>
> On Fri, 14 Dec 2018 at 14:51, S Ellison <S.Ellison at lgcgroup.com> wrote:
>
>> FWIW, before all the examples are changed to data frame variants, I think
>>...
2006 Mar 23
15
Is Rails Appropriate for our Project?
I realize this subject is redundant for this community, but I''m hoping
the Rails community can provide me with some additional ammunition to
help push a rails project I''m pitching over the proverbial tipping point
at my company.
The Situation:
I''m the lead architect at a large bay area retailer. My team and I are
currently suffering through the process of paying
2007 Feb 06
4
Inheritance design question
I''m new to ruby rails and am trying to design my first real rails web
app.
The app is intended to model a shareware business. It will provide a
place where users can learn about new projects, track their progress,
and provide feedback. Here''s a simplified list of the model objects that
I''ll need:
Project - has title, description, creation, modification.
Release - has
2011 Sep 13
1
[LLVMdev] git Status Update?
...> If you're coming at this from the "llvm development processes are
> broken, we should switch to git so that we can fix them" then I'd
> claim that you're doing it backwards.
That's not what I'm saying. As much as I dislike the analogy and think
it gets way overused, I think it may actually apply here. Moving from
svn to a DVCS (whichever one it is) is moving from the Cathedral to the
Bazaar.
That's the scary/unknown part. The processes can be exactly the same.
I am not advocating for any process changes. It is very important to
understand this. git...
2015 May 02
0
[ANNOUNCE] xf86-video-r128 6.10.0
Connor Behan (32):
Drop dependence on xf86PciInfo.h
Do not disable gouraud shading for a render op
Only declare PCITAG if we need it
Remove overuse of COMPOSITE_SETUP()
Fix ScreenInit with noAccel
Port to RandR
Only enable CRTCs for DPMSModeOn
Map and unmap the MMIO better
Split up output register functions
Move display enabling code to DPMS
Change register name
Get entity without code duplicati...
2016 Nov 24
0
[PATCH 0/3] virtio/vringh: kill off ACCESS_ONCE()
...I really question the whole _ONCE APIs esp with
aggregate types - these seem to generate a memcpy and
an 8-byte read/writes sometimes, and I'm pretty sure this simply
can't be read/written at once on all architectures.
So I worry it's kind of like volatile in this respect,
too easy to overuse.
> Mark Rutland (3):
> tools/virtio: fix READ_ONCE()
> vringh: kill off ACCESS_ONCE()
> tools/virtio: use {READ,WRITE}_ONCE() in uaccess.h
>
> drivers/vhost/vringh.c | 5 +++--
> tools/virtio/linux/compiler.h | 2 +-
> tools/virtio/linux/uaccess.h | 9 ++++...
2003 Nov 03
1
ROC with GLM?
Hello R-List:
Does anybody have code to optimize a logistic regression using ROC
curves? I've seen S+ code that does it but never in R.
Thanks.
__________________________________________________
You Rock! Your E-mail should, too. Visit Rock.com!
[[alternative HTML version deleted]]
2009 Jun 14
1
estimate the reliability of a scale with dichotomous items
hi,
How can I compute a reliability score of a scale consisting only of
dichotomous items?
thanks for any help!
2005 Jan 18
1
Flat Rate Long Distance Providers
We are looking for a flatrate long distance provider to integrte with a
hosted Asterisk implementation. I would like to have a SIP/IAX handoff to
whatever carrier. We want the ability to turn LD to any of our subscribers
for a flat rate as well. This request is for USA only. Int'l would be a
per minute basis.
Any sugggestions are greatly appreciated.
Thanks,
Ty Carter
2005 Dec 23
0
Windows domain clients can't connect to samba share
...log size = 50
socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
local master = No
dns proxy = No
hosts allow = 127. 192.168.0.
load printers = yes
printing = cups
printcap = cups
[tmp]
comment = tmp drive for dumping, do not overuse
path = /tmp/
writeable = Yes
guest ok = Yes
hosts allow = 192.168.0.2 192.168.0.3 192.168.0.4 192.168.0.5
192. 168.0.6 192.168.0.7
[printers]
comment = All Printers
path = /var/spool/samba
create mask = 0700
guest ok = No
pri...
2006 Feb 02
0
Re: Samba on AIX
...replace the symlink.
What you could do is create a filesytem "/opt/Samba" on another VG and mount
that. Make sure there is a "/opt/Samba" dir in the /opt filesystem.
Overmounting is a clever way to overcome your particularly common scenario
of rootvg being too darned small (or overused).
I'm copying the list so others can benefit from your scenario.
> and then place everything over there? I have planty of space on the other
> drives, it is just that the system drives are pressed for space.
>
> Thank you for your work in compiling an AIX version!
>
My plea...
2013 Jan 07
1
checker/chequer board pattern as a colour
Hi All,
is there a reasonably simple way of using a black and white chequer/checker board pattern as a colour:
barplot(mydata, col = c('red', 'blue' 'checkerboard'))
?
BW
F
--
Federico C. F. Calboli
Neuroepidemiology and Ageing Research
Imperial College, St. Mary's Campus
Norfolk Place, London W2 1PG
Tel +44 (0)20 75941602 Fax +44 (0)20 75943193
f.calboli