The Python Paradox (2004)
41–50 of 275 posts
Re: The Python Paradox (2004)
#42The distinction Python has (wrt to the rest of this list) is that it is a language created by someone who really cares about systems programming, descended from a language (ABC) created by people who really cared about programming theory.
(that said, my vote for the mechanism of python's current popularity is: time and chance)
Re: The Python Paradox (2004)
#43It was right then, but it's kind of dated and misses an evolutionary lesson: beautiful code isn't enough, it has to be safe, beautiful, maintainable, productive, understandable, and resource efficient. Ruby is still great for throwing something together fast and maintaining it until it runs into scale problems. It added gradual typing with sorbet and RBS. Crystal is a neat typed, compiled Ruby-alike but it's buggy. R…
I don't see any fundamental reason why that should be the case. It seems to me that while it's true that most engineers would have a hard time navigating these languages today, it's mostly due to socio-historical accident. It's not because the languages are particularly difficult or arcane, it's mainly because people don't already know it, and people don't like to learn to do things differently: their experience stands in the way.
Re: The Python Paradox (2004)
#44Re: The Python Paradox (2004)
#45Re: The Python Paradox (2004)
#46It's called "anecdotal evidence", the only thing that makes this post credible(-ish) is that PG wrote it.
Re: The Python Paradox (2004)
#47Re: The Python Paradox (2004)
#48- C++ 1985
- Perl 1987
- Visual Basic 1991
- Python 1991
- JavaScript 1995
- Ruby 1995
- Java 1995
- PHP 1995
- C# 2000
Back in 2004, despite how small Python was - it was still in the top 10, just past Delphi. - Java dominated, followed by PHP.
Re: The Python Paradox (2004)
#49Python is a glue language. If you want to be hardcore you write something in rust (or whatever) with python bindings...
If you want to learn rust/go/nim/haskell/whatever do that, and that is probably going to be worthwhile. Do it to learn more about programming, gain fresh perspective, pick up new skills, broaden your mind, any number of reasons. But don't do it to "be hardcore".
Re: The Python Paradox (2004)
#501. Hiring is harder: "When it comes to hiring people, it’s true that programmers versed with functional programming would be, on average, better than those who aren’t. However, the hiring pool itself would shrink massively. Learning a language is an investment, and not many people are using their spare time to learn a new one. As I have seen it happen, demanding functional experience soon becomes an unreasonable expectation."
2. Less resources: What's the point of choosing an esoteric langauge and having to build nearly everything from scratch. You're basically throwing away years of experience that a vibrant community provides.
3. Hackers use languages they know: I am nearing 30, and having seen rise and fall of many tech trends, I want to play my cards right. Why should I waste my energy on learning a new language, especially when it can fade into obscurity and the output is going to be the same anyway? MeteorJS[2] was supposed to revolutionize front-end programming, who is talking about it now?
Facebook was written in PHP. Mark used one language he knew and a $300B company was built on top of it. While a company I worked at that prided itself on being written in Clojure, slowly felt behind the competition and barely managed to get acquired (at a deep discount to what they raised funding at). Trust me, your time is better spent shipping, and learning internals of how things work.
[1]: https://shubhamjain.co/2018/12/01/why-paul-graham-wrong/