Displaying 20 results from an estimated 3000 matches similar to: "Render an html according to external link"
2011 Aug 28
3
rspec-rails render_views doesn't render layouts? / how to check flash isn't rendered
I''m trying to test that "static" pages (they''re ERB, but get cached),
generated through rails, don''t render any stray flash notices left over by
the authentication system (Devise) or wherever else.
I''ve tried writing this controller spec, but it appears that response.body
only renders the template, not its layouts?
describe "so that static
2001 Feb 17
1
More comments on R-1.2.1 builds (PR#852)
On IBM RS/6000 AIX 4.2, I built R-1.2.1 with
% env CC=xlc CXX=xlC F77=f77 FC=f77 ./configure
R is now configured for powerpc-ibm-aix4.2.1.0
Source directory: .
Installation directory: /usr/local
C compiler: c89 -g
C++ compiler: xlC -g
FORTRAN compiler: f77 -g
X11 support: yes
Gnome support: no
Tcl/Tk
2005 Dec 27
6
avoid multiple render per action
Hello,
I have a hash that contains categories, and each category ID is a
hash of subcategories. What i want to do is dynamically load that
hash, loop thru it, for each category , subcat run a query against the
DB, and render a partial. The issue is i put the render:partial in a
for loop but you can only render once per action. What is the best
way to loop thru all my categories without a
2009 Aug 14
1
Embed R, and provide a function to user scripts
Hello,
I'm not sure how to go about this. Suppose I have a function
SEXP boo(SEXP x){
//do something
}
Also, I have an executable which embeds R in itself. I would like to provide
a R function to user code to call that calls 'boo' e.g
##user supplied expression that is given to me
x<-1
boo(x)
One way is to create a library with function boo that performs .Call to boo,
but is
2017 Oct 25
1
Finding the entry point function in a LLVM IR
Thank You David and Mats for the reply,
The reason I need to know that main is the entry point is as follows :
I have a dead code elimination pass that removes the function call for boo.
boo was initially called from the main function , but since the return in
the main function has no dependency on boo, boo function call is removed.
Now I want to remove the function definition of the functions
2013 Oct 08
0
icecast-2.3.99.3
Hi,
If you're just after a quick-fix for mime-types...
On 10/08/2013 04:26 PM, Yaniv Sharon wrote:
> Yes. I'm running The 2.3.99.3 win32 version.
> And if you can to provide the " mime.types "
This file will probably do as a quick workaround.
http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/conf/mime.types?revision=1305131&view=co
I strongly advise
2008 May 29
2
creating library
Hi,
I'm able to create a library with R CMD INSTALL cmd, etc... I'm just
wondering.. is it possible that when the user says library(boo), it runs
some initialization code?
I have a dumb R file that is:
print(2)
boo <- function(x){}
when I R CMD INSTALL the library, I'm able to see 2 in my unix console..
but when I do
library(boo)
in R afterwards.. I don't see
2016 Jul 01
1
multiple connection
It is possible to ask the development team of icecast to implement a solution for that?
Something like – "if the same IP pulling the stream over X instances for X time" to kick him?
I believe im not the only one that having that issue from time to time…
From: marcin at saepia.net [mailto:marcin at saepia.net]
Sent: Friday, July 01, 2016 2:05 PM
To: Yaniv Sharon
Cc:
2002 Dec 05
1
writing to gzfile: segmentation fault (PR#2347)
Full_Name: Vadim Ogranovich
Version: Version 1.6.0 (2002-10-01)
OS: Red Hat 7.1
Submission from: (NULL) (209.99.241.1)
The following sequence of commands crashes my R session. The first weirdness
happens after the second command that appears not to change the "foo.gz" file,
no error generated.
> con <- gzfile("foo.gz", open="w"); cat("goo\n",
2013 Oct 08
2
icecast-2.3.99.3
Yes. I'm running The 2.3.99.3 win32 version.
And if you can to provide the " mime.types " and " crossdomain.xml " files
by yourself it will be great.
TNX!
-----Original Message-----
From: "Thomas B. R?cker" [mailto:thomas at ruecker.fi]
Sent: Tuesday, October 08, 2013 5:58 PM
To: icecast-dev at xiph.org
Cc: Yaniv Sharon
Subject: Re: [Icecast-dev]
2007 Feb 13
2
Matrix manipulation
Hi, let's say I have this
A = matrix(c(1, 2, 4), nrow=1)
colnames(A)=c("YOO1", "YOO2", "YOO3")
# ie
# YOO1 YOO2 YOO3
#[1,] 1 2 4
HELLO <- NULL
HELLO$YOO1="BOO"
HELLO$YOO2="BOO"
HELLO$YOO3="HOO"
and I want a matrix that will sum my categorization.. how can I do it
efficiently without any loop?
#ie BOO HOO
2005 Nov 23
2
SOLVED [was Re: latex writer in gnome?]
On 11/22/05, Sharon Kimble <sharon04 at gmail.com> wrote:
> Does anybody know the gnome program that you can write in latex with please?
>
> I'm not sure but I think its in the base repo. Its not winefish as it
> (winefish) doesn't compile the source text like the program that I'm looking
>
> for does.
>
> Hopefully thanks
> Sharon.
> --
I am
2009 Jun 22
2
negation in grep
Does anybody know how to negate a string in a grep command, i.e.,
what I need is to return only strings that do NOT contain a second
string anywhere in the entire string.
for
txt <- c("boo","goo","doob","foo","boofoo")
I need a grep command that returns strings with "oo" except when "b"
is present anywhere. I know that
2016 Jul 01
0
multiple connection
If you don't want to modify sources of icecast which is non trivial I would
have recommended writing a script that fetches list of clients periodically
over icecast admin API and kills these that utilize too many connections.
If they would have keep reconnecting you should implement more advanced
solution - with total blocking on firewall or within icecast.
If you need further support,
2001 Dec 18
2
Aranda-Ornaz links for binary data
Hi,
I would like apply different link functions from Aranda-Ordaz (1981)
family to large binary dataset (n = 2000). The existing links in glm for
binomial data (logit, probit, cloglog) are not adequate for my data, and I
need to test some other transformations.
Is it possible to do this in R? And how?
Thank you for your help,
/Sharon
2003 Feb 19
2
GLM for Beta distribution
Hi R-help,
Is there such a thing as a function in R for fitting a GLM where the
response is distributed as a Beta distribution?
In my case, the response variable is a percentage ([0,1] and continuous).
The current glm() function in R doesn't include the Beta distribution.
Thank you for any help on this topic.
Sincerely,
Sharon K?hlmann
2004 Jul 19
4
TDM400P Internal Extenion Config
Hopefully someone here can save my sanity. I have been trying to solve
this problem for days now, but just cant put my finger on it. Im new to
* so I have probably done something stupid!
I have a TDM400P with one FXO module and a FXS module. The main problem
I have is not being able to get the extension attached to the FXS module
to ring or be able to make calls. It gets a dialtone fine but I
2008 Oct 16
1
apply, t-test and p-values
R 2.7.2
Windows XP
I am using apply to compute a series of Student's t-test from two matrices, sample1 and sample2.
boo<-apply(sample1,1,t.test,sample2)
I want to pick of the p-values from the tests, but can't seem to get it to work. I have tried several methods to get the values including:
boo<-apply(sample1,1,t.test$t.test,sample2)
boo<-apply(sample1,1,t.test,sample2)$t.test
2013 Oct 08
2
icecast-2.3.99.3
So there is no usage for the " mime.types " in ice win32?
-----Original Message-----
From: icecast-dev-bounces at xiph.org [mailto:icecast-dev-bounces at xiph.org] On
Behalf Of Thomas B. R?cker
Sent: Tuesday, October 08, 2013 5:09 PM
To: icecast-dev at xiph.org
Subject: Re: [Icecast-dev] icecast-2.3.99.3
Yaniv Sharon <yaniv.sharon at gmail.com> wrote:
>Hi,
>
>Where to
2006 Aug 10
0
Convergence in geese/gee
We are currently analyzing data on children clustered in day care-centers (DCC). We have tried to use geepack and gee libraries to estimate an overall incidence rate for absences (=number of absences/risk time) by specifying
geese(number.absences ~ offset(log(risktime)), id=day.care.id,
family=poisson("log"), data=dcc, corstr="exch",