Displaying 17 results from an estimated 17 matches similar to: "Fwd: дополнение"
2008 Aug 18
3
FXRuby FXScintilla question
Hello,
I have started learning FXRuby about 2 weeks ago. Now I''m trying to
launch the scintilla_test.rb from the fxruby-1.6 installation directory
(/usr/lib/ruby/gems/1.8/gems/fxruby-1.6.16/examples) and get this
error: /usr/lib/ruby/gems/1.8/gems/fxruby-1.6.16/lib/fox16/kwargs.rb:2007:in `old_initialize'': wrong number of arguments (8 for 0) (ArgumentError)
from
2008 Aug 20
0
FXTable scrolling problem
Hi,
I''m trying to accomplish the following task:
1) Query database for records
2) Populate FXTable with first 50 records from cursor
3) Populate more rows as the table scrolls down
To accomplish this I subclassed FXTable (class Table < FXTable) and defined
the initialize method as shown below:
def initialize(parent)
super(parent,
2009 Feb 18
0
[LLVMdev] svn pre-commit hook: help needed
> On Feb 18, 2009, at 1:41 AM, Julien Lerouge wrote:
>
> > Yet another _fun_ way of doing this is to setup a buildbot slave just
> > for that. The slave can fix minor stuff like tabs and trailing
> > whitespaces on its own (checking the changes back in), and yell for
> > things like 80-col violations and whatnot where the changes would
> > not be
> > so
2008 Oct 27
2
Using BUTTON_TOOLBAR
Hi, folks. I''m trying to make a toolbar with buttons that change appearance
when hovered over with the mouse. The docs on FXButton say that using
BUTTON_TOOLBAR "causes the edge of the button to be raised when the cursor
moves over it." What I''m getting is buttons without any frame, but they do
not change appearance when the cursor moves over them. I''m
2008 May 04
1
Residual resampling for non linear reg model
I was attempting to use the residual resampling approach to generate 999 bootstrap samples of alpha and beta and find their confidence intervals. However, I keep getting the error message:Error in nls(resample.mp ~ cases/(alpha + (beta * cases)), start = init.values, : singular gradientafter R has only produced a few bootstraps.Could anyone suggest where I am going wrong? Would greatly
2011 Nov 21
1
Fortran runtime error with package cts on CRAN/Mac
Hello,
As the author of package cts, I hope somebody on this list can kindly help (perhaps off-list)
to resolve the build/check issue with package cts for Mac. The error occurred on Mac machines only:
http://cran.r-project.org/web/checks/check_results_cts.html.
Here is the error message:
At line 10 of file machine.f
Fortran runtime error: Range error during floating point read
The source
2005 May 25
2
Re: Demonizing generic Linux issues as Fedora Core-only issues -- WAS: Hi, Bryan
From: Les Mikesell <lesmikesell at gmail.com>
> I'm still wondering about that... If anyone except Linus himself
> even suggested that changing kernel interfaces in a way that would
> break device drivers was a good thing, I can't imagine the reaction.
> I could see that the changes through 2.4 were improving things, but
> is there anything that is measurably better in
2012 Mar 16
1
Segfault while calling fexact in C
Hi folks,
I'm trying to call an R function (fisher.test) in my program for like a
billion times! Though my program is in Python and I feel that using rpy2 to
interface R to python doesn't give me satisfactory performance. So I looked
into R code and found out that fisher.test is actually a wrapper around
another function called fexact which is implemented in C. Using Cython I
managed to
2004 Mar 01
1
new at pan.zipcon.net
New uw_archive/chamber/Soni_Ventorum/91 linked to
wind_quintet/Soni_Ventorum/91
3 oboe works by Alex Klein, oboe & Lisa Bergman, piano.
Reicha Emin quintet by Soni Ventorum
<p>Al Goldstein at gas.zipcon.net
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to
2007 Jan 14
1
Linux as a multicast router
Hi all,
We want linux (ubuntu) with 2.6 kernel to act as multicast router and to
pass multicast packets between different subnets. And linux machine as
router has two network cards having two different subnets assigned onto. We
first worked
"sysctl -w net.ipv4.ip_forward=1"
line on linux shell that made linux to work as unicast router. (like host,
the multicast packets were discarded at
2002 Jun 13
1
bad fisher.test() bug (PR#1662)
(CC'ed to R-bugs ``for the record'')
>>>>> "BDR" == Prof Brian D Ripley <ripley@stats.ox.ac.uk> writes:
BDR> On Thu, 13 Jun 2002, Martin Maechler wrote:
>> >>>>> "MM" == Martin Maechler
>> <maechler@stat.math.ethz.ch> writes:
>>
>> >>>>> "BDR" ==
2010 May 18
3
About option U in Dial Ast version 1.6.2
Has any one used this?
U(x[^arg[^...]]):
x - Name of the subroutine to execute via Gosub
arg - Arguments for the Gosub routine
Execute via Gosub the routine <x> for the *called* channel before
connecting to the calling channel. Arguments can be specified to
the Gosub
using '^' as a delimiter. The Gosub routine can set the variable ${GO
2008 May 08
23
The wiki - directions and ideas
Hi all
Luke and I have been discussing the wiki and how its future development
might pan out. As a result I thought I''d canvas people for feedback.
Currently the wiki''s layout and structure is fairly ad hoc and it''s a
mix of wiki mark-up and REStructured Text (RST). We''d like to make it
more "manual" like or at least move a significant portion of
1996 Nov 14
1
Security hole in Debian 1.1 dosemu package
In Debian 1.1, the optional DOSEMU package installs /usr/sbin/dos
setuid root. This is a serious security hole which can be exploited
to gain access to any file on the system.
Package: dosemu
Version: 0.64.0.2-9
------- start of cut text --------------
$ cat /etc/debian_version
1.1
$ id
uid=xxxx(quinlan) gid=xxxx(quinlan) groups=xxxx(quinlan),20(dialout),24(cdrom)
[quinlan:~]$ ls -al
2006 Apr 12
1
acts_as_list problem with records coming in and out
I have the model that acts as list
acts_as_list :scope => ''featured=1''
As you can see, I only need to order the records that are featured. However,
from time to time I switch some featured items off and mark others as
featured. When this is done, I start getting dublicate numbers on the list
and ordering starts getting problem...
What would be the good approach to
2006 Apr 21
0
acts_as_list with the scope on boolean field
I have a boolean field in mysql (tinyint) which I want to use as a
scope restriction for acts_as_list
acts_as_list :scope => ''featured = #{featured}''
however, there is a problem here as when Rails generates SQL query for
this it supplements true/false for #{featured} which raises error in
mysql
As a workaround I created dummy attributes that return 1/0 depending
on featured
2006 Feb 27
0
BIGINT IDs in migrations
Hi,
Is there a way to tell to the migrations to use bigint(20) instead of
int(11) for ids?
Thanks,
Fuad.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060227/0896c124/attachment.html