similar to: Use of cruel and unusal frame sizes

Displaying 20 results from an estimated 400 matches similar to: "Use of cruel and unusal frame sizes"

2004 Sep 09
2
winbind logon username is too long
I'm using winbind to authenticate telnet session under Red Hat Enterprise 2.1 samba/winbind version 2.2.10 Domains are NT4 domains I have everything set up and configured correctly. Local users and users from trusted domains are able to log-in. I'm having a problem with the resulting username when a user logs on from a trusted domain. Local domain is phonic Trusted domain is thisted
2002 Jul 17
2
yet another Ogg Vorbis decoder.
Hi there, According the page, http://www.atoker.com/phonic/ it seems there exists Ogg Vorbis decoder in C#. Is it well known? -- ymnk --- >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-request@xiph.org' containing only the word 'unsubscribe' in the body. No
2008 Nov 03
1
qr() and Gram-Schmidt
Hi, Why the qr() produces a negative Q compared with Gram-Schmidt? (note example below, except Q[2,3]) Here is an example, I calculate the Q by Gram-Schmidt process and compare the output with qr.Q() a <- c(1,0,1) b <- c(1,0,0) c <- c(2,1,0) x <- matrix(c(a,b,c),3,3) ########################## # Gram-Schmidt ########################## A <- matrix(a,3,1) q1 <-
2009 Feb 16
1
Adjusting the Axis in a histogram to the prespecified breaks
Hello I tried a few searches on hist, histogram, equidist and space (space=0 was mentioned in one contribution), but none of that so far worked. It also says in the help "##-- For non-equidistant breaks, counts should NOT be graphed unscaled:" - which is precisely what I am looking for, but I cannot find it. I want to make a histogram using breaks which are spaced exponentially and in
2005 Nov 14
0
OggPCM format description, rev 3
jkoleszar@on2.com wrote: > I updated the wiki with another rev of this format. Updates include > support for 43 formats in 14 coding schemes, as derived from the ALSA API. As an interested bystander, I see that this proposal still has only one format and one rate field for possibly many channels. Earlier someone made the point that you might want to store main and side/back channels
2002 Jun 27
2
extension of rsync on crypted files
Hello, I am a french student and I have written a technical report on an extension of the rsync algorithm to crypted files. I started from the situation of a client machine A user who doesn't wish to save an original file v0 and its successive versions v1 v2 v3 ... on a distant server B but rather to save the private ciphering of these files on the server. Let C be the cipher algorithm and
2019 Sep 09
0
multiple instances? Updated
Hello, Thomas_B._Rücker, >> >>> I am not familiar with a file called "icecast_run.xml". >>> Could this be a local modification to your installation? >>> >>> You should be able to check which one is used by opening the >>> "icecast.bat" file that you are using to start the server. >> aha!! You nailed it! I have no idea
2004 Oct 14
0
Shorewall + Broadband + Dial-Backup
I''ve built a custom system based on Debian Sarge and shorewall 2.0.8 functioning as gateway for my local network. Everything is working perfectly, but my primary Internet uplink (Cable Broadband) is a bit flakey lately, which is why I''d like to add my ISDN card for failover dial-backup, should my primary link go down. Maybe someone could outline the caveats of such a setup or
2010 Aug 17
1
maks is going to be co-maintainer of klibc
Hi all, I wanted everyone to know that maximilian attems, of lower case fame ;) has foolishly^Wgraciously agreed to become co-maintainer of klibc. Hopefully this should let me spend more of the klibc development time I can squeeze out on productizing improvements, with maks concentrating on the ongoing maintenance work. maks of course has done most of the footwork for the last several
2012 Jan 25
0
Last Call: Who says this is not a bug in delete.response()?
On January 5, I posted here concerning this issue (https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=14767), and I have not heard any answers from people who think this is not a bug, or a simple accident in the delete.response function. The output from delete.response on a terms object alters the formula by removing the dependent variable. It removes the response from the "variables"
2010 Oct 11
0
multiple comparison correction
dear list, i just found this post in the archive: ---------------- On 23-Apr-05 Bill.Venables at csiro.au <https://stat.ethz.ch/mailman/listinfo/r-help> wrote: >:* -----Original Message-----*>:* From: r-help-bounces at stat.math.ethz.ch <https://stat.ethz.ch/mailman/listinfo/r-help> *>:* [mailto:r-help-bounces at stat.math.ethz.ch
2008 Jun 05
7
Improving data processing efficiency
Hi everyone! I have a question about data processing efficiency. My data are as follows: I have a data set on quarterly institutional ownership of equities; some of them have had recent IPOs, some have not (I have a binary flag set). The total dataset size is 700k+ rows. My goal is this: For every quarter since issue for each IPO, I need to find a "matched" firm in the same
2007 Apr 29
0
Ambisonic Systems
> I assume, somewhere, someone has a compendium of recommended hardware for ambisonics? Something to sanity check/inform equipment selections of someone building My First Ambisonics Rig? Not at all Monty. This is an important question and I am ashamed to say I can't point you to a good answer. In the meantime, have a look at Permananent Ambisonic Systems from
2008 Jan 06
0
Some repo fancy footwork?
I am looking at K12LTSP-EL5 which is Centos 5 based. Supposedly their disc2 maps to Centos 1of6 and so forth. I have a repo of the Centos 5.1 isos: /centos/5/os/i386 The question is can I put the K12LTSP disc 1 in a directory: /centos/k12ltsp-el5/i386 then with some logical link magic make this directory appear to have all 7 CDs worth of content? Or put the k12 disc 1 somewhere else
2006 Apr 05
0
Fancy MySQL footwork
Database structure as follows: t1 -> t2 -> t3 -> t4 select * from t1; +----+-------+-------+ | id | t2_id | t3_id | +----+-------+-------+ | 1 | 1 | null | | 2 | null | 1 | | 3 | null | 2 | +----+-------+-------+ select * from t2; +----+-------+ | id | title | +----+-------+ | 1 | "hat" | +----+-------+ select * from t3; +----+-------+ | id | t4_id |
2009 Apr 03
1
"factorise" variables in a data.frame
Dear list, I often need to convert several variables from numeric or integer into factors (before plotting, for instance), as in the following example, d <- data.frame( x = seq(1, 10), y = seq(1, 10), z = rnorm(10), a = letters[1:10]) d2 <- within(d, { x = factor(x) y = factor(y) }) str(d) str(d2) I'd like to write a function factorise() which takes a data.frame and
2009 Aug 20
0
No subject
leave it for another day to be sure. > It would help running the driver in debug mode > > /path/to/usbhid-ups -DDD -a upsname > > The interesting parts will have 'HIDGetDataValue' in them and a few > lines before that will tell us which report it attempted to retrieve. I've done that and included the syslog output in the same file. The logfile is attached and
2008 Jan 06
2
[LLVMdev] trouble with getelementptr
Hello, I have next code: ;begin ; ModuleID = 'sample.lz' @.str1 = internal constant [20 x i8] c"\22hello, cruel world\22" ; <[20 x i8]*> [#uses=1] @.str4 = internal constant [9 x i8] c"\22hello, \22" ; <[9 x i8]*> [#uses=1] @.str7 = internal constant [7 x i8] c"\22heya!\22" ; <[7 x i8]*> [#uses=1]
2012 Mar 20
1
overriding "summary.default" or "summary.data.frame". How?
I suppose everybody who makes a package for the first time thinks "I can change anything!" and then runs into this same question. Has anybody written out information on how a package can override functions in R base in the R 2.14 (mandatory NAMESPACE era)? Suppose I want to alphabetize variables in a summary.data.frame, or return the standard deviation with the mean in summary output.
2005 Apr 26
13
IP Tunneling
Hello I have /25 addressed on a box (virtual devices on eth0) and I want to tunnel some of these addresses to my home network. One address to my gateway (a.b.c.d, external IP) and one address to my internal network (192.168.0.0/24-style). I will use the tunnels for irc, smtp and surfing. What protocol and which technique is easiest and best to use? One more thing. I don''t want to set up