Re: [Jprogramming] j dictionary search

2013-01-30 Thread Raul Miller
It works fine for me, on chrome. Are you using and addons (like ghostery?). Does its javascript console show any errors (you can right click "Inspect Element" and flip to the console tab in the pane that's revealed)? Is chrome up-to-date? -- Raul On Tue, Jan 29, 2013 at 5:41 PM, greg heil wr

Re: [Jprogramming] sparse matrices

2013-01-30 Thread Raul Miller
Yes, nonce error means not implemented. Mostly I think people have been using http://www.jsoftware.com/jwiki/Addons/math/lapack -- Raul On Tue, Jan 29, 2013 at 10:47 PM, Don & Cathy Kelly wrote: > I have the same problem -it is apparently not implemented yet. > Don > > On 29/01/2013 4:42 PM,

Re: [Jprogramming] j dictionary search

2013-01-30 Thread R.E. Boss
OK, shutting ghostery made it work. R.E. Boss > -Oorspronkelijk bericht- > Van: [email protected] > [mailto:[email protected]] Namens Raul Miller > Verzonden: woensdag 30 januari 2013 14:16 > Aan: [email protected] > Onderwerp: Re:

Re: [Jprogramming] j dictionary search

2013-01-30 Thread Raul Miller
In ghostery, you can specifically enable "google's ajax search api" and that should be sufficient to make it work though you might also want to enable some of the other options (sadly, though advertising seems poorly targeted, and thus irrelevant, boring and generally not worth bothering with). Yo

Re: [Jprogramming] j dictionary search

2013-01-30 Thread greg heil
Indeed that was it. i whitelisted in Ghostery: www.google.com Thanks for the prescience. greg ~krsnadas.org -- from:Raul Miller to: [email protected] date:30 January 2013 07:57 subject: Re: [Jprogramming] j dictionary search In ghostery, you can specifically enab

Re: [Jprogramming] sparse matrices

2013-01-30 Thread Zsbán Ambrus
On 1/30/13, Raul Miller wrote: > Yes, nonce error means not implemented. > > Mostly I think people have been using > http://www.jsoftware.com/jwiki/Addons/math/lapack How will lapack help? Lapack does not have any operations on general sparse matrixes. Ambrus

Re: [Jprogramming] sparse matrices

2013-01-30 Thread Raul Miller
Correct, but most of it is about mechanisms for handling specific kinds of sparse matrices. -- Raul On Wed, Jan 30, 2013 at 2:00 PM, Zsbán Ambrus wrote: > On 1/30/13, Raul Miller wrote: >> Yes, nonce error means not implemented. >> >> Mostly I think people have been using >> http://www.jsoftwa

[Jprogramming] Explicit v tacit

2013-01-30 Thread Graham Parkhouse
Kip Murray wrote: Message: 6 Date: Fri, 25 Jan 2013 20:31:56 -0600 From: km To: "[email protected]" Subject: Re: [Jprogramming] applying >1 gerunds to a set of items Message-ID: Content-Type: text/plain; charset=utf-8 Dan, most of the code in the z locale is explicit. What is th

Re: [Jprogramming] Explicit v tacit

2013-01-30 Thread Henry Rich
There are two overheads: parsing and verb-start. verb-start is the time required to get a verb going: find operands, check types, start the loops. Try bigoperand *:@+ bigoperand and compare it to bigoperand *:@:+ bigoperand. The difference is the number of verb-starts. Henry Rich On 1/3

[Jprogramming] J Workshop in Chemnitz, Germany, March 17th

2013-01-30 Thread neitzel
[Relax, this is kinda bilingual...] Das hier ist in erster Linie fuer die paar deuschsprachigen J-Anfaenger im Forum von Interesse -- Ich lade Sie herzlich ein zum: J Workshop (3h, Anfaenger-Intro) auf den Chemnitzer Linux-Tagen 2013 (17.+18.3. 2013, TU Chemnitz, Germany)

Re: [Jprogramming] Explicit v tacit

2013-01-30 Thread Raul Miller
On Wed, Jan 30, 2013 at 6:49 PM, Graham Parkhouse wrote: > It seems to me that Roger used tacit code where practicable. He used the > rank conjunction judiciously. The 'main' function, sudoku, is a one-liner of > immense beauty, embodying two mighty loops and comprehensive stack > management in 11

Re: [Jprogramming] Explicit v tacit

2013-01-30 Thread Bo Jacoby
I had a very short look at Roger's Sudoku solver http://www.jsoftware.com/jwiki/Essays/Sudoku I made a sudoku solver some years ago, in Pascal, before I knew J. The sudoku was represented by an array of shape 3 3 3 3 rather than of shape 9 9. This has the advantage that not only rows and colum