Java at 30: Interview with James Gosling
thenewstack.io
Java at 30: Interview with James Gosling
1–10 of 437 posts
Re: Java at 30: Interview with James Gosling
#2As long as I am expressing gratitude, I would also like to call out the Clojure team for developing a wonderful ecosystem in top of Java and the JVM.
It must be wonderful to do work that positively affects the lives of millions of people.
Re: Java at 30: Interview with James Gosling
#3Re: Java at 30: Interview with James Gosling
#4Right on, James Gosling's work is amazing, and he and the whole Java ecosystem have my gratitude: I went to the first Java World Tour conference and wrote a little blog article about it that was linked on Sun's home Java page for about a year. I was very lucky, and since I was the first search hit for 'Java consultant' for a very long time that gave my wife and I the freedom to live in a rural area and I could get re…
I took the severance package when Taligent imploded, dropped everything I was doing at the time, and have been working with Java and its related software ever since.
Re: Java at 30: Interview with James Gosling
#5Re: Java at 30: Interview with James Gosling
#6Why is Java so popular in enterprise?
Re: Java at 30: Interview with James Gosling
#7Java syntax isn't perfect, but it is consistent, and predictable. And hey, if you're using an Idea or Eclipse (and not notepad, atom, etc), it's just pressing control-space all day and you're fine.
Java memory management seems weird from a Unix Philosophy POV, till you understand whats happening. Again, not perfect, but a good tradeoff.
What do you get for all of these tradeoffs? Speed, memory safety. But with that you still still have dynamic invocation capabilities (making things like interception possible) and hotswap/live redefinition (things that C/CPP cannot do).
Perfect? No, but very practical for the real world use case.
Re: Java at 30: Interview with James Gosling
#8Why is Java so popular in enterprise?
Re: Java at 30: Interview with James Gosling
#9Why is Java so popular in enterprise?
Re: Java at 30: Interview with James Gosling
#10Why is Java so popular in enterprise?
Decent tooling. Been around for long enough that a lot of the quirks of it are well known and documented. Basically it's a blue collar programming language without too many gotchas. Modern(ish) day Cobol.
(I'm predominantly a Java dev still, even after diversions over the years to Javascript, Python and C#).