Re: [Jprogramming] Feedback on the proposed design of the J wiki

2022-11-23 Thread 'robert therriault' via Programming
Thanks for the feedback Pascal. As we move along with this upgrade, I would really appreciate it if J'ers like you keep a lookout to make sure that the information that we are putting out is good. If there is a particular area that you feel is important, I would welcome any suggestions you

Re: [Jprogramming] Feedback on the proposed design of the J wiki

2022-11-23 Thread 'Pascal Jasmin' via Programming
I like it.  The video did point out useful features I would not have found on my own.  But, also don't need to be at forefront. The landing page did give me a first impression of a  very childlike retro vibe with the colours.  I quickly got used to it. On Wednesday, November 23, 2022 at

[Jprogramming] Feedback on the proposed design of the J wiki

2022-11-23 Thread 'robert therriault' via Programming
Our proposed front end for the new J wiki is in its final design stages and I have just posted a video that shows some of the affordances that the new design provides. What we are looking for are comments on the approaches that we have taken. What you like and what you don't. We're not saying

Re: [Jprogramming] feedback

2018-03-06 Thread Devon McCormick
That's probably true. I may have something from NYCJUG I could submit. On Tue, Mar 6, 2018 at 1:41 PM, Cliff Reiter wrote: > Pascal, > > I assume you meant that you got no feedback from the editor? Pity if so. > Have you thought about asking the forum for feedback? That

[Jprogramming] feedback

2018-03-06 Thread Cliff Reiter
Pascal, I assume you meant that you got no feedback from the editor? Pity if so. Have you thought about asking the forum for feedback? That would probably have a good overlap in readership. Best, Cliff -- For information

Re: [Jprogramming] Feedback on beginner's code

2016-03-21 Thread Alex Shroyer
Fellow newbie here. If you're not already, I recommend using Voc and NuVoc at the same time. NuVoc provides a nice overview or reminder, while Voc has more depth. I find it useful to acquire a few new

Re: [Jprogramming] Feedback on beginner's code

2016-03-14 Thread Henry Rich
Again, smaller sub-units help to avoid such accidents: sort =: /:~ de_space =: -.&' ' normalize =: de_space@sort@tolower isAnagramOf =: -: Almost every time, these tiny sub-units provide something useful even beyond of the current context ("anagrams"). They are

Re: [Jprogramming] Feedback on beginner's code

2016-03-14 Thread neitzel
> As a fellow beginner (learning for well over a year, on and off), I'll > show a way I would do it: > isAnagramOf =: -:&:(-.&' '@:/:~@:tolower) I'd like to add some advice for J newbies: During the first two months (perhaps even two years, or two decades), resist any urge to put

Re: [Jprogramming] Feedback on beginner's code

2016-03-14 Thread Jose Mario Quintana
the "Brief J Reference" really helpful: > > http://www.jsoftware.com/books/pdf/brief.pdf > > Especially pages 17 and 18, which give a great overview (in diagram form) > of J's conjunctions, forks and hooks, without discussing rank, which of > course is importa

Re: [Jprogramming] Feedback on beginner's code

2016-03-14 Thread R.E. Boss
> -Original Message- > From: Programming [mailto:programming-boun...@forums.jsoftware.com] > On Behalf Of 'Jon Hough' via Programming (...) > On top of JForC and Roger Stokes' book, and of course the Dictionary and > Nuvoc, I found the "Brief J Reference" really helpful: > >

Re: [Jprogramming] Feedback on beginner's code

2016-03-14 Thread Adam Tornhill
Mon, 3/14/16, Adam Tornhill <a...@adamtornhill.com> wrote: Subject: [Jprogramming] Feedback on beginner's code To: "programm...@jsoftware.com" <programm...@jsoftware.com> Date: Monday, March 14, 2016, 12:21 AM Hi all, I finally decided to try to understand this fascinating

Re: [Jprogramming] Feedback on beginner's code

2016-03-13 Thread 'Jon Hough' via Programming
click. Regards, Jon On Mon, 3/14/16, Adam Tornhill <a...@adamtornhill.com> wrote: Subject: [Jprogramming] Feedback on beginner's code To: "programm...@jsoftware.com" <programm...@jsoftware.com> Date: Monday, March 14, 2016, 12:21 AM Hi

Re: [Jprogramming] Feedback on beginner's code

2016-03-13 Thread Louis de Forcrand
Nice first program. I'm afraid pretty much all that there was to say about it has been said already, so all I'll add is my personal preferences for documentation. I skimmed through several of the included books, before settling on the actual Dictionary introduction. This is probably just

Re: [Jprogramming] Feedback on beginner's code

2016-03-13 Thread Marshall Lochbaum
Although it's perhaps not as important early on as Henry's excellent advice, I would like to advocate for good use of whitespace and grouping in J programming. Putting less space around parts which are evaluated first (generally adverbs) and more around those which are evaluated last makes it a

Re: [Jprogramming] Feedback on beginner's code

2016-03-13 Thread Henry Rich
I agree with what Raul says (and I know it works, too, because he was my main teacher as I was learning J). The J Dictionary is brief and brilliant; if you're committed to learning all of J you might want to start there; but some readers are reminded of what Macaulay said about Seneca, that

Re: [Jprogramming] Feedback on beginner's code

