Displaying 20 results from an estimated 54 matches for "possibity".
Did you mean:
possiblity
1998 Oct 13
0
Possibe Autocad R13 Fix found
I think I have a possible fix to the severe performance issues with
using Autocad R13 on Samba file Servers. Performance usually ranges in
the 12-40K/s range (according to NT Performance Monitor). This equals
roughly a 1 minute wait to load a 600K drawing into Autocad, even on
very high performance systems. Strangely enough, Autocad is able to
write the file, VERY fast to the samba server, on
2009 Jul 29
8
Adding picture to graph?
Hi
while teaching R, the question came up if it would be possible to add
a picture (saved on the HDD) to a graph (generated by plot()), which
we could not answer.
It might easily kill a clean graph, but: is there a way of doing this,
even one should not do it?
On a similar line of thought: is it possibe to define own symbols so
that they can be used in the plot function with pch=?
Rainer
2006 Nov 02
2
live dj
Hi all
i would like to know if there's a software to create a dj station taking the input from mic and stream with icecast, also i need to know if is possibe to mix mic input and ogg file and stream it togheter with icecast
thanks
__________________________________________________
Do You Yahoo!?
Poco spazio e tanto spam? Yahoo! Mail ti protegge dallo spam e ti da tanto spazio gratuito per i
2002 Sep 23
2
can wine be run as daemon
I noticed that when i launched WINWORD.EXE the first
time it took about 20 seconds to load, but when i ran
it on the 2nd time it took about 10 seconds only!, it
seems that it is now cached in the memory...I was
wodering if it is possibe to load wine as a daemon so
that it will
be faster to load? sort of like a daemon? does my
analogy here make sense?
I would appreciate any help, comments,
2005 Apr 14
2
LOADBALANCING+BRIDGING---is it possible on the same machine??
Hello All,
I have a linux box running with three NIC''s, I have used brctl tool to configure this box as a bridge, i have given it ONE logical ipaddres, Every thing is working fine, but now i am required to configure the same bridge as a LOAD BALANCER....
On some googling i found the following link
http://lartc.org/howto/lartc.rpdb.multiple-links.html
This HOWTO requires me to have one
2009 Dec 12
2
how to print out content of stylesheets in <style> tag via stylesheet_link_tag
Hi!
I''m developing facebook apps with ruby on rails. My connection is really
slow. The stylesheets do not load mosts of the time.
So i want to print out the content of my .css-files in <style> Tags. Is this
possibe with some parameter to the stylesheet_link_tag or an other tag?
Greetings from Germany
Klaus
--
You received this message because you are subscribed to the Google
2008 Apr 13
3
Matched pairs with two data frames
Hi,
I have a frame "treat" and want to find matched pairs in the data frame
"control". In the matched (combined) data frame there should be two
variables (0/1),indicating the "source" of the data (treat or control),
so that it is possibe to set a "filter" (extraxt/select data).
#Here are the dataframes (my real data frames have many variables)
treat <-
2005 Jun 13
5
formatting a 3 terabyte partition
hi.
i'm hitting a wall each time i try to format a 3 terabyte partition. i'm
able to create the partition using parted but whenever i try to create a
3 terabyte xfs or jfs or ext3 filesystem, the mounted filesystem created
is only 1 terabyte. i tried centos x86 and x86_64 4.0 but i always hit a
1 terabyte limit. please help.
1999 Jul 15
0
Strange behaviour using .Fortran
Hello everybody,
I observed some strange behaviour of R (0.64.1/Linux 2.0.25) when trying
to use FORTRAN-libraries.
I first downloaded "ALGORITHM AS 304" from StatLib. All I changed at
the code, was to substitute "REAL"-routines by "DOUBLE PRECISION".
Compiling went o.k.:
> g77 -fpic -O2 -shared -o rtest.o fisher.f
("g77 --version" gives 2.7.2.1)
2002 Jan 04
1
plotting maps?
I thought I had plotted a map of oregon and washington and overlayed some
points using R. Is that possibe since I can't seem to find the source file I
used or commands for plotting maps and points?
If not, sorry for the bother...
Thanks,
Jeff.
Jeff D. Hamann
Hamann, Donald & Associates, Inc.
PO Box 1421
Corvallis, Oregon USA 97339-1421
Bus. 541-753-7333
Cell. 541-740-5988
jeff_hamann
2004 Nov 14
1
ipfw logging
Hi all!
After installing 5.3 I've noticed
some change in firewall logging.
Prior (on 5.2) rules gave me what
I needed: trimed to 3 of the same
connection. Every new connection
on the same rule gave new log line
up to 3. I have in kernel:
FIREWALL
FIREWALL_VERBOSE
FIREWALL_VERBOSE_LIMIT=3
Now, all connections on the same
rule are trimed to 3. Is it possib-
le on 5.3 to have all
2005 Dec 20
1
throttle incoming traffic
Hi,
i''ve got traffic shaping up an running perfectly for outgoing
connections. Now i also want to control the incoming traffic rate on
mein linux gentoo box. is there any possibity for doing this without
dropping packages. for example delaying ACKs or something like this.
im running a
patched 2.6.14 kernel with
iproute 20050310-r1
any suggestions?
regards
Uwe
2008 Oct 03
1
3D scatter, groups, RdbiPgSQL...
hello,
I wish to create some 3d scatter diagrams visualising different grouped
data set by a given field in the database. I tried the scatterplot3d
package, as well as the plot3d and scatter3d functions (both within the
rgl resp. Rcmdr package). My first question is, whether is it possibe to
group data in the scatterplot3d and plot3d, because I did not succeed to
use the groups = ...
1999 Jul 15
1
Strange behavior using .Fortran
Hello everybody,
I observed some strange behavior of R (0.64.1/Linux 2.0.25) when trying
to use FORTRAN-libraries.
I downloaded "ALGORITHM AS 304" from StatLib. All I changed at
the code, was to substitute "REAL"-routines by "DOUBLE PRECISION".
Compiling went o.k. ...
> g77 -fpic -O2 -shared -o rtest.o fisher.f
("g77 --version" gives 2.7.2.1)
2004 Feb 10
2
Constructing an environment from a data.frame
Code like
df <- data.frame(x=1:10)
y <- 20:29
eval(quote(x+y), env=df)
does what you might expect: it looks for x and y in the data.frame,
and when it doesn't find y there, it looks in the parent environment.
However, sometimes I'd like to construct a single environment out of
df, so that I can pass it to nested functions and get the same
behaviour. Right now, I get the wrong
2004 Feb 10
2
Constructing an environment from a data.frame
Code like
df <- data.frame(x=1:10)
y <- 20:29
eval(quote(x+y), env=df)
does what you might expect: it looks for x and y in the data.frame,
and when it doesn't find y there, it looks in the parent environment.
However, sometimes I'd like to construct a single environment out of
df, so that I can pass it to nested functions and get the same
behaviour. Right now, I get the wrong
2004 Mar 01
4
AW: samba configuration multiple ethernet card
...card, for other shares the second,
> > and so on ... ????
> >
> > Like this
> >
> > [FOR_ALL] - Share -> The Network-Traffic is running over
> eth0 [ADMINS]
> > - Share -> The Network-Traffic is running over eth1 ...
> >
> > Is there a possibity? Maybe with Virtual Servers?
> >
> > Greeting and Thx
> >
> > Stefan
>
>
2018 Feb 02
4
Does samba support fsync() a directory?
Hi group:
I need some help!
I use samba 4.5.8
And I mount a samba directory from CentOS 7.
When I run such program in the mounted directory:
```
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <fcntl.h>
#include <string.h>
int main() {
printf("open aaa\n");
int fd = open("aaa", O_RDONLY |
2007 Mar 28
4
modprobe ifb
I''m trying to set up a traffic control on ingress attaching a egress qdisc to
the ifb device. The idea is to use a RED algorithm instead of policing
the incoming traffic. After trying with tc-red and not obtaining the
expected results, I decided to try with something easier, and use htb
as bottleneck:
ifconfig ifb0 up
tc qdisc del dev $dev ingress
tc qdisc del dev ifb0 root
tc qdisc add
1998 Oct 03
1
Serius cross-subnet browsing question
> I've been having troubles getting cross subnet browsing working in
> existance with a WinNT domain master (hey, it's not my machine).
> Basically what is happening is that I am trying to setup a VPN (which
> shouldn't complicate things) that browsing will work across. The idea is
> this:
>
> There is an office in my local city that I'm connecting San