The Uncommon Advantage from Training in Unpopular Programming Languages
1–10 of 15 posts
Re: The Uncommon Advantage from Training in Unpopular Programming Languages
#2> approximately 50-hour training course
Is this really long enough to achieve anything? That's like "FP 101 (one semester)" if you don't take the time to do the homework.
Re: The Uncommon Advantage from Training in Unpopular Programming Languages
#3This feels like a low-content article. The only thing I can get out of it is: Learning Haskell teaches you language features and patterns that you can take to other languages. As an FP dabbler I agree, but I wish there were more to this. > approximately 50-hour training course Is this really long enough to achieve anything? That's like "FP 101 (one semester)" if you don't take the time to do the homework.
Re: The Uncommon Advantage from Training in Unpopular Programming Languages
#4Re: The Uncommon Advantage from Training in Unpopular Programming Languages
#5The most fun I've had coding was in SQL, making it do algorithms. It's actually surprisingly well-suited.
I also really enjoyed learning x86 assembly.
More important than languages are ecosystems, communities, and technological traditions. Like Unix. Becoming a Unix hacker, or an Urbit hacker, or playing CTFs, you kind of learn a whole little computational ethos that you carry with you forever. The programming language fits into that bigger picture.
Re: The Uncommon Advantage from Training in Unpopular Programming Languages
#6Re: The Uncommon Advantage from Training in Unpopular Programming Languages
#7I am convinced that no perfect lingua franca exists, and that even the best, richest, languages you can think of, with giant ecosystems and millions of users, have massive holes that guarantee another language has a meaty role. C is the closest, and whole industries have been borne trying to solve its problems.
If I was in charge of Educating The Young, I would ask that they learn C, something culturally descendant from C, and something wildly different from it.
(It occurs to me that one could make exactly the same comment about human languages too, which is why contract lawyers exist, I suppose. And my advice there would be to maybe learn English, German/French, and then something unrelated, like Mandarin Chinese. Or Finnish. I do feel strongly that learning a second language gives you new ways of thinking that are not easily available in your mother tongue.)
Re: The Uncommon Advantage from Training in Unpopular Programming Languages
#8It would be interesting to know why many of their projects are gradually transitioning to other languages. If someone paid me for programing in Haskell I would never voluntarily switch to something more boring.
1. It’s easier to find developers who are skilled in the more popular languages.
2. Using a language is more than just its syntax and semantics; the ecosystem of tools and libraries for the language matters a lot, especially for commercial development. Interoperability between the language’s infrastructure and the desired platform the system needs to run on or interact with is also key.
I work in machine learning. I’d love to use Common Lisp or a statically-typed functional programming language like OCaml or Haskell, but I work with colleagues who know Python, and we rely heavily on Python’s extensive numerical computing and machine learning libraries. Promoting functional programming languages in this environment is like promoting Plan 9 to those who need Microsoft Office or the Adobe Creative Suite.
Re: The Uncommon Advantage from Training in Unpopular Programming Languages
#9It would be interesting to know why many of their projects are gradually transitioning to other languages. If someone paid me for programing in Haskell I would never voluntarily switch to something more boring.
I could think of two possibilities off the top of my head: 1. It’s easier to find developers who are skilled in the more popular languages. 2. Using a language is more than just its syntax and semantics; the ecosystem of tools and libraries for the language matters a lot, especially for commercial development. Interoperability between the language’s infrastructure and the desired platform the system needs to run on o…
Re: The Uncommon Advantage from Training in Unpopular Programming Languages
#10Sounds like the Haskell version of Eric S. Raymond's oft quoted claim about Lisp: "Lisp is worth learning for the profound enlightenment experience you will have when you finally get it; that experience will make you a better programmer for the rest of your days, even if you never actually use Lisp itself a lot."