search for: dancing

Displaying 20 results from an estimated 705 matches for "dancing".

2017 Aug 23
4
Possible repeat{} / break function bug in R 3.4.1
It is a bug in the byte-code compiler. I will fix Tomas On 08/23/2017 09:22 AM, Lionel Henry wrote: > I don't think that's a bug. source() uses eval(), and eval() creates a > new function-like context frame. In a way expecting `break` to work > inside source() is like expecting `break` to cross stack frames: > > my_break <- function() break >
2017 Aug 23
2
Possible repeat{} / break function bug in R 3.4.1
>>>>> Martin Maechler <maechler at stat.math.ethz.ch> >>>>> on Wed, 23 Aug 2017 09:10:20 +0200 writes: >>>>> Peter Bosa <Peter.Bosa at oregonmetro.gov> >>>>> on Tue, 22 Aug 2017 14:39:50 +0000 writes: >> Hello, I've noticed the following error using repeat{} / break in R 3.4.1 running on Windows 10 and
2017 Aug 22
2
Possible repeat{} / break function bug in R 3.4.1
Hello, I've noticed the following error using repeat{} / break in R 3.4.1 running on Windows 10 and Windows Server 2008 (both 64-bit environments). When running a repeat function, the break command causes an error message if the repeat command refers to code within a file, but does not produce an error if the code is contained within the repeat{} command. For example, the following code runs
2017 Aug 23
0
Possible repeat{} / break function bug in R 3.4.1
I don't think that's a bug. source() uses eval(), and eval() creates a new function-like context frame. In a way expecting `break` to work inside source() is like expecting `break` to cross stack frames: my_break <- function() break repeat(my_break()) Lionel > On 23 ao?t 2017, at 09:17, Martin Maechler <maechler at stat.math.ethz.ch> wrote: >
2017 Aug 23
0
Possible repeat{} / break function bug in R 3.4.1
oops, I should have tried it: expr <- quote(break) repeat(eval(expr)) So eval() has hybrid semantics where `break` has more reach than return(), weird. expr <- quote(return()) repeat(eval(expr)) # infloop Lionel > On 23 ao?t 2017, at 09:24, Tomas Kalibera <tomas.kalibera at gmail.com> wrote: > > It is a bug in the byte-code compiler. I will fix >
2017 Aug 23
0
Possible repeat{} / break function bug in R 3.4.1
Fixed in 73112. If you needed to run this code in unpatched versions of R, you can disable the problematic compiler optimization in the loop for instance by adding "eval(NULL)" to the body of the loop. However, please do not forget to remove this for future versions of R and specifically do not assume this would turn off a particular compiler optimization in future versions. Best
2017 Aug 23
0
Possible repeat{} / break function bug in R 3.4.1
>>>>> Peter Bosa <Peter.Bosa at oregonmetro.gov> >>>>> on Tue, 22 Aug 2017 14:39:50 +0000 writes: > Hello, I've noticed the following error using repeat{} / break in R 3.4.1 running on Windows 10 and Windows Server 2008 (both 64-bit environments). > When running a repeat function, the break command causes an error message if the repeat
2004 Aug 06
2
AW: ices question
hi , my guess is you connect all of the clients to the same mount point, causing icecast to interleave the data. Which is obviously not a good thing. If this is the case, then you should get the errors as soon as you start the second stream. i start any stream via sh-skript like : ./ices -B -d Radiocity -F /music/playlists/alternative.pls -m /alternative -g Alternative -h localhost -n
2005 Nov 23
2
Dancing lissajous
We can't post images here so I've put up a web page to show off a neat little animation in R: http://www.geocities.com/robsteele/ Adios!
2010 Apr 23
3
USB keys
Well, we wanted to put an install on a USB key. Neither I nor the other admin was amused by the singing and dancing that the wiki offers - and just *why* is it that syslinux is broken? At any rate, I did some googling, and found <http://www.pendrivelinux.com/>, and I ran this installer. Ok, it has some bugs: a) I had several .isos, and it *insisted* on grabbing the first one, alphabetically, no matter th...
2008 Apr 10
0
Hey, we rated a dancing banana!
...ress to be honest and I haven't done a thorough test of all available apps but so far everything is working very well, including loading up an example .world file! Even with compiz running! I have attached a screenshot showing the wine/linux/compiz/ETQW SDK goodness . I think this calls for a dancing banana! OS: Ubuntu Hardy Heron, latest updates. Wine version: 0.9.59 (compiled, as this version is not yet in Hardy repos). You need to have the game installed under wine as well (might be possible to use the native linux client but I haven't tested that yet). Once you have that, all you need...
2004 Sep 24
1
Do software raids don't dance Samba?
...d around and I found a some people who seem to have a similar problem, but no answers... I would really appreciate if you have any experience / idea why it runs cool with a stand-alone disk and does hang with a software raid. May be something special for the raid to config? Thanks a lot and happy dancing! Mike
2014 Apr 07
1
I am getting 3.1.0 beta instead of 3.0.3
When I use apt-get install r-base, I am getting the 3.1.0 beta instead of 3.0.3 I tried the install from three different mirrors with the same result: ## R repo deb http://cran.stat.ucla.edu/bin/linux/ubuntu precise/ Setting up r-base (3.0.3.20140328-1precise0) ... Setting up r-base-dev (3.0.3.20140328-1precise0) ... Setting up r-base-html (3.0.3.20140328-1precise0) ... root@UNew-SAS:~# R R
2003 Oct 20
0
Dances with Penguins - penguins eclipse contest
Ok, so this may be a little OT but then again Penguins are our mascot right? Here's a contest to draw or render your 2D or 3D penguin(s) watching the late November eclipse from Antarctica's backyard. www.thebest3d.com/dogwaffle/contest Whether you use Pixia, Gimp, PSP, Photoshop, Dogwaffle, or 3D like Bryce, Blender etc... you're welcome to submit your penguin art for the gathering
2006 Nov 02
1
ZAPtel channel dance
Zaptel installs an /etc/modprobe.d/zaptel and an /etc/{defaults,sysconfig}/zaptel that list the modules in a different order, so If you happen to have a TDM2400P and a TDM[124]xxP, all channels change their numbers if you do a /etc/initd/zaptel restart. This is slightly confusing. (I'd file a bug if there were a bug tracking system that allowed users to submit bugs). Yours, Florian
2009 Jan 12
2
[PATCH] xen/Rules.mk: Do not dance about pointlessly with CFLAGS_tmp
It is usually better to use `='' in Makefiles than `:=''. The expansion rules for `:='' are simpler - so simple in fact that they don''t work if any part of the expansion depends on the source or target filenames. In this patch we remove the shuffling of the value of CFLAGS between := and = flavour variables. This was previously `necessary'' because
2009 Sep 15
1
FYI, Samba presentation at Ohio LinuxFest 2009
At this years Ohio LinuxFest 2009 Don Vosburg will be presenting on his experiences deploying Samba in various configurations: "So You Think You Can Dance? Samba in the Real World" by Don Vosburg Samba is a terrific file sharing project - but how well can you dance? Hear real world examples of hot to swing with Samba. We will explore integration with existing networks, or standing up
2006 Jul 10
7
What is has_many :through really buying you over HABTM?
So having just learned how to do has_many :through as opposed to HABTM, and then, being concerned that I wouldn''t get it to work, I started thinking about these two approaches. It seems to me that the _only_ problem that the HM:T (has_many :through) approach solves that HABTM doesn''t is the issue of the potential collision of id columns between your join table and one of
2006 Aug 11
1
Ports/source dance
Hi, On 8/10/06, Mark Bucciarelli <mark@gaiahost.coop> wrote: > > > There's a scary security alert from yesterday out and no port > update so I judged it to be isp-related. I looked for > ports-security list but didn't see one. > > You know, that might be a very good ideea -- e.g. have a security team and list for ports as we have one for the base distribution.
2004 Aug 06
0
AW: ices question
> i start any stream via sh-skript like : > ./ices -B -d Radiocity -F /music/playlists/alternative.pls -m > /alternative -g Alternative -h localhost -n Alternative -p 8001 -P > <password> -r -R -b 128 -s 0 >/dev/null > > ./ices -B -d Radiocity -F /music/playlists/dance.pls -m /dance -g Dance -h > localhost -n Dance -p 8001 -P <password> -r -R -b 128 -s 0