search for: hey

Displaying 20 results from an estimated 12090 matches for "hey".

Did you mean: they
2007 Aug 02
0
10 commits - libswfdec/compiler.c libswfdec-gtk/swfdec_source.c libswfdec/Makefile.am libswfdec/swfdec_player.c NEWS test/trace
...39f26192c0766833f976c4ae) Author: Benjamin Otte <otte at gnome.org> Date: Thu Aug 2 18:16:37 2007 +0200 update NEWS diff --git a/NEWS b/NEWS index fc07dc9..d1567bf 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,15 @@ + 0.5.1 ("Heeeeelium") + +Features! This release got some. And they even give you the long awaited +embedded Youtube support. At the cost of lost of API changes, but who cares? +- rewrite SwfdecLoader. Add SwfdecURL support structure in the process. +- implement AsBroadcaster actionscript object. +- implement Stage actionscript object. Movies can now do the scalin...
2015 Jan 26
2
Inspect a "delayed" assigned whose value throws an error?
...I got an interesting programming challenge: How do you inspect an object which is assigned via delayedAssign() and that throws an error as soon as it is "touched" (=the value is evaluated)? Is it possible? MINIMAL EXAMPLE: $ R --vanilla > delayedAssign("foo", stop("Hey!")) (If you find this minimal example silly/obvious, please skip down to the real example at the end) > foo Error: Hey! > str(foo) Error in str(foo) : Hey! In addition: Warning message: In str(foo) : restarting interrupted promise evaluation > mode(foo) Error in mode(foo) : Hey! I...
2017 May 15
3
stopifnot() does not stop at first non-TRUE argument
...code is allowed. In R it gets trickier, but how about this: Stopifnot <- function(...) { n <- length(match.call()) - 1 for (i in 1:n) { nm <- as.name(paste0("..",i)) if (!eval(nm)) stop("not all true") } } Stopifnot(2+2==4) Stopifnot(2+2==5, print("Hey!!!") == "Hey!!!") Stopifnot(2+2==4, print("Hey!!!") == "Hey!!!") Stopifnot(T,T,T,T,T,T,T,T,T,T,T,T,T,T,T,T,F,T) > On 15 May 2017, at 15:37 , Martin Maechler <maechler at stat.math.ethz.ch> wrote: > > I'm still curious about Herv?'s idea o...
2017 May 16
3
stopifnot() does not stop at first non-TRUE argument
...;- function(...) > { > n <- length(match.call()) - 1 > for (i in 1:n) > { > nm <- as.name(paste0("..",i)) > if (!eval(nm)) stop("not all true") > } > } > Stopifnot(2+2==4) > Stopifnot(2+2==5, print("Hey!!!") == "Hey!!!") > Stopifnot(2+2==4, print("Hey!!!") == "Hey!!!") > Stopifnot(T,T,T,T,T,T,T,T,T,T,T,T,T,T,T,T,F,T) >> On 15 May 2017, at 15:37 , Martin Maechler <maechler at stat.math.ethz.ch> wrote: >> >> I...
2010 Sep 21
5
Can ucminf be installed in 64 bit R and one more question?
Hey, R Users my windows is 64 bit windows 7.?I am trying to install the package ucminf into my 64 bit version R but cannot.??the package I downloaded is from http://cran.r-project.org/web/packages/ucminf/index.html?and I installed it with the "install from local zip files", due to I did n...
2007 Nov 08
0
11 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_resource.c libswfdec/swfdec_resource_request.c
...| 9 27 files changed, 236 insertions(+), 179 deletions(-) New commits: commit e4a1e22910d10c3613a130f0b15fb8b591ebc13e Author: Benjamin Otte <otte at gnome.org> Date: Thu Nov 8 15:08:10 2007 +0100 add 2 tests that check MovieClipLoader error messages Note that they are compiled to run in the local sandbox. The Flash 5 versions have been skipped, as they don't work for other reasons. diff --git a/test/trace/Makefile.am b/test/trace/Makefile.am index b7474f0..0cc753f 100644 --- a/test/trace/Makefile.am +++ b/test/trace/Makefile.am @@ -982,6 +982,20 @@...
2006 Sep 23
6
Connection to backgroundrb is lost when exiting action method
Hey. I have a very annoying problem, and was wondering what is wrong. Suppose I have backgroundrb running, and then I have an action in some controller. In the action I define a worker. When leaving the action, suddenly the connection to backgroundrb is lost: DRb URI: druby://localhost:22222 Pid: 3976...
2009 Dec 18
1
The RSQLite version of dbGetQuery drops colums
Hi all, I just noticed (the hard way of course) that when a query returns 0 rows, the columns in the resulting data.frame get dropped as well. See the following example code (where conn is an active connection to an SQLite db): > dbGetQuery(conn, "select 1 as hey, 2 as ho where 1") hey ho 1 1 2 > dbGetQuery(conn, "select 1 as hey, 2 as ho where 0") data frame with 0 columns and 0 rows I believe that the second query should return a 0x2 data.frame instead, that is, the same value as: > dbGetQuery(conn, "select 1 as hey, 2...
2010 Mar 31
3
regular expression help to extract specific strings from text
Dear all, Lets say I have the following: > x <- c("Eve: Going to try something new today...", "Adam: Hey @Eve, how are you finding R? #rstats", "Eve: @Adam, It's awesome, so much better at statistics that #Excel ever was! @Cain & @Able disagree though :(", "Adam: @Eve I'm sure they'll sort it out :)", "blahblah") > x [1] "Eve: Going to try som...
2015 Jan 26
0
Inspect a "delayed" assigned whose value throws an error?
If it was any other environment than the global, you could use substitute: e <- new.env() delayedAssign("foo", stop("Hey!"), assign.env = e) substitute(foo, e) delayedAssign("foo", stop("Hey!")) substitute(foo) Hadley On Mon, Jan 26, 2015 at 12:53 PM, Henrik Bengtsson <hb at biostat.ucsf.edu> wrote: > Hi, I got an interesting programming challenge: > > How do you inspect an...
2005 Dec 26
3
probably a very dumb question
why does <%= render_text "hey ya" %> cause ''undefined method `render_text'' for #<#<Class:0x3851120>:0x3851000>'' can i use render text in a template? -- Posted via http://www.ruby-forum.com/.
2001 Oct 15
0
[idcmp@linuxstuff.org: Hey]
...programming, you probably already have one. If not, it's probably pretty easy to sign up. jack. ----- Forwarded message from Idcmp <idcmp@linuxstuff.org> ----- Delivered-To: jack@localhost.cantcode.com Delivered-To: jack@icecast.org Date: Mon, 15 Oct 2001 12:05:35 -0400 (EDT) Subject: Hey From: "Idcmp" <idcmp@linuxstuff.org> To: <jack@icecast.org> Reply-To: idcmp@linuxstuff.org X-Mailer: SquirrelMail (version 1.2.0 [rc1]) Hey! I'd bug you on IRC, but I'm at work and I'm lucky enough to use webmail :) I know you're not a keen Java person, but...
2015 Jan 26
2
Inspect a "delayed" assigned whose value throws an error?
On Mon, Jan 26, 2015 at 12:24 PM, Hadley Wickham <h.wickham at gmail.com> wrote: > If it was any other environment than the global, you could use substitute: > > e <- new.env() > delayedAssign("foo", stop("Hey!"), assign.env = e) > substitute(foo, e) > > delayedAssign("foo", stop("Hey!")) > substitute(foo) Hmm... interesting and odd. Unfortunately, this doesn't seem to help for reaching into the namespace of hgu133a.db and inspecting 'hgu133aPFAM', e.g....
2008 Jan 31
11
ZenTest-3.9.0 incompatible with RSpec-1.1.2
Hey all, Just a heads up that the ZenTest-3.9.0 release is not compatible with RSpec-1.1.2. I thought I had a release ready to go, but differences between a preview release of ZenTest that I received and the actual release seem to have broken compatibility. We''ll get this resolved soon, but...
2005 Apr 29
4
Calling R functions from Java
Hey guys, I got a java gui app which loads up data into a table. How can i use R to perform statistical functions on the data in the table? P.S My question is not particularly geared towards Java coding, but more towards allowing R functionality within Java.
2013 Dec 02
6
Thank You To The CentOS Team
Hey all you dedicated folks out there who support the CentOS project. Thank you all for your dedicated effort and the great deal of work to get the 6.5 release up and running. Thank you all! -- _ ?v? /(_)\ ^ ^ Mark LaPierre Registered Linux user No #267004 https://linuxcounter.net/ ****
2018 Jul 08
2
Get rid of the "dbox-Mails"-folder
Hey Aki, DIRNAME with empty value has no effect, just like with FULLDIRNAME. "~/sdbox" instead of "~/" doesn't change that.. Greetings, Hativ Am 07.07.2018 um 20:24 schrieb Aki Tuomi: > Does it work better if you use > > mail_location=sdbox:~/sdbox:DIRNAME= > &g...
2007 Aug 26
0
9 commits - libswfdec-gtk/swfdec_source.c libswfdec/swfdec_marshal.list libswfdec/swfdec_player.c libswfdec/swfdec_player.h libswfdec/swfdec_player_internal.h libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_swf_instance.c test/dump.c test/Makefile.am
...uot;G_GUINT64_FORMAT" (now %"G_GUINT64_FORMAT")", &player->iterate_timeout, player->iterate_timeout.timestamp, player->time); @@ -1709,24 +1719,18 @@ swfdec_player_set_loader (SwfdecPlayer * * been set on @player yet. * If the @variables are set and validate, they will be set as properties on the * root movie. - * <note>If you want to capture events during the setup process, you want to - * connect your signal handlers before calling swfdec_player_set_loader() and - * not use conveniencse functions such as swfdec_player_new_from_file().</note&g...
2010 Jun 23
2
format: different S4 behavior in a package
...ANY", function(x) format(x)) If I issue the above in an R session, then define an S4 class with its own format method, I get the desired result: > setClass("A",contains="numeric") [1] "A" > setMethod("format","A", function(x, ...) "Hey Jude") Creating a new generic function for "format" in ".GlobalEnv" [1] "format" > a<-new("A",1968) > formatMe(a) [1] "Hey Jude" However, if I put the two "formatMe" definitions into a package ("Test"), I do not g...
2005 Aug 08
4
Multiple MWI on a single phone?
Hey all...I'm trying to find a phone that will support multiple MWI so that I can have a shared central phone with say 4 users who can see visually that hey have messages waiting. Is there any phone that will do this possibly by re-assigning a soft-button? Can the Polycoms do this since those...