Displaying 20 results from an estimated 2000 matches similar to: "[Bug 13466] New: AOL Video - assertion failure in cairo"
2008 May 02
0
[Bug 15801] New: AOL video doesn't play
http://bugs.freedesktop.org/show_bug.cgi?id=15801
Summary: AOL video doesn't play
Product: swfdec
Version: git
Platform: x86-64 (AMD64)
URL: http://video.aol.com/video/comedy-funny-cat/2018555
OS/Version: Linux (All)
Status: NEW
Severity: enhancement
Priority: medium
Component: plugin
2008 Apr 30
1
Pinch Hitter 1 is playable now, AOL Video progress
Hello!
With today's swfdec, Pinch Hitter 1 can actually be played:
http://www.addictinggames.com/pinchhitter.html
Pinch Hitter 2 still cannot get beyond the "namecheck":
http://www.addictinggames.com/pinchhitter2.html
Pinch Hitter 1 used to consume all memory in the system. AOL Video used
to do the same, but now it doesn't do anything bad (although it still
doesn't play
2007 Nov 18
2
[Bug 13293] New: _cairo_pen_find_active_cw_vertex_index failed assertion
http://bugs.freedesktop.org/show_bug.cgi?id=13293
Summary: _cairo_pen_find_active_cw_vertex_index failed assertion
Product: swfdec
Version: unspecified
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: library
AssignedTo: swfdec at lists.freedesktop.org
2008 Jan 11
2
Two regressions and one improvement
Hello!
With the current swfdec (07c006a9785a5043c0a0a4b8d78b28c0735020c4) the
youtube player shows "infinit/infinit" instead of time.
Pinch-hitter from bug 13627 has a new problem now - the only available
team is "Washington" instead of a long list.
On the positive side, AOL video doesn't hog the CPU anymore (but doesn't
play either), e.g.
2008 Feb 02
1
[Bug 14338] New: Firefox crash when viewing this flash
http://bugs.freedesktop.org/show_bug.cgi?id=14338
Summary: Firefox crash when viewing this flash
Product: swfdec
Version: unspecified
Platform: x86 (IA32)
URL: http://www.circuit-fantasia.com/collections/circuit-
collection/menus/circuit-contents.swf
OS/Version: Linux (All)
Status: NEW
2017 Dec 14
1
match and new columns
Hi Bill,
I put stringsAsFactors = FALSE
still did not work.
tdat <- read.table(textConnection("A B C Y
A12 B03 C04 0.70
A23 B05 C06 0.05
A14 B06 C07 1.20
A25 A23 A12 3.51
A16 A25 A14 2,16"),header = TRUE ,stringsAsFactors = FALSE)
tdat$D <- 0
tdat$E <- 0
tdat$D <- (ifelse(tdat$B %in% tdat$A, tdat$A[tdat$B], 0))
tdat$E <- (ifelse(tdat$B %in% tdat$A, tdat$A[tdat$C], 0))
2009 Dec 17
1
CORRECTION - Generation of Random numbers in a loop
Dear R helpers, please ignore my earlier mail. Here is the corrected mail. Please forgive me for the lapses on my part. Extremely sorry.
Here is the corrected mail.
Dear R helpers
I am having following data
Name Numbers
A11 12
A12 17
A13 0
A11 11
A12 6
A13 0
2011 Feb 20
2
concatenate vector after strsplit()
ls is a list of character vectors created by strsplit()
I want to concatenate the 1st 4 character elements of each list item as a new vector called file. I admit to being confused about list syntax even after numerous readings.
Here's what I tried:
ls <- list(c("Focused", "10k", "A12", "t04.tif", "+", "µm"),
2004 Jul 03
2
DSTEIN error (PR#7047)
Full_Name: Stephen Weigand
Version: 1.9.0
OS: Mac OS X 10.3.4
Submission from: (NULL) (68.115.89.235)
When running an iteratively reweighted least squares program R crashes and the
following is
written to the console.app (when using R GUI) or to stdout (when using R from
the command
line):
Parameter 5 to routine DSTEIN was incorrect
Mac OS BLAS parameter error in DSTEIN, parameter #0,
2010 Apr 19
1
BRugs
Hi. I am new here, and I am writing this Winbugs code with BRugs.
n=length(bi.bmi)
Lagegp=13
Lgen=2
Lrace=5
Lstra=15
Lpsu=2
#model gen x race
bi.bmi.model=function(){
# likelihood
for (i in 1:n){
bi.bmi[i]~ dbern(p[i])
logit(p[i])<- a0 + a1[agegp[i]]+a2[gen[i]]+a3[race[i]]
+ a12[agegp[i], gen[i]]
+ gam[stra[i]]+ u[psu[i],stra[i]] }
# constraints for a1, a2, a3, a12
a1[1]<-0.0
2017 Dec 14
0
match and new columns
Use the stringsAsFactors=FALSE argument to read.table when
making your data.frame - factors are getting in your way here.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Wed, Dec 13, 2017 at 3:02 PM, Val <valkremk at gmail.com> wrote:
> Thank you Rui,
> I did not get the desired result. Here is the output from your script
>
> A B C Y D E
> 1 A12 B03 C04 0.70 0 0
2017 Dec 13
2
match and new columns
Thank you Rui,
I did not get the desired result. Here is the output from your script
A B C Y D E
1 A12 B03 C04 0.70 0 0
2 A23 B05 C06 0.05 0 0
3 A14 B06 C07 1.20 0 0
4 A25 A23 A12 3.51 1 1
5 A16 A25 A14 2,16 4 4
On Wed, Dec 13, 2017 at 4:36 PM, Rui Barradas <ruipbarradas at sapo.pt> wrote:
> Hello,
>
> Here is one way.
>
> tdat$D <- ifelse(tdat$B %in% tdat$A,
2017 Dec 13
0
match and new columns
Hello,
Here is one way.
tdat$D <- ifelse(tdat$B %in% tdat$A, tdat$A[tdat$B], 0)
tdat$E <- ifelse(tdat$B %in% tdat$A, tdat$A[tdat$C], 0)
Hope this helps,
Rui Barradas
On 12/13/2017 9:36 PM, Val wrote:
> Hi all,
>
> I have a data frame
> tdat <- read.table(textConnection("A B C Y
> A12 B03 C04 0.70
> A23 B05 C06 0.05
> A14 B06 C07 1.20
> A25 A23 A12 3.51
2008 Jun 25
0
[Fwd: AOL Mail]
FYI
-------- Original Message --------
Subject: RE: AOL Mail
Date: Wed, 25 Jun 2008 13:47:06 -0500
From: Dustin Davis <dustin@txls.com>
To: "'Dale Schroeder'" <dale@BriannasSaladDressing.com>
References:
<419cf800ca3991a24f4b9829f3806aba@briannassaladdressing.com>
<145401c8d604$ccfb1780$66f14680$@com>
2017 Dec 13
3
match and new columns
Hi all,
I have a data frame
tdat <- read.table(textConnection("A B C Y
A12 B03 C04 0.70
A23 B05 C06 0.05
A14 B06 C07 1.20
A25 A23 A12 3.51
A16 A25 A14 2,16"),header = TRUE)
I want match tdat$B with tdat$A and populate the column values of tdat$A
( col A and Col B) in the newly created columns (col D and col E). please
find my attempt and the desired output below
Desired output
2011 Oct 01
1
[LLVMdev] Tablegen: RegisterInfoEmitter.cpp
Hi,
I understand the idea behind compare_numeric() is to compare strings containing digits in a special way: Do a normal string-compare up to the point where both string elemnts are numerical. Find then an outcome based on the number of consecutive digits in the strings while disregarding the value of the digits, eg a12b < a123.
I guess then this order should hold: a12 == a22 < a1b, for
2001 Dec 03
3
beginner's questions about lme, fixed and random effects
I'm trying to understand better the differences between fixed and
random effects by running very simple examples in the nlme
package. My first attempt was to try doing a t-test in lme.
This is very similar to the Rail example that comes with nlme,
but it has two groups instead of five.
So I try
a1 <- 1:10
a2 <- 7:16
t.test(a2,a1)
getting t(18)=4.43, p=.0003224. Then I try to do it
2007 Mar 16
1
ideas to speed up code: converting a matrix of integers to a matrix of normally distributed values
Hi all,
[this is a bit hard to describe, so if my initial description is
confusing, please try running my code below]
#WHAT I'M TRYING TO DO
I'd appreciate any help in trying to speed up some code. I've written
a script that converts a matrix of integers (usually between 1-10,000
- these represent allele names) into two new matrices of normally
distributed values (representing
2006 Jan 20
1
Dell PowerConnect 2724 Switch and QoS for VOIP?
Has anyone had any experience with the Dell PowerConnect 2724 Gigabit
Switch and VoIP traffic? It seems to support Class of Service (CoS),
but not full Quality of Service (QoS).
Will CoS help prioritize VoIP traffic at all? I am setting up an
asterisk PBX for 22 users with very light traffic, but I don't want
to have the call start skipping just because someone is pulling a
large
2011 Aug 05
2
R compare cells in one matrix
Good morning!
Please, could you help me with the problem?
I have a matrix *144x73.*
An example of a matrix:
[,1] [,2] [,3] [,4] [,5]
[1,] 277.4 276.24 275.62 276.55 278.05
[2,] 277.4 276.24 275.55 276.42 277.72
[3,] 277.4 276.24 275.50 276.22 277.39
[4,] 277.4 276.24 275.42 276.02 277.02
[5,] 277.4 276.22 275.37 275.82 276.64
And I want to *compare*its cells