Instead I'll focus on: market/product (customer dev, shippping, charging) + data techniques (nlp).
Which programming language do you want to learn next?
31–40 of 87 posts
Re: Which programming language do you want to learn next?
#32Forth, still. Written a few bits but want to get serious.
You can go ahead and write your own forth interpreter (or maybe Cat http://cat-language.com ). Writing your own stack-based programming lang is a lot of fun! (That is my toy project for december)
Re: Which programming language do you want to learn next?
#33Re: Which programming language do you want to learn next?
#34Re: Which programming language do you want to learn next?
#35Scala. I want the power of types and functional programming and Actor concurrency, but am leery of doing anything practical with languages like Erlang or Haskell. Plus, Scala runs on the JVM and is thus compatible with all of Java's libraries. The day I have to read a UTF8 string backwards I want to use some standard library, not get creative with a linked list of ints. Plus plus, the Lift framework looks pretty grea…
Re: Which programming language do you want to learn next?
#36Erlang, just for fun. I really want to learn Haskell even better but for a new language I'd pick Erlang for the moment.
I'm glad HN had that crazy "Erlang Day" a few years ago, as that was Erlang's first blip on my radar. Thanks HN :)
Re: Which programming language do you want to learn next?
#37Common Lisp. I have just started scratching the surface of the language(one-two weeks so far). The high opinion that many HNers have for the language played definitely a role in my choice.
Inevitably I've spent a significant amount of time over the last 15 years telling people how wonderful Lisp is without actually using it for anything - so I'm pretty keen to jump back into using Lisp for Web projects.
Re: Which programming language do you want to learn next?
#38http://pragprog.com/titles/btlang/seven-languages-in-seven-w...
Also a little lisp: http://nostarch.com/lisp.htm
Re: Which programming language do you want to learn next?
#39Re: Which programming language do you want to learn next?
#40Scala. I want the power of types and functional programming and Actor concurrency, but am leery of doing anything practical with languages like Erlang or Haskell. Plus, Scala runs on the JVM and is thus compatible with all of Java's libraries. The day I have to read a UTF8 string backwards I want to use some standard library, not get creative with a linked list of ints. Plus plus, the Lift framework looks pretty grea…
Why do learn it for a specific reason? Why not learn a language to expand your mind? Scala is awesome, but Haskell will help you make use of some of its more powerful features. By all means, learn both.
Erlang is interesting and is quite practical too (albeit Scala tends to be practical in more kinds of problems: there many times where you want an easier way to deal state shared between processes than ETS/Amnesia). Knowing Erlang you can make a better decision when to use Scala's own actor facilities and when not to.