Hacker News new | ask | show | jobs
by SkyMarshal 5561 days ago
Same point PG made in one of his essays about text editors vs IDE's. With the former you learn and master the language, with the latter you learn the editor and features like code completion substitute for mastering the language.
1 comments

This is utter bull, even if PG said it. I've learned a huge amount about Java by using an editor (Intellij) that has real time static analysis of my code and points out when I'm making common mistakes with corners of the language (calling overrideable methods during object construction, for example). It's incredibly useful and informative.
Eh, was Oliver Steele, not PG. Old essay, somehow I started attributing it to PG instead:

http://osteele.com/archives/2004/11/ides

Perhaps out of date now, given what IDE's can do, though I personally still prefer to learn a language and toolchain with a text editor, then graduate to Eclipse for the benefits you mention.

> I've learned a huge amount about Java

But did you learn a huge amount about programming?