The lists are quite similar with a slight reordering in the top 7 or 8. I guess both lists are a representative sample of developers… But there is one interesting difference:
It's fairly ingrained in the programming world now. A lot of common problems are known and solved. A lot of devs can code in Java with little uptake. Java runs everywhere. The tools are pretty good.
Desktop apps and servers run it. So like, processing things and all that run well with it.
As mentioned before, Android uses it too. So there's a lot going on.
Java is the only programming language to get popular as a result of marketing. Java was marketed so hard that the company who built it (Sun) went under, but Java did get some really wide adoption.
Java is the backbone of Android. If you want to build apps for Android you're using Java or one of the languages built on top of it (Kotlin, Scala, etc).
It's pretty hard to justify rewriting your codebase to another language. So Java is still around. If you need more proof of this, Most people are still using Java 8 (including android) we are currently at ~java 20.
Very few android jobs are Java anymore. Native android is almost exclusively Kotlin, barring legacy code.
This is because Kotlin has nearly full interop with Java code and integrates into Gradle well. You can just swap over to Kotlin dev with a small investment of a few weeks learning curve, then program faster and cleaner than Java.
Android is currently on Java 17 for what it's worth, though very few codebases have gone through the process of upgrading to 17/Kotlin 1.9/Gradle 8.1
Java is the only programming language to get popular as a result of marketing.
I don't think this is true. Java is an outstanding tech stack and was revolutionary in a lot of ways, to the point that it motivated others to shamelessly clone it and in the process create other outstanding tech stacks. See C#.
For starters, Java solved the deployment problem way before containerization was a thing. Developers could simply put together a fat JAR, drop it in a web server like Tomcat, and it would simply reload without a hiccup.
Java is also very tooling-friendly, and has a solid versioning policy.
Just as an example, I worked as a contractor with the biggest bank in Latin America before and basically all their server code is Java (with new code in Kotlin nowadays).
I find it amazing that rust is still so far down. Is there something about the language or the community holding it back from gaining spots? Or is it just that other languages are so established, that writing the things that already exist in them just keeps its usercount high?
Yea I'm mostly poking fun. You don't even need script embedding for Turing Completeness. But I don't consider DSLs as general purpose languages, as by definition they are not intended to be used that way.