2016-03-13 Thread Raul Miller
My tip would be: dip into the language each day - try to find something fun and interesting, of course, but a half hour a day over the course of a week will often do more for you than an intense 4 hour session. (Those intense 4 hour sessions, or longer, can be fun, but I would let them happen

Re: [Jprogramming] Feedback on beginner's code

2016-03-13 Thread Henry Rich
Wow, that's amazing for a first program. You'll go far with this language. There are easier ways to do what you did: (' ' & i.#]) removes spaces. Easier is -.&' ' (*/)@(=&(...)) will cause trouble if the left and right arguments have different length, which is why you had to discard that

[Jprogramming] Feedback on beginner's code

2016-03-13 Thread Adam Tornhill
Hi all, I finally decided to try to understand this fascinating language. So far I've spent some evenings reading and experimenting with the language. J is fun. Real fun. I also like how J forces me to re-consider how I view programming. Of course, that also means I'm still at a complete

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread Michal Wallace
Thanks, David and Cliff, for pointing out the 'number of iterations' thing. I added some keys to change this, and updated the docs. On Sun, Jan 3, 2016 at 6:49 AM, David Lambert wrote: > The program works and is fairly easy to read with the caveats that I had > to read the

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread Michal Wallace
On Sun, Jan 3, 2016 at 8:37 AM, 'Pascal Jasmin' via Programming < programm...@jsoftware.com> wrote: > mistyped sorry > > > mbrowse_z_ =: conew bind 'mbrowse' Oh. If I do this, then mbrowse'' returns a new namespace, but doesn't actually run the constructor. (f bind y) x -> (f y) (f & y) x ->

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread 'Pascal Jasmin' via Programming
That is cool. Carry on. I was just assuming that constructor params were always '' from not looking carefully. - Original Message - From: Michal Wallace <michal.wall...@gmail.com> To: programm...@jsoftware.com Sent: Sunday, January 3, 2016 10:31 AM Subject: Re: [Jprogr

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread Linda A Alvord
day, January 3, 2016 7:32 AM To: programm...@jsoftware.com Subject: Re: [Jprogramming] feedback wanted for mandelbrowse tutorial Pascal, Viewmat is a dyadic verb. All you need is a table of (N,3) of colors like ]P=:3 3$255 0 0 255 255 0 0 0 255 255 0 0 255 255 0 0 0 255 This

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread Michal Wallace
On Sat, Jan 2, 2016 at 9:08 PM, 'Pascal Jasmin' via Programming < programm...@jsoftware.com> wrote: > > mbrowse_z_ =: conew bond 'mbrowse' > Thanks for looking. What's bond? I don't seem to have this conjunction in j804, other than in the 'primitives' package, where it's just an alias for `&`.

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread 'Pascal Jasmin' via Programming
mistyped sorry mbrowse_z_ =: conew bind 'mbrowse' - Original Message - From: Michal Wallace <michal.wall...@gmail.com> To: programm...@jsoftware.com Sent: Sunday, January 3, 2016 9:03 AM Subject: Re: [Jprogramming] feedback wanted for mandelbrowse tutorial On Sat, Jan 2, 2016 a

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread Linda A Alvord
mming-boun...@forums.jsoftware.com [mailto:programming-boun...@forums.jsoftware.com] On Behalf Of 'Pascal Jasmin' via Programming Sent: Saturday, January 2, 2016 10:09 PM To: programm...@jsoftware.com Subject: Re: [Jprogramming] feedback wanted for mandelbrowse tutorial looks cool. I don't kn

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread Cliff Reiter
Nice work. I believe the smoothing that you see is due to the max bound on the number of iterations (24). But as you raise that, things slow down. On 1/2/2016 9:11 PM, Michal Wallace wrote: Hey all. Happy new year! I made a small GUI app for a tutorial video I'm planning:

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread bill lam
I guess it was a typo and he meant bind. On Jan 3, 2016 10:03 PM, "Michal Wallace" wrote: > On Sat, Jan 2, 2016 at 9:08 PM, 'Pascal Jasmin' via Programming < > programm...@jsoftware.com> wrote: > > > > mbrowse_z_ =: conew bond 'mbrowse' > > > > Thanks for looking. >

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread David Lambert
TERS end. repaint [ SCALE =: +: SCALE ) Date: Sat, 2 Jan 2016 20:11:45 -0600 From: Michal Wallace<michal.wall...@gmail.com> To:programm...@jsoftware.com Subject: [Jprogramming] feedback wanted for mandelbrowse tutorial Message-ID: <cae6hcjnpcr33azpxx9zvn7m0kispf743qwzffmcwbkby

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-02 Thread 'Pascal Jasmin' via Programming
al.wall...@gmail.com> To: programm...@jsoftware.com Sent: Saturday, January 2, 2016 9:11 PM Subject: [Jprogramming] feedback wanted for mandelbrowse tutorial Hey all. Happy new year! I made a small GUI app for a tutorial video I'm planning: https://github.com/tangentstorm/mandelbrowse

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-02 Thread Brian Schott
Does this help? mbrot =: [: x: [: +/ 2 <&| (+ *:) ::_:"0 -- (B=) -- For information about J forums see http://www.jsoftware.com/forums.htm

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-02 Thread Brian Schott
No, that does not alter the results. I thought at first it did. (B=) -- For information about J forums see http://www.jsoftware.com/forums.htm