vote up 7 vote down star
1

I came across J/K/APL a few months ago while working my way through some project euler problems, and was intrigued, to say the least. For every elegant-looking 20 line python solution I produced, there'd be a gobsmacking 20 character J solution that ran in a tenth of the time. I've been keen to learn some basic J, and have made a few attempts at picking up the vocabulary, but have found the learning curve to be quite steep.

To those who are familiar with these languages, would you recommend investing some time to learn one (I'm thinking J in particular)? I would do so more for the purpose of satisfying my curiosity than for career advancement or some such thing.

Some personal circumstances to consider, if you care to:

  • I love mathematics, and use it daily in my work (as a mathematician for a startup) but to be honest I don't really feel limited by the tools that I use (like python + NumPy) so I can't use that excuse.
  • I have no particular desire to work in the finance industry, which seems to be the main port of call for K users at least. Plus I should really learn C# as a next language as it's the primary language where I work. So practically speaking, J almost definitely shouldn't be the next language I learn.
  • I'm reasonably familiar with MATLAB so using an array-based programming language wouldn't constitute a tremendous paradigm shift.

Any advice from those familiar with these languages would be much appreciated.

flag
" steep learning curves are your friends " lecun.com/ex/fun/index.html#steep – MaD70 Oct 24 at 5:28

5 Answers

vote up 8 vote down check

Thousands of years ago, I was an APL programmer. By thousands, I mean back in the '70's when the custom character set meant we had special printing terminals with the APL keyboard and character set, and IBM selectric typeballs with the special characters, etc.

I went to a lecture by Ken Iverson on "Why APL Was Cool".

His thesis was this. Once upon a time long division was a serious mathematical undertaking, reserved for graduate students. Notation for things like repeating decimal expansions involved a large pile of mathematical symbolism. Once upon a time even something like a "negative" number was required elaborate notation.

Over the years -- as we came to a better understanding of these abstractions -- we came up with much more compact notation for complex concepts.

The point of APL (and J and K) is to summarize big algorithms into tidy notation.

Nowadays, I'm a Python programmer. I find that my early exposure to APL warped my brain by forcing me to ask "what's this mean?" and "is this a reusable operation?" and "what's a pithy summary for all this algorithmic fluff?"

Also, as I pursue the Project Euler problems the "functional programming lite" of Python backed by my "Gin-soaked recollections of APL" are both very helpful in tackling the exercises.

link|flag
Thanks for that Steven - will be interesting to see how much it affects my own Python. Also if you don't mind me asking, what is your username on Project Euler? Do you post your Python solutions? – ozan Apr 14 at 14:35
On ProjectEuler, I'm "slott". No, I don't post my solutions. I'm only level 1, right now -- I have two to go to get to level 2. – S.Lott Apr 14 at 15:12
vote up 4 vote down

I think your 3 points show that you don't NEED to learn J. However, I can't think of any situation where learning a new language is harmful.

Taking time to learn something you are interested in (or any new language) always improves your other programming skills. You learn different approaches to problems that you may be able to implement differently with other languages.

Plus, with the minimal syntax of J, it would be a good language to ensure you are getting correct results when you implement a solution in another language.

link|flag
vote up 3 vote down

I used to work as an APL programmer for several years back in the 1970s. I love the language, but have not used it for years.

It is a great language for some things, but I really can't invision using it for web development for example.

What it is great for is statistical and matrix operations. You can solve a liner programming problem in 3 characters. It is much easier to prove the correctness of that LP implementation than one which takes pages in C for example.

So if you want to learn it for the joy of learning, I say go for it. To enhance your job prospects, well there are probably lots of other things to learn which will impress a potential employer more.

link|flag
In finance, knowledge of Q/Kdb+ can be quite a resume helper – Scott Weinstein May 7 at 2:35
vote up 1 vote down

Back in the eldar days I was an APL language developer, coding in 370 assembler. I ported J to OS2, but never learned how to use it for real work. I'm currently working in Java and PHP and was evaluating Python. After the first 3 sections of the Python tutorial I was struck by the many similarities it had to APL, that brought me here.

I'd strongly recommend learning APL or J as an intellectual exercise. It will change your way of thinking about programming (warp your brain) and probably help your Python coding. Also there are a few jobs out there for APL and J programmers, and probably less programmers than jobs.

link|flag
vote up 1 vote down

I make my living with APL since 1980. I am looking foward to continue to do so for some more years to come. It's not only great fun to use APL, the language offers outstanding debugging features. Modern implementations are fully fledged functional languages and are object-oriented as well.

I met many people over the years asking me how long I guess I would be able to continue with APL. Those guys were dbase and PL/1 and ALGOL and Pascal and Forth and C and Focus and other programmers. Got it?!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.