Displaying 20 results from an estimated 20000 matches similar to: "Safely Allow Embedded Media on User Pages"
2006 Jul 07
3
Send a 30 Second Clip of an mp3
On my site I''m allowing users to upload songs in mp3 format. Members
can download the full song, but on public pages I would like to use a
flash player to play a 30 second clip of the song and/or allow
downloading of a 30 second mp3 snippet. The songs are stored above the
web root directory, and I use the send_file method for the full file
downloads for members.
My question is,
2006 May 31
1
embedding link_to''s as part of rendered text.
Hi,
I''d like to be able to do a database query, fetch some text, and add an
''Accept Request'' and ''Deny Request'' within the text. Both of these would be
links so if the user were to click on them, they would essentially send POST
requests back to the server. Since this is dynamic, I wanted to know the
safest/best approach in embedding these links
2011 Aug 25
7
How to safely embed JSON object in HTML document
Hi all,
I''m working on a Backbone.js single page app with Rails 3.1, and in an
attempt to save on HTTP requests, I want to embed initial data set in
a HTML document that is sent back to the browser after successful
login.
I was thinking I can simply convert my ruby object to JSON, then HTML
escape resulting string of JSON, and then use that as a value for
JavaScript variable. Something
2004 Aug 06
5
streaming ogg player embedded in web page
Hi List,
For the last week I have been have playing with icecast 2.0.0 and ices
for a streaming project I am working. The streaming is working with
multiple sources and fallback using XMMS and Winamp as the clients. All
work splendidly.
Next on my todo list is find a simple Ogg player that I can embed in a
webpage and play from the icecast stream.
I have so far looked at jlGui Applet 2.2 which
2004 Jan 07
3
embedded vorbis player?
hello :-)
i would like to publish a recorded interview on my
website using the ogg vorbis format;
i would like to know if it's possible to sort of embed
a multi-platform vorbis player into a webpage, so that
visitors can click on 'play' and hear the recording;
like for instance you can with the macromedia flash
player;
/bruno
__________________________________
Do you Yahoo!?
2006 Feb 08
1
floppy's led doesn't turn off. Can I safely pull off the floppy media?
syslinux 3.11 (from debian's 3.11-3 package) does it job. The machine boots as expected
with an 1.44 floppy. Yet the floppy driver's led doesn't turn off.
1) Is this a syslinux issue?
2) Can I safely remove the boot floppy (media) without dameging it?
From memory:
$ cat syslinux.cfg
say linux 2.6.14 (probably with debian modifications)
default linux
append root=/dev/nfs
2008 Mar 11
1
Which native dlls can be safely embedded?
When I heard you can use original Windows dlls in Wine, I wondered if
there is a list of dlls for which that makes sense. Well, I still
wonder. Is there something like that?
2003 Aug 26
1
Getting out of an embedded function safely - use try?
Helpers.
An instrument sends me data that is mostly nonlinear. I have a group of
functions to manipulate this data so that it is useful to the user. One
of them involves a nls model that called to fit a line to the data and
returns the fits. This works well 99 out of 100 times. Occasionally, the
sensor sends some bad data to which a nls model cannot be fit. When that
happens, the nls function
2012 Feb 01
3
Crash in R using embedded.
Hi,
I'm new to R, and am trying to embed R into another application.
I'm calling gev.fit() from the ismev package, and it is crashing somewhere
inside it.
gdb is not catching it, and valgrind is not showing any memory corruption
issues.
I suspect it's memory corruption, because it doesn't crash in exactly the
same spot each time.
I'm running R 2.12.2 on a 64 bit linux (Ubuntu
2012 May 08
3
[LLVMdev] [PATCH][RFC] Add llvm.codegen Intrinsic To Support Embedded LLVM IR Code Generation
Sorry Tobias, I'm not in favor of this change. From what I can tell, this enables some features which can implemented via other means. It adds all kinds of complexity to LLVM and I'm also highly concerned about bitcode that can embed illegal (or worse malicious) code using this feature.
Unless Chris says otherwise, we can consider this proposal dead. Sorry.
Evan
On May 7, 2012, at
2006 Jan 28
2
Creating html e-mails with embedded graphics
I am new to RoR and I have a new project for which I''d like to use it.
I have created a short list of the important functionality I need and it
seems like everything is covered except one thing:
I need to generate and send mime-encoded e-mails with a plain text part,
an HTML part with embedded graphics, and possibly an attachment.
In the old days (up until last week) I would have
2012 May 08
4
[LLVMdev] [PATCH][RFC] Add llvm.codegen Intrinsic To Support Embedded LLVM IR Code Generation
On May 8, 2012, at 2:08 AM, Tobias Grosser wrote:
> On 05/08/2012 05:13 AM, Evan Cheng wrote:
>> Sorry Tobias, I'm not in favor of this change. From what I can tell, this enables some features which can implemented via other means. It adds all kinds of complexity to LLVM and I'm also highly concerned about bitcode that can embed illegal (or worse malicious) code using this
2009 Sep 04
3
eps file with embedded font
Dear list,
I am trying to make eps file with embedded font.
I use:
postscript("ranking-exp-all.eps", horizontal=TRUE, onefile=FALSE,
paper="special", height=8, width=12, family="Helvetica")
# plot stuff
dev.off()
since R does not embed font, I then use:
embedFonts(file="indegdistr.eps", outfile="indegdistrEMB.eps",
2013 Feb 09
2
character strings with embedded commands: perl "/gee" ?
dear R experts---I am trying to replicate a perl feature. I want to be
able to embed R commands inside a character string, and have the
string be printed with the command executed. my perl equivalent is
my $a=10;
my $teststring = "the expression, $a+1, is ::$a+1::, but add one
more for ::$a+2::\n";
$teststring =~ s/::(.*?)::/$1/gee;
print $teststring;
of course, R does not use
2012 May 09
0
[LLVMdev] [PATCH][RFC] Add llvm.codegen Intrinsic To Support Embedded LLVM IR Code Generation
Hi Evan,
Thanks for your time.
You're adding a feature that embed code inside a module. When the module is
> loaded, is the string going to be verified? How are users of LLVM IR able
> to ensure the embedded string is safe? I am not saying it cannot be done.
> This feature just increases the risk and that again raises the bar for
> acceptance.
>
I think the embedded string in
2012 May 08
0
[LLVMdev] [PATCH][RFC] Add llvm.codegen Intrinsic To Support Embedded LLVM IR Code Generation
On 05/08/2012 05:13 AM, Evan Cheng wrote:
> Sorry Tobias, I'm not in favor of this change. From what I can tell, this enables some features which can implemented via other means. It adds all kinds of complexity to LLVM and I'm also highly concerned about bitcode that can embed illegal (or worse malicious) code using this feature.
Hi Evan,
there is no need to force this change in. I am
2008 May 30
1
Prototype doesn't work if we have swf content on the same page
I having to many troubles with prototype and scriptaculous when i have
object tag to embed swf content on webpage. First it conflict with
adsense and the page can''t be showed on IE6, fine, i remove adsense
banners. But my lightbox galery(maded with prototype) doesn''t work if
i had swf content from youtube...
Some body can help with this problem?
I''m starting hate
2012 May 09
1
[LLVMdev] [PATCH][RFC] Add llvm.codegen Intrinsic To Support Embedded LLVM IR Code Generation
On May 9, 2012, at 2:12 AM, Tobias Grosser wrote:
>
>>> That's why I was asking you where you see the possibility of illegal/malicious code? You did not really explain it yet and I would
>>> be more than happy to be understand such a problem. From my point of view embedded and host module code are both compiled at the same time and are both checked by the LLVM bitcode
2008 Oct 01
3
cryptic error message: "Error in embed(y, lag) : wrong embedding dimension"
Dear R Users,
I've been hit with a cryptic error message:
"Error in embed(y, lag) : wrong embedding dimension"
My configuration is:
- R 2.7.2
- Windows XP Sp2
Google returns nothing for this. Could someone suggest what this might
mean ?
Thanks in advance,
Tolga
Generally, this communication is for informational purposes only
and it is not intended as an offer or solicitation
2005 Aug 05
2
Embedded player
Hey folks,
I was hoping I could pick your guys' brains. I have been searching for a
flash player that I can embed onto my site, that would be capable of
playing an icecast stream. I have checked out a few, and they are all
limited to playing a static mp3 file. Has anyone worked with such a
thing and could give some recommendations?
Thanks,
Jim Kehoe
Hiway Radio