Displaying 12 results from an estimated 12 matches for "egner".
Did you mean:
agner
2005 Jun 29
3
os_types.h
Hey guys,
Maybe its cause I'm using older tools, but I've noticed a minor problem
building the ogg libraries on a mac. I'm using Codewarrior 8. In
os_types.h on line 60, it says "#include <sys/types.h>" where it should
be "#include <types.h>"
I'm guessing this isn't an issue for all compilers, just codewarrior.
Possibly only codewarrior 8
2005 Aug 22
1
Problem with security = ads
...d = 0
debug = false
}
As you can see i do not use winbind. Is the wrong, i.e. is winbind
required to authenticate users against ads ?
The configuration itself works nearly right.
When i try to access the samba server via windows is see in
the log file:
Username SIV.DE/regner is invalid on this system
When i login as user 'regner' (without domain prefix) and
password the login works successful ! I?ve tested this
behavios with several account. All work successful without
domain prefix.
Can anybody help ??
--
Mit freundlichen Gr??en
Ronny Egner
SIV.AG
K...
2011 Jul 15
2
Odd behaviour of as.POSIXct
Dear all,
how come the first loop in the below fails, but the second performs as
expected?
days <- as.Date( c("2000-01-01", "2000-01-02") )
for(day in days)
{
as.POSIXct(day)
}
for( n in 1:length(days) )
{
show(as.POSIXct(days[n]))
}
Many thanks, Jo
[[alternative HTML version deleted]]
2011 Jul 25
1
do.call in "with" construction
Dear all,
I'd appreciate any help to rectify what must be a misconception of mine how
environments work:
##########################
myEnv <- new.env()
myEnv$a.env <- 1
myEnv$symbols.env <- "a.env"
a.global <- 2
symbols.global <- "a.global"
myFun <- function(symbols){do.call("print", lapply(symbols, FUN=as.name))}
do.call("myFun",
2005 Jun 23
2
Sample accuracy in reading
Hey guys,
I've finished my work on reading vorbis files (straight reading at either
PCM sample lengths, or time lengths). However, I've run across a question.
When you call vorbis_synthesis_read, I assume that increments the internal
ptrs so you don't get the same data twice. The question is, what happens if
you call vorbis_synthesis and vorbis_synthesis_blockin? Does the next call
2011 Aug 08
1
aggregate.zoo on bivariate data
Hi,
I'm removing non-unique time indices in a zoo time series by means of
aggregate. The time series is bivariate, and the row to be kept only depends
on the maximum of one of the two columns. Here's an example:
x <- zoo(rbind( c(1,1), c(1.1, 0.9), c(1.1, 1.1), c(1,1) ),
order.by=c(1,1,2,2))
The eventual aggregated result should be
1 1.1 0.9
2 1.1 1.1
that is, in
2005 Jun 16
2
Comments in vorbisfile_example
I have a couple of questions with respect to "vorbisfile_example.c" in the
ov sdk.
1) Near the end, there is a comment that says "we don't bother dealing
with sample rate changes, etc, but you'll have to." I assume the author is
regarding to different sample rates as a whole, not dynamic sample rates. Am
I correct in that assumption?
2) That etc
2007 May 02
0
makefile help
...running linux and I'm having a problem installing syslinux 3.20 .
When I type use the "make" command in the unix folder, I get the error
"make: *** No rule to make target `bootsect_bin.o', needed by
`syslinux'. Stop.". How do I get rid of this error?
Thanks,
Jacob Egner
2011 Sep 23
1
Building R on Windows 7 -- No rule to make target `etc/GETDESC', needed by `fixetc'.
Hi all,
I have been experiencing difficulties building R (be this 2.13.1,
beta, devel, or rc) on Windows 7 64bit.
I believe I am following the manual religiously, and don't think I am
doing anything differently from the many successful build attempts in
the past. Unzipping the tarball works fine, but when I invoke make, I
get (shown for R-rc, same for 2-13.1):
2005 Jun 02
1
Lacing Values
I noticed that, when decoding an ogg vorbis file that was encoded with
the xiph library, that the comment header and setup header are encoded
on one page. Okay, the vorbis documentation says you can do this, no
problem. My question is, the lacing values seem to indicate where the
packet boundaries for the two of these are, is this required, or is this
just a hint?
Further, I'm seeing
2005 Jun 22
2
ogg_sync_pageout
It seems to me that running ogg_sync_pageout doesn't automatically advance
the page. This is good if you haven't worked with the given page, makes
coding somewhat easier. However, when does a page advance. Is it after a
call to ogg_stream_pagein?
On a side note, I need to do seeking on top of libvorbis, I'd love to use
vorbisfile but sadly I can't. Is there a reasonable way to
2006 Feb 11
16
Why does''nt rails pick up more metadata from a mysql schema?
Hi,
when I define a db column to be non-nullable or of length 20 or as
numeric, I would expect rails to validate that, but that doesn''t seem
to be the case.
Any idea why that is? The metadata is accessible, at least in the mysql case.
I am using rails 1.0 with mysql 5.
Cheers,
Mariano