search for: unapp

Displaying 18 results from an estimated 18 matches for "unapp".

Did you mean: onapp
2003 Jul 31
1
spatial statistics vs. spatial econometrics
...ial-autocorrelation models (e.g., the spdep package). As far as I can tell, these amount to the same thing (in princple). The first camp likes to use row-standardized "weight matricies" in building covariance structures (to ensure there isn't too much dependence?). I find this very unappealing to many models. This camp doesn't seem to look at variograms or correlegrams as often--they just fit the model, which I also find unappealing. The covariance structures also tend to be very simple. It looks like there is more flexibility in the second camp. Mixed model procedures also...
2020 Apr 15
2
Re: [PATCH nbdkit UNFINISHED] Add the ability to write plugins in golang.
...ke Perl). Why did you choose this approach ? Looking at the code below there's the general boilerplate that will be approx the same for all plugins with cut+paste tedium across projects, and then there's the "interesting" code in test.go The methods in test.go though look quite unappealing from a Go programmer's POV, as the API contracts are full of CGo types and unsafe pointers. To make something that is attractive for Go programmers, I think it needs to hide all the low level CGo stuff entirely. Implementing a nbdkit plugin should require nothing more that providing pur...
2020 Apr 15
0
Re: [PATCH nbdkit UNFINISHED] Add the ability to write plugins in golang.
...oading instead? > Looking at the code below there's the general boilerplate that > will be approx the same for all plugins with cut+paste tedium > across projects, and then there's the "interesting" code in > test.go > > The methods in test.go though look quite unappealing from a > Go programmer's POV, as the API contracts are full of CGo > types and unsafe pointers. > > To make something that is attractive for Go programmers, I > think it needs to hide all the low level CGo stuff entirely. > > Implementing a nbdkit plugin should requi...
2007 Nov 17
0
Drawing to a buffer (or double buffering)
...image(matrix(rnorm(100),ncol=5),axes=FALSE) } Sys.sleep(1) } And the behavior I don't want, is the slowly filling of the plot. I need it to be completely replaced immediately. The only way I know of doing this is to output to png devices and then sift through the pictures. That is very unappealing. Manfred P.S. The closest I've come was: library("RGtk2") library("cairoDevice") win <- gtkWindow(show=FALSE) gtkWindowResize(win,800,600) da <- gtkDrawingArea() win$add(da) win$visible <- TRUE asCairoDevice(da) win$visible <- FALSE plot.new() par(mfrow=...
2003 Oct 28
0
Oh323 segmentation fault in asterisk...
...sizes, nothing seems to help. G.711 is the only codec in common between the 2 systems. (Quintum A400 Tenor and Asterisk). Does anyone know if this previous issue was ever resolved, and if so, how? I have to make this work, and tracking down a bad memory access in unfamiliar code is a task so unappealing that I'd place it right behind pulling off my fingernails and pouring salt over the open wounds. (Not to mention I am not a C++ person at all, so digging through the Oh323 code will prove a formidable challenge.) Are other people having success with Oh323 and G.711? If so, can anyone...
2006 May 01
6
[PATCH] Use stddef.h in Mini-OS to define size_t
Please patch Mini-OS so that it uses stddef.h to define size_t and NULL. This problem fixes errors that occur when linking Mini-OS with ANSI standard code that uses stddef.h. John diff -ur oxen-3.0-testing/extras/mini-os/include/lib.h nxen-3.0-testing/extras/mini-os/include/lib.h --- oxen-3.0-testing/extras/mini-os/include/lib.h 2006-04-14 22:21:55.000000000 -0400 +++
2020 Apr 15
1
Re: [PATCH nbdkit UNFINISHED] Add the ability to write plugins in golang.
...king at the code below there's the general boilerplate that > > will be approx the same for all plugins with cut+paste tedium > > across projects, and then there's the "interesting" code in > > test.go > > > > The methods in test.go though look quite unappealing from a > > Go programmer's POV, as the API contracts are full of CGo > > types and unsafe pointers. > > > > To make something that is attractive for Go programmers, I > > think it needs to hide all the low level CGo stuff entirely. > > > > Implem...
2006 Sep 11
15
ruby method names
Hi Attached is a patch that adds aliases to the API for methods that look like attribute accessors. So a_frame.set_title(''The title'') # currently a_frame.title = ''The title'' # now an alternative textctrl.get_value # currently textctrl.value # now an alternative Also, C++ methods named ''IsXXX'' are now exposed in ruby with
2008 Sep 04
1
Erlang-style message-passing in R: Rmpi, Snow, NetWorkSpaces, etc.
...uch more popular on clusters than PVM these days. - NetWorkSpaces: Maybe. This looks like a rather mature and well-supported multi-language TupleSpace implementation, so it could certainly be made to work. Passing all my large R data objects back and forth solely as strings seems very unappealing, but the docs hint that it includes direct (or at least transparent) support for binary R objects. I need to start up and run an explicit NetWorkSpaces Python/Twisted server. Also, TupleSpace programming sounds somewhat more limiting than Erlang-style message passing (although I def...
2012 Jul 19
20
Rails' inflections are messy
Yesterday, I opened a GitHub Issue<https://github.com/rails/rails/pull/7071> about moving Rails inflections to an initializer. The idea wasn''t received well, understandably, as generating a large initializer with new Rails apps is pretty unappealing. However, the core members seemed open to the discussion of alternatives continuing here. For those of you not in the know, inflections (the defined rules for singularization/pluralization) in Rails are currently frozen. What this means is that most pull requests submitted that add, remov...
2012 Feb 21
6
Jazzing up the Task Views index page
A little while ago here we had a short discussion about Task Views - I think ignited by someone saying 'how many times do I have to say "have you read the Optimisation Task View?"?' and I poured some fuel on that fire by saying "Task Views" was a stupid name. Anyway, I did say that Task Views were rather brilliant, but were let down by their hidden position on the R
2007 Jan 30
1
What about BIND 9.3.4 in FreeBSD in base system ?
http://www.isc.org/sw/bind/view/?release=9.3.4 SECURITY ADVISORIES * CVE-2006-4095 CERT Vulnerability Note VU#915404 NISCC 172003 * CVE-2006-4096 CERT Vulnerability Note VU#697164 NISCC 172003 * CAN-2005-0034 NISCC-UNIRAS 20050125-00059 CERT Vulnerability Note VU#938617 [ODiP] == Dmitry Grigorovich
2008 Mar 05
21
wxruby, XRC, DialogBlock
I''ve been trying to figure out the best method for generating GUI''s with Ruby. I ended up using DialogBlock because it seems like the fastest way. But not I have to work backwards and have not done this before. How do I go from the file I generate in DialogBlock to a code in Ruby? -- Posted via http://www.ruby-forum.com/.
2006 Oct 16
9
wxRuby-0.6.0, wxRuby2, SWIG and....
Hi, my first post here so a little background first... I started out using wxRuby-0.6.0 about 4 months ago while trying to get a grip on Ruby as a means of writing a little budgetting app I''ve been meaning to write for a couple of years. As I didn''t like the way that the wxruby examples are coded (having to punch the individual C++ api methods that way isn''t nice) I
2020 Apr 10
3
[PATCH nbdkit UNFINISHED] Add the ability to write plugins in golang.
Sorry Dan, but I really do dislike golang with a passion :-) Here is a patch that allows you to write nbdkit plugins in golang. As with C, OCaml and Rust, you can write a plugin in Go which compiles directly to a .so file that can be loaded into golang, so in that sense it works completely differently from scripting language plugins like Perl and Python where there's an
2009 Apr 06
42
Licensing and Copyright
Hi all, I fear this discussion will quickly devolve into a recursive flame- fest, but it needs to be broached, so here we go. Note that I kind of think this is more of dev topic than users, but I want to make sure everyone knows the conversation is happening and can easily participate. This is also likely to be the first of a series of conversations I''ll be starting to try to
2017 Jun 01
35
.ogg extension and Theora
>Paul E Wrote [snip] >Windows 2000 (although it's the same for all of them) doesn't read in >any mime-type to correctly identify a file, it just uses the extension. [snip] What if, at least for Windows, someone wrote a simple application which when associated with .ogg files and an .ogg file was opened simply read enough of the ogg stream to identify the type of content and then
2007 Oct 24
182
Yager on ZFS
Not sure if it''s been posted yet, my email is currently down... http://weblog.infoworld.com/yager/archives/2007/10/suns_zfs_is_clo.html Interesting piece. This is the second post from Yager that shows solaris in a pretty good light. I particularly like his closing comment: "If you haven''t checked out ZFS yet, do, because it will eventually become ubiquitously implemented