Displaying 20 results from an estimated 5000 matches similar to: "xmms plugin source ?"
2001 Jun 25
2
[OT] Re: Format comparison
merijnv@sci.kun.nl pondered the following....
Subject: [OT] Re: [vorbis] Format comparison
>Eh, just a (seemingly offtopic) question, but how do you create a 4
channel
>lp ? With just one needle ?
>-- Merijn
In a nutshell.
Normal LP has two halves in the groove - the L and R channel.
A Quad channel LP still has to 'halves' in the groove. Each channel is
actually BOTH the
2001 Jun 05
5
[new?] Streaming technique
Hi,
I have a newbie question, and a not-so-newbie one. I've just found
out about Ogg, and I haven't been able to find a clear answer in
the many webpages this proyect has (btw, why not create just one
site instead of vorbis.com, ogg-vorbis.com...).
The question is, does Ogg use perceptual coding, like mp3 does? And
if so, would it be possible to build an encoder in such a way as
to
2005 Oct 18
1
trying to build driver for hpt374 raid controler
I'm trying to build driver for hpt374 raid controler on a new installation of contOS
4.2 followin the instroctions in this thread
http://www.centos.org/modules/newbb/viewtopic.php?viewmode=flat&order=DESC&topic_id=223&forum=7
It says that I should run "yum install kernel-sourcecode" to get the files I need
and it will create the path /usr/src/linux-2.6.9-5.0.3.EL which
2010 Jun 16
2
Package development process?
Hello, All:
What thoughts might you have on "The R Software Package
Development Process"?
I'm looking for ideas, materials, references, and / or
collaborators for an article on this topic to be submitted to the
Communications of the ACM. My limited experience with other languages
such as Matlab and Python suggests that R may be fairly unique with CRAN
and this
2014 Feb 27
2
[LLVMdev] multithreaded use of llvm::sys::RemoveFileOnSignal
Hi,
I am using clang::ToolInvocation class to compile some code in-memory:
clang::tooling::ToolInvocation ti
(
compilerArgs,
new clang::EmitBCAction(),
new clang::FileManager(clang::FileSystemOptions())
);
//filename is the name of the source file, e.g. "Somefile.cpp"
//sourcecode contains the source of the file
ti.mapVirtualFile( filename,
2002 Aug 13
8
Document R sourcecode with Tex
Hi,
I'm actually afraid that this is a RTFM question - I read the manual but
didn't find anything yet... I'm looking for a way to document R sourcecode
in my thesis. Does anyone know of a tool or function which can convert or
export R sourcecode to Tex?
Thanks for any hints!
Best Regards,
Daniel
2005 Aug 22
2
Need a little kick start to compile appletalk module
RHEL 4 (and thus CentOS 4) do not have appletalk module included.
CentOSPlus rather thoughtfully has the 'unsupported' version which would
have the appletalk module but I have been unable to get the old megaraid
driver to run compiled from the kernel-devel for these 'unsupported'
kernels.
Thus I would love to simply compile the appletalk module myself from the
standard
2004 Aug 06
1
yp server ( web stats and now playing)
> I'm sure Oddsock would provide his YP-server-scripts, won't he?
>
> Otherwise: The calls to the yp-server-scripts should be fairly
> simple. Just have a look at the sourcecode ... the yp-server-part
> shouldn't be hard to find / "decode".
I hope so :)
I'm not too good with C or anything like that, so the sourcecode would
probably be a bit confusing.
2005 Aug 21
2
trying to recompile
Hi All,
I am trying to recompile the stock kernel to include XFS. At install
time of the OS I select to install the kernel source code however I do
not have a /usr/src/linux-2.6.9-5.0.3.EL-smp directory. I then learned
you must run "yum install kernel-sourcecode" to properly install the
source. When I run the command this is what happens ( see below) . The
error I get is:
warning:
2005 Jun 14
8
Help rebuilding kernel get mount error on reboot
I am attempting to recompile the kernel with the following steps.
Install kernel-sourcecode rpm
cd /usr/src/linux-2.6.9-11.EL
cp /boot/config-2.6.9-11.EL .config
make menuconfig
Device Drivers -> Character Devices -> Serial Drivers
change Max number of non legacy 8250_NR_UARTS to 36
make bzImage
make modules_install
make install
Then after rebooting and selecting my -custom
2008 Mar 20
7
Download Problems with lustre 1.6.4.3
Hello,
I''ve tried just some minutes ago to download the sourcecode of lustre from
[1], but it failed with this error:
An error occurred while processing your request.
Reference #50.663007d9.1206002944.16ba5fe1
Does anybody have some hints how to get the lustre source code then? I need
this tarball for the debian packaging.
If someone could point me to an alternative download
2005 Dec 18
3
Where is the kernel source code???
I have centOS 4 installed on my machine but some how it does not
support my TV capture card (bt878) in the kernel, so i want to
recompile the kernel to add support for my device. However, i cant find
centOS 4 kernel source code. I have read some messages in the mailing
list and someone said that i just need to
yum install kernel-sourcecode
to get the source code, i did it but i yum reported
2011 Sep 13
2
Convert "RDX" and "RDB" to ASCII format?
Dear R users and experts,
I need to modify an exisiting R function from a package. The function/
variable is inside a namespace and I have problems accessing it.
I only need to get access to to corresponding sourcecode. I localised
the "RDX" and "RDB" files. But it seems to be a binary format.
How can I convert it to an ASCII format to open and extract the code
from a text
2010 May 17
2
dovecot2beta5 lmtp
Hello,
recently I inspected the sourcecode of the lmtp server. I searched for changes
that would add return-path header.
( http://www.dovecot.org/list/dovecot/2010-February/046401.html )
But I found, that all mails are spooled via files in /tmp.
( dovecot2/srv/lmtp/commands.c ~line 695 )
has somebody experiences while delivering huge ammount of mail via
dovecot2 lmtp service?
- is it
2007 Jun 12
2
21bytes vs 38 bytes
Hi, I am developing a voip phone that uses speex v1.2b1 narrowband mode.
Libspeex decodes the 21-byte packets I recieve into 160 bytes and I can play
them fine, but when I encode, the result is 38-bytes long.
I have read that 38 bytes means that it is encoding at 15KHz, but I have set
it to nb-mode and when stepping through the libspeex encoding sourcecode, I
see that st->sampling_rate is
2007 Jul 14
2
[LLVMdev] compiling clang with a obj/ dir
I can compile LLVM using with this method:
svn co ...
cd llvm
./configure ...
make
or with that one:
svn co ...
mkdir obj
cd obj
../llvm/configure ...
make
How does the second method work with the new, experimental C
compiler, "clang" ? The doc said that you put the clang sourcecode
into llvm/tools/clang, change into this directory and simply
enter "make". This seems
2009 Jan 07
2
Obtaining the chroot-cage directory of the mailstore
Hello,
I'd like to find a function in the sourcecode which enables me to get the chroot-path of the mailstore, so I can concatenate it with the result of mail_storage_get_mailbox_path to get the full path of a mailbox within the filesystem.
Does such a function exist? Who can help me?
Thanks in advance.
Stefan
--
SIEGNETZ.IT GmbH
{ w3o-services }
Schneppenkauten 1a
D-57076 Siegen
2010 Jun 04
2
[LLVMdev] Is there a "callback optimization"?
Hi,
> 1) Knowing when to perform specialization. If the call was not inlined
> the function is probably big. Getting this wrong will generate *a lot*
> of code for very small (if not negative) speed gain.
Could you elaborate why just having (lots of) more code in the final
executable will incur a performance _penalty_?
I was thinking of something similiar, but for type-specializations of
2006 Jan 23
2
psexec unix equivalent
Hello!
I don`t know if there is a port of psexec for unix yet (haven`t followed the list for some time) - but since it has been discussed on this list several times and i didn`t find any news about the current state of the "psexec unix port"- i`d like to tell that i found a psexec equivalent by chance - WITH SOURCECODE INCLUDED !
:)
take a look at
2002 Aug 08
2
Problems with Samba 2.2.5 and Solaris 8
Hello,
we've got a Problem with our Samba-Fileserver.
Shortly I installed Samba 2.2.5 compiled under Solaris 8 with gcc version 2.95.2
19991024 (release).
We have some NT-Servers using Windows NT4 Terminal Server Edition. And there are
round about 70 Users per Server using them.
Now my Problem:
Everything works fine until one Client opens the 129th Connection to the
Samba-Server. The