search for: illus

Displaying 20 results from an estimated 222 matches for "illus".

Did you mean: ills
2009 Aug 27
5
wine does n't open
...happily with ubuntu 8.04. Now I have ubuntu 9.04 clean install on a new machine. I could install wine but when I open wine-program-accessories-notepad nothing happens. Also configure wine does n't funtion. Also when I try to install any exe file this message comes: here is one example [/home/illusions/Desktop/TeamViewer_Setup.exe] End-of-central-directory signature not found. Either this file is not a zipfile, or it constitutes one disk of a multi-part archive. In the latter case the central directory and zipfile comment will be found on the last disk(s) of this archive. note: /ho...
2015 Mar 17
2
Proposing a change in the base::sink interface for type argument
...ALSE) However, reading the implementation there is implicit assumption that type is a single character value: https://github.com/wch/r-source/blob/trunk/src/library/base/R/sink.R#L23 I'm finding this very confusing as the interface is giving a default value of a character _vector_ causing the illusion that by default both output/message will be redirected. I'm proposing either a change in the interface so it is a single character (either output or message) or a loop in the implementation on all values in type so it will actually be considered a vector. Here is an example change for the f...
2015 Mar 18
1
Proposing a change in the base::sink interface for type argument
In other words: this is a standard programming paradigm in R/S which (unfortunately) is not widely known, based on my network. It is really nice for developers. Best, Kasper On Wed, Mar 18, 2015 at 5:42 PM, MacQueen, Don <macqueen1 at llnl.gov> wrote: > It's only an illusion until one actually tries providing a vector. > > > sink('foo', type=c('s','m')) > Error in match.arg(type) : 'arg' must be of length 1 > > The additional benefit of match.arg() which you may have not appreciated > is that it allows the use...
2008 Mar 01
5
rspec with continuations: very strange
I appear to have written code which travels backwards through time: http://www.vimeo.com/742590 This disturbs me immensely. If anyone can explain it, that would be cool. I think it''s an illusion brought about by how RSpec wraps the code it executes, and by the sheer weirdness of continuations. -- Giles Bowkett Blog: http://gilesbowkett.blogspot.com Portfolio: http://www.gilesgoatboy.org Tumblelog: http://giles.tumblr.com Podcast: http://hollywoodgrit.blogspot.com
2009 Apr 20
4
graph with 15 combinations
...y I would like to represent everything in one graph and as concise as possible. Drawing 4 circles and depicting it as overlap just gives me 13 out of the 15 possibilities needed (as e.g. depicted here http://www.psy.ritsumei.ac.jp/~akitaoka/classic9e.html in the graph "Four circles surrounding illusion"). Does anybody has a nice solution, ideally with a possible solution in R? Thanks in advance! Johannes -- Project Coordinator BIOTA West Amphibians Museum of Natural History Dep. of Research (Herpetology) Invalidenstrasse 43 D-10115 Berlin Tel: +49 (0)30 2093 8708 Fax: +49 (0)30 2093 8...
2002 Nov 26
5
unexpected behaviour of rnorm()
Hello everyone. If I do f <- function(n){max(rnorm(n))} plot(sapply(rep(5000,4000),f)) #[this takes my PC about 30 seconds] then I get something quite unexpected: gaps in the distribution. For me, the most noticable one is at about 3.6. Do others get this? Is it an optical illusion? It can't be right, can it? Or maybe I just don't understand the good ol' Gaussian very well. anyone got an explanation? [linux redhat 7.1; R-1.6.1] -- Robin Hankin, Lecturer, School of Geography and Environmental Science Tamaki Campus Private Bag 92019 Auckland New Zealan...
2004 Jul 02
1
memdisk hdimage
...ly tried it for some weeks to create such an image, i am not able to get a working image. It would be nice if you can send me a step by step recipe on how to do it. Thanks, -timo -- 6832 C8EC ------------------------------------ 6FBF 9383 D823 4059 --== "reality is the illusion you live" ==-- 7DBD 109E 0CD1 ------------------------------------ 98DC
2003 Jul 30
5
Dummy account/extension
Hi, It is possible to create a dummy account (SIP or IAX type) in order to be used in a "dummy" extension? I want to be able to use it as a normal extension (as an IP phone connected to it), but without the need to answer or call from that extension. I want that when I call that extension to hear the ring, and after the defined period of time to enter in the Voicemail system. I
2013 Nov 27
2
[LLVMdev] Disabling certain optimizations at -O1?
...e > > motion, from choosing the passes, to choosing steps on the passes, to > > lowering code differently. > > > > On the front-end layer, It's as simple as dealing -O levels. > > > > On the middle-end, we could have front-ends to set a flag "debug- > illusion" > > on each individual pass, so that they could use this information to > take > > decisions locally, independent of the -O level (which they don't have > access > > to). This flag should only be set if the user requests -g and the > > optimization level i...
2013 Nov 27
0
[LLVMdev] Disabling certain optimizations at -O1?
...oposed we have names, rather than numbers, that would represent our optimization levels: 0 = Debug 1 = FastDebug 2 = Speed 3 = Aggressive S = Space Z = SpaceAggressive I'm assuming there is little value in -O1 than just a faster debug experience, so why not make it take decisions on the debug illusion as well? Ie. ignore my -g/-O1 dependency I proposed. > Intuitively I'd expect that the set of passes to be run would vary with > opt level, and much less often would a pass want to vary its behavior > according to opt level. But "much less often" isn't "never&q...
2006 Jun 14
13
Undefined method
...category_id.category, :action => "show", :id => position.id %></td> The "link_to position.category_id.category" is the real problem. So, In the Position model I have a belongs_to : category In the Category model I have a has_one : position I was under the grand illusion that from this point forward I could reference fields without additonal methods. hence, position.category_id.category. If I take out category and just leave position.category_id that displays fine. Any hints, tips or lambasting would be greatly appreciated. Oh did I mention I''m a begi...
2013 Nov 27
2
[LLVMdev] Disabling certain optimizations at -O1?
...ed is the general information that we want to avoid too much code motion, from choosing the passes, to choosing steps on the passes, to lowering code differently. On the front-end layer, It's as simple as dealing -O levels. On the middle-end, we could have front-ends to set a flag "debug-illusion" on each individual pass, so that they could use this information to take decisions locally, independent of the -O level (which they don't have access to). This flag should only be set if the user requests -g and the optimization level is not greater than 1. On the back-end, I think th...
2013 Nov 28
2
[LLVMdev] Disabling certain optimizations at -O1?
...uld represent our optimization levels: > > 0 = Debug > 1 = FastDebug > 2 = Speed > 3 = Aggressive > S = Space > Z = SpaceAggressive > > I'm assuming there is little value in -O1 than just a faster debug > experience, so why not make it take decisions on the debug illusion as > well? Ie. ignore my -g/-O1 dependency I proposed. Okay. I worked on compilers where -O1 was the default, actually, and it was "generally fast enough" but still very easy to produce very good debug info. > > > > Intuitively I'd expect that the set of passes...
2008 Aug 15
2
Simplest (static?) build & config for loopback access?
...nd set it to FALSE. Which solves the problem -- but is this really needed, or have I done something wrong? 2) The Dovecot I built on OS X 10.4 appears to work fine when copied on another Mac running 10.5. Now, I'd love to avoid installing developer tools on both machines, but I fear this an illusion (some libraries are changing under us, e.g. libiconv.2.2.0.dylib --> libiconv.2.4.0.dylib). Does this mean I should try a static build? If so, what are the flags and how do I go about specifying a minimal set of libraries to include for my purposes? 3) Probably offtopic here, but has any...
2007 Mar 27
6
how does rails do this "find_by_?"
Hello there, I''m wondering how do they create functions on the fly? find_by_any_column_name ?? I want to do something similar with my models, but I don''t really know how to do it? user_current_nickname user_current_id user_current_role etc.? Regards, Jamal -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this
2010 Feb 22
0
[LLVMdev] Paired register allocation problem
...optimization pass in the back end performed after the assembly generation pass has been done, to shuffle the adjacent inns when they don't supply or depend on the moved values - horrid. I was wondering if this would be more practical in LLVM (of which I am ignorant but curious) or whether the illusion of a single 64-bit register also persists there until it is too late. Cheers M
2015 Mar 18
0
Proposing a change in the base::sink interface for type argument
It's only an illusion until one actually tries providing a vector. > sink('foo', type=c('s','m')) Error in match.arg(type) : 'arg' must be of length 1 The additional benefit of match.arg() which you may have not appreciated is that it allows the user to abbreviate. That is,...
2007 Nov 19
1
mail_location backends
Hello, Where I work we have have an interesting setup, we have 2 machines with mail accounts on them and both have dovecot. We would really like to centralize all the mail accounts on one machine, but unfortunately the administration has not approved it. However, if we could create the "illusion" that they are on the same machine that would be acceptable. If we have a 3rd machine, lets say called mail.example.com, could we install dovecot on it (using LDAP authorization), such that when a user connects to this machine, it then connects to one of the 2 other machines to retrieve the...
2008 Jan 29
1
Fortunes - was Re: [OT] vernacular names for circular diagrams
I did not write that. On Jan 29, 2008 9:05 AM, S Ellison <S.Ellison at lgc.co.uk> wrote: > >>> "Gabor Grothendieck" <ggrothendieck at gmail.com> 29/01/2008 12:35:27 > >>> > > As is common in human affairs, even > > the illusion of understanding is preferred to a lofty digression > upon > > why the audience does not understand. > > Gabor, > > This should be in fortunes; it is depressingly accurate. > But it doesn't have to be a lofty digression. > > S > > > > ***************...
2009 May 09
3
&#12377; &#12367; &#12427; &#12417; &#12356; &#12488; Schoolmate
Hi, I'm trying to help my friend run this Japanese game on Mac OSX. The installation process was as instructed in the AppDB, but when the Schoolmate.exe is clicked, the following message pops up: "Buffer overrun detected! Program: C:\illusion\Schoolmate\SchoolMate.exe A buffer overrun has been detected which as corrupted the program's internal state. The program cannot safely continue execution and must now be terminated." The game itself loads great, as the window with the title screen is loaded, but it cannot be clicked...