search for: tjw

Displaying 20 results from an estimated 30 matches for "tjw".

Did you mean: tj
1999 Apr 01
2
need help installing ESS on Win95
Has anyone successfully installed ESS on Win95? I have emacs version 19.34.6 and R version 0.63.3. The ESS README and Makefiles seem pretty Unix-specific. -- Terry J. Westley, Principal Engineer Veridian Engineering, Calspan Operations P.O. Box 400, Buffalo, NY 14225 twestley at buffalo.veridian.com http://www.veridian.com
2009 Dec 02
1
Calling R (GNU R) functions from Common Lisp, how?
...he available functions in CRAN are far richer than Lisp-Stat currently has. I want to know if there is already an existing way of calling R functions from within Common Lisp? If no, please point me to relevant resources so that I can create one (that works in a platform-independent manner). Best, tjw
2002 Feb 12
4
SRP Patch Integration?
>Simply stated, SRP is a strong password authentication protocol that >resists passive/active network attack, and when used in conjunction with >OpenSSH, solves the "unknown host key" problem without requiring host >key fingerprint verification or PKI deployment (e.g. X.509 certs). Put >another way, is there any good reason *not* to fold these patches into >OpenSSH
1998 Jun 08
27
Services not required?
I''m in the process of locking down as much of my systems here as possible as to available ports. I am down to only a handful but am not sure how much of a security risk they pose and was wondering if anyone here might be able to comment, or suggest secure versions to run: 21/FTP (WU-ftpd v2.4.2 BETA 14) 22/SSH (1.22) 23/TELNET (Netkit 0.09) 25/SMTP (Sendmail
2000 Nov 26
1
Trivial 12% performance gain in encoding
(well, YMMV, but it got me 12% on Mac OS X Public Beta on my test case). In vorbis/lib/scales.h, add the following after fromdB() #define sqrt_fromdB(x) (exp((x)*.11512925*0.5)) In vorbis/lib/psy.c at the bottom of bark_noise(), do: < noise[i]=sqrt(fromdB(v)); > noise[i]=sqrt_fromdB(v); This avoids the sqrt() call entirely by just doing it as part of the exp(). (I'd
2006 Jun 02
2
Prototype/Scriptaculous beginer question
Hi ! Sorry if my 2 questions are stupid: - Is there a way with prototype or scriptaculous libraries to get the selected text in an html page ? Or in a textarea ? - Do you know a good SDA or RSA javascript library other that this one: http://pajhome.org.uk/crypt/sda/index.html ? Best Regards -- Jean-Philippe Encausse Jp [at] encausse.net - http://www.encausse.com - http://www.jalias.com
2000 Sep 10
3
Adding oggenc support for files other than WAV?
Is anyone working on making oggenc use some nice library that reads lots of different audio file formats so that people can encode from files other than WAV? For example, the 'AudioFile' library (just found it via a search on freshmeat) reads wav, aiff, aiff-c, .au, and .snd. Maybe there are other better libraries (OpenAL, maybe), but this library does what I want (read AIFF). -tim ---
2000 Nov 25
4
Vorbis works on Mac OS X Public Beta now
I have got libao up to oggenc and ogg123 working on Mac OS X Public Beta now. I'd like to submit patches, but last time I did, they never got committed by anyone. Who is in charge of committing stuff? Does someone want to nominate themselves to review and commit my patches? The patches are briefly: - On Mac OS X dlopen() is not very well supported, so libao has been cleaned up a bit to
2002 Jun 11
3
Possible UID/GID bug in chrooted shells?
I'm stuck on a problem with rsync... We've got a chrooted shell with rsync and all the needed libs inside (and not much else). We're using rsync over ssh to send the files into this chrooted session. The rsync binary in the chrooted session is SUID root so that it can create the files with the correct UID/GID. When the following is run, it creates all the files as root.staff, not
2004 Oct 22
0
libao-0.8.5 patch
...sx/ao_macosx.c libao-0.8.5.new/src/plugins/macosx/ao_macosx.c --- libao-0.8.5/src/plugins/macosx/ao_macosx.c 2003-06-24 14:15:00.000000000 +0200 +++ libao-0.8.5.new/src/plugins/macosx/ao_macosx.c 2004-10-22 13:02:33.000000000 +0200 @@ -56,6 +56,7 @@ "macosx", "Timothy J. Wood <tjw@omnigroup.com>", "", + NULL, AO_FMT_NATIVE, 30, NULL, @@ -129,11 +130,11 @@ int ao_plugin_set_option(ao_device *device, const char *key, const char *value) { - ao_macosx_internal *internal = (ao_macosx_internal *) device->internal; - +/* ao_macosx_internal *internal...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...Ac5j zff<}^Es9ceF)W1?Yq})&hz-diE8z at g37vUtZ4sT&Y7tbda>SidXmkyVO_V}C{8jNG z3ZSTNA|}2JBJ?Y$6?>yStoS?*ia4C_9D=U?<a>3y3oA3^^J-(F`Xgzlf&-pF*LJPN zFFM1Ysvxu(vSv6#%_T;6cFh|ycG582xMPu}@+LMhX_B>RAT<@=;(`<DXE9l7Kr2n# z?tOfGl9WWgksH%TMpPSCPM$qz1zmRVrhRppr_Th)C&RmWLp--atJWR^gChiYx;CJ? zWK4ht_HX6xBc}3Xh9+n2QZ4;VeojRTN;s#Xm+Q{_Ir<qb+CX~YxK`KVc`j2SkEha( z5oH21zI$s9FU%YXGAMf6@(Oh=+E7OLUV$HhN9&jr6)IAs7{^DwGExH7{so3joJ7M2 z%xOVbY`u95bt;SB!~tYMgr5X4l)$w_a4#1DRvR^8sVqhm6uJ_(V at DhDw4Wuj1o{m9 z<lc$_9c*XNY+%-FqAXDXee-KsOgo4E96<L3pqsF;2P(jrJa#3`qDwU-#im%}dD6AO z2)...
2006 Jan 05
0
relationships in text fixtures
I''d like to be able to do something like: --- x.yml --- x1: id: 1 ... --- y.yml --- y1: id: 1 x_id: <%= xs(:x1) %> # Instead of hard coding ''1'' but I haven''t found a way to make it work yet. Is this even supported? Any hints? :) -tim
2001 Dec 24
0
static compilation
I had the same problem compiling openssh-3.0.2p1 statically on Slackware 8.0. The problem is caused by the redefinition of opterr, optind, and optopt in openbsd-compat/getopt.c (previously defined in libc). Here's how I was able to get it to build statically: 1. ./configure 2. edit openbsd-compat/getopt.c 45 //int opterr = 1, /* if error message should be printed */ 46 //
1999 Jan 18
0
[Fwd: [SECURITY] ftpwatch package has major security problems]
-------- Original Message -------- Subject: [SECURITY] ftpwatch package has major security problems Date: Sun, 17 Jan 1999 11:48:22 -0400 From: Jamie Fifield <fifield@CS.DAL.CA> Reply-To: security@debian.org -----BEGIN PGP SIGNED MESSAGE----- We have found that the ftpwatch package as distributed in Debian GNU/Linux 1.3 and later distributions has a security problem which makes it trivial
2000 Jun 26
0
Re: [vorbis] bug in glibc 2.1.2 and older
Is there any reason you guys couldn't add a corrected version of the inline(s) to your source? This would allow you to build on busted systems with full performance. You'd still want autoconf to issue a warning about the busted inline, but this would make you independent of it. -tim --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage:
2000 Aug 29
1
optmizing encoding
Is there any reason to avoid looking at optimizing the encoding process? From just a simple profile run, it looks like a big chunk of the time is in seed_curve, sqrt, dradf4 and log. Are there big changes to the encoding part that are coming that would invalidate optimizations done now? -tim --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage:
2000 Nov 17
1
Vorbis doesn't build off the head with non-standard installation directory
After updating my libtool to 1.3.5, I got ogg installed OK with: ./autogen.sh --prefix=/Local/Public/bungi/Vorbis make install But, now I'm trying to build vorbis (which exactly the same command as above) and I'm getting a failure in configure since it can't find the ogg headers. The config.log shows: configure:1888: cc -o conftest -O20 -D__NO_MATH_INLINES -fsigned-char
2000 Nov 18
0
Nevermind .... Re: Problem linking libvorbisfile on Mac OS X
I just updated to get the official beta3 tagged source and it started working. Don't know why :) -tim --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe
2001 Jan 27
1
Patch for libogg on Darwin/Mac OS X
Pretty basic. -fno-common is required to produce dynamic shared libraries on Darwin based systems. -tim Index: configure.in =================================================================== RCS file: /usr/local/cvsroot/ogg/configure.in,v retrieving revision 1.10 diff -u -r1.10 configure.in --- configure.in 2001/01/22 22:49:45 1.10 +++ configure.in 2001/01/28 03:53:05 @@
2000 Nov 18
0
Problem linking libvorbisfile on Mac OS X
I'm working on getting the Darwin/Mac OS X port of Vorbis up and running again and have run into problems building libvorbisfile. I have installed the latest libtool (1.3.5) and modified it to handle Darwin/Mac OS X better (to create shared libraries, dylibs, that can be linked against other dylibs instead of creating bundles which cannot be used as input to the linker). But, when it tries