Displaying 20 results from an estimated 65 matches for "eivind".
2007 Aug 07
4
Problems with raising errors on a mocked object
...m trying to mock a object to raise a certain error. By doing so I
get a ArgumentError on ActiveRecord''s save! method:
http://pastie.caboo.se/85628
I''ve tried to debug it but just can''t seem to find what I''m doing
wrong. Any help is greatly appreciated.
Cheers,
Eivind Uggedal
2003 Oct 10
0
Wierd failure when adding W2K to Samba3.0.0+LDAP Domain
...shares, print, etc...]
When I try to add W2K (BABYLON) to the domain, I get the following error:
"The following error occured attempting to join the domain "SKOGFARET":
Logon failure: unknown user name or bad password."
The wierd part is that the smbd-log shows that the user (eivind) is indeed
authenticated:
[2003/10/09 16:37:07, 3] auth/auth.c:check_ntlm_password(265)
check_ntlm_password: sam authentication for user [eivind] succeeded
No matter what I do I can't find any way to make the user more visible to
Samba, as it seems it is visible allready....
The user is...
2006 Jan 17
3
Kriging for d>3
Hi,
I'm looking for software that can perform kriging on systems with dimensionality higher than 3, say d=5.
Are anyone aware of packages in R that can do this?
Thanks,
Eivind Sm??rgrav
-------------------------------------------------------------------
The information contained in this message may be CONFIDENTIAL and is
intended for the addressee only. Any unauthorised use, dissemination of the
information or copying of this message is prohibited. If you are not the
a...
2005 Jan 12
3
samba across internett
I am quite novise to samba and networking but I have a litle timepressure as I
need two branchoffice to be connected to my server at the mainoffice
Does anyone know if it is possible to do this with samba alone or do I need
somthing extra.
Eivind
2005 Jul 20
3
Working with an ongoing call
...robably needs to be done as a combination of dialplan
logic and AGIs, but my main concern is the ability to
1) send sound to the caller of an ongoing call
2) retain control so the call can be terminated based on a timer (or whatever)
Any tips would be greatly appreciated! Thanks in advance.
--
Eivind Trondsen
"People are destined to be party animals,
and the technology will follow"
- Linus Torvalds
2018 May 18
0
drc, ggplot2, and gridExtra
...m using grid.arrange()
library(gridGraphics)
library(gridExtra)
grab <- function{
grid.echo()
grid.grab()
}
x <- rnorm(100, 1, 2)
y <- rnorm(100, 0, 0.5)
plot(x,y)
p <- grab()
a <- rnorm(20, 0, 1)
b <- rnorm(20, 1, 2)
plot(a, b)
q <- grab()
grid.arrange(p, q)
Best,
Eivind K. Dovik
Bergen, NO
> ______________________________________________
> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide co...
2004 Aug 24
2
Problems with registering new emails - imap/jfs/maildir
...3), dovecot
0.99.10 no longer reports new email even if asked... I have to restart
the mail client and
do a fresh login to notice new email.
This happens with multiple mail clients on multiple platforms, and
didn't happen before the
conversion... any suggestions on workarounds?
--
Trond Eivind Glomsr?d
Senior Software Engineer
Scali - www.scali.com
High Performance Clustering
2018 May 18
3
drc, ggplot2, and gridExtra
I have dose response data I have analyzed with the 'drc' package.
Using plot() works great. I want to arrange my plots and source
data on a single page. I think 'gridExtra' is the usual package for
this.
I could use plot() and par(mfrow=...), but then I can't put the source
data table on the page.
gridExtra provides grid.table() which makes nice graphical tables. It
2018 May 02
0
Converting a list to a data frame
...6,y=7:8))
thelist
# Creating the type-vector
type <- c()
for(i in 1:length(thelist)){
type <- c(type, rep(names(thelist)[i], sapply(thelist, nrow)[i]))
}
# Creating the data frame
df <- data.frame(type, do.call(rbind.data.frame, c(thelist, make.row.names
= FALSE)))
df
Kind regards,
Eivind K. Dovik
Bergen, NO
>
> --
> Kevin E. Thorpe
> Head of Biostatistics, Applied Health Research Centre (AHRC)
> Li Ka Shing Knowledge Institute of St. Michael's Hospital
> Assistant Professor, Dalla Lana School of Public Health
> University of Toronto
> email: kevin....
2018 May 01
0
How would I color points conditional on their value in a plot of a time series
You may also want to check this out:
plot(ttt, type = "p")
points(ttt, col = ifelse(ttt < 8, "black", "red"))
Eivind K. Dovik
Bergen, NO
On Tue, 1 May 2018, Christopher W Ryan wrote:
> Excellent! Worked like a charm. Thanks.
>
> --Chris Ryan
>
> On Tue, May 1, 2018 at 4:33 PM, William Dunlap <wdunlap at tibco.com> wrote:
>
>> The ts method for plot() is quirky. You can use the de...
2005 Feb 11
0
Multiple incomming contexts
....
How do I set up my IAX-accounts to manage this? I have tried to play around
with 'context' and 'peercontext' on the server being dialed, but no luck. Is
it legal to have multiple 'context' lines in one object?
Is what I'm trying to do possible? Any help appreciated.
Eivind Trondsen
LinuxLabs AS
--
Eivind Trondsen Tlf: +47 23 89 71 85
LinuxLabs AS Mob: +47 928 40 009
------- http://www.linuxlabs.no -------
---- Drift - Overv?kning - R?dgivning ----
2002 Aug 05
1
smbmount: mount option "noauto" causes codepage and/or iocharset to fail
...?rsm?l.txt
I want to have this mount in my /etc/fstab file, but the share won't always
be available, so I need it to be "noauto".
Smbmount is version 2.2.5,
mount is mount-2.11r,
kernel is 2.4.19 with assorted gentoo patches.
Anyone bumped into this before?
PS, not on list.
Eivind
2018 May 01
2
How would I color points conditional on their value in a plot of a time series
Excellent! Worked like a charm. Thanks.
--Chris Ryan
On Tue, May 1, 2018 at 4:33 PM, William Dunlap <wdunlap at tibco.com> wrote:
> The ts method for plot() is quirky. You can use the default method:
>
> plot(as.vector(time(ttt)), as.vector(ttt), type = "p", col=ifelse(ttt<8,
> "black", "red"))
>
>
> Bill Dunlap
> TIBCO Software
2004 Jan 07
1
Unexpected ISDN hangup on outbound call
...1,Dial(modem/g1:${EXTEN},,)
(I know i could have written NXXXXXXX but does it to easy reading)
Any tips or suggetions? I've searched the archives, but couldn't find any
suitable answer.
Please feel free to contact me on or off list.
--
With kind regards / Med vennlig hilsen
Sjur Eivind Usken
2003 Oct 26
2
setlogin failed: Function not implemented
I'm using openssh-3.7.1p2 on Linux.
I keep getting setlogin errors in /var/log/messages:
Oct 26 18:44:22 giediprime sshd[7774]: Accepted publickey for root from 127.0.0.1 port 39310 ssh2
Oct 26 18:44:22 giediprime sshd[7776]: error: setlogin failed: Function not implemented
Running LFS 4.0. Happens both on 2.6.0-test8 and 2.4.22-ac1.
When configuring openssh I get this in config.log:
2003 Dec 01
0
No subject
...ing: halden.devel.redhat.com: teg set sender to
teg@redhat.com using -f
To: "smb" <smblist@hotmail.com>
Cc: <samba@lists.samba.org>
Subject: Re: Swat and RH7.1
References: <OE69mWecm9t0CI76rOJ00000d53@hotmail.com>
Organization: Red Hat, Inc.
From: teg@redhat.com (Trond Eivind =?iso-8859-1?q?Glomsr=F8d?=)
Date: 08 Aug 2001 12:43:43 -0400
In-Reply-To: <OE69mWecm9t0CI76rOJ00000d53@hotmail.com>
Message-ID: <xuyitfysds0.fsf@halden.devel.redhat.com>
Lines: 17
User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.0.104
MIME-Version: 1.0
Content-Type: text/plain; charset=iso...
2008 Jun 04
1
OCFS2 and direct-io writes
I am looking at possibility of using OCFS2 with an existing application that
requires very high throughput for read and write file access.
Files are created by single writer (process) and can be read by multiple reader,
possibly while the file is being written. 100+ different files may be written
simultaneously, and can be read by 1000+ readers.
I am currently using XFS on a local filesystem,
2018 May 02
2
Merging dataframes
Thanks - Peter, Eivind, Rui
Sorry, I perhaps could not explain it properly in the first go.
Trying to simplify it here with an example - Say I have two dataframes as
below that are NOT equally-sized data frames (i.e., number of columns are
different in each table):
Table_A:
Email Name...
2018 May 02
3
Converting a list to a data frame
..., B = data.frame( x=5:6, y=7:8 )
)
D <- data.frame( Type = names( L )
, stringsAsFactors = FALSE
)
D$data <- L
unnest(D, data)
#> Type x y
#> 1 A 1 3
#> 2 A 2 4
#> 3 B 5 7
#> 4 B 6 8
########
On Wed, 2 May 2018, Eivind K. Dovik wrote:
> On Wed, 2 May 2018, Kevin E. Thorpe wrote:
>
>> I suspect this is pretty easy, but I'm having trouble figuring it out.
>> Basically, I have a list of data frames such as the following example:
>>
>> list(A=data.frame(x=1:2, y=3:4),B=data.frame(...
2000 Oct 30
7
Source RPM please
Hi,
I''m a long ext3 user (rpmfind.net). I propagated ext3 on some of our
server box (W3C webservers are ext3 based too now).
I might be tempted of testing out your kernel RPMs but unavailability
or the source RPM and the SMP version are definite showstoppers. Please
provide them. In the meantime I will stick to my own set of kernel ext3
RPMs at ftp://rpmfind.net/pub/veillard/ext3/