kmiroslav | 9 years ago | on: I Love Go; I Hate Go
kmiroslav's comments
kmiroslav | 9 years ago | on: I Love Go; I Hate Go
No, they're not.
There are a few necessary conditions for this kind of symbiosis to work well:
- The language has to be statically typed. Without type information, the IDE is completely blind and can barely help you at all without human supervision.
- The IDE has to be written on top of the same runtime as the language it's editing. This is what makes Eclipse/IDEA and Visual Studio so spectacular: they understand the bytecode they are working with.
These are necessary conditions but they're not sufficient. You can still write crappy IDE's if these conditions are met, but thankfully, IDEA/Eclipse/Visual Studio are technical wonders that multiply the productivity of their users.
For example, in Go, the simple action of selecting the the surrounding expression simply doesn't exist anywhere. It's the most basic automatic action that's trivial to do with the proper language and IDE, and yet nonexistent in Go. Along with tens of others.
That's the price to pay when a language is designed without any consideration for its tooling nor basic things we learned about language design these past twenty years.
kmiroslav | 9 years ago | on: I Love Go; I Hate Go
In this particular case, the IDE could automatically remove the imports when you remove the corresponding symbol from your source, or automatically add the import when you introduce a new symbol.
The "can be supplied by any external tool" is a cop out that was acceptable in the 20th century but this is 2016, we have a higher bar for developer productivity.
kmiroslav | 9 years ago | on: I Love Go; I Hate Go
Anyone using a modern IDE pretty much never even thinks about imports, which are (and should be) automatically managed by the tool, not by the programmer.
kmiroslav | 9 years ago | on: Snowden and WikiLeaks clash over leaked Democratic Party emails
kmiroslav | 9 years ago | on: Alphabet Loses $859M on 'Moonshots' in 2Q 2016
It only takes one of these moon shots to be successful to bring in extraordinary revenues, and Google has always been crystal clear that following such path was in their DNA.
kmiroslav | 9 years ago | on: The 2016 Top Programming Languages
kmiroslav | 9 years ago | on: LastPass autofill exploit
kmiroslav | 9 years ago | on: LastPass autofill exploit
What's the difference with simply going to "http://twitter.com"?
This looks more like a bug than a vulnerability, what am I missing?
kmiroslav | 9 years ago | on: Why Angular 2 Switched to TypeScript
kmiroslav | 9 years ago | on: Why Angular 2 Switched to TypeScript
The simple truth is that today, statically typed languages have all the advantages that once used to be the exclusivity of dynamically typed languages, while the reverse is still not true.
In 2016, there is really very little reason to pick a dynamically typed language for any serious project.
Javascript is going to be around for a while because of inertia, but it's pretty much the last mainstream dynamically typed language we'll see.
kmiroslav | 9 years ago | on: Programming Language Rankings: June 2016
kmiroslav | 9 years ago | on: AngularDart is going all Dart
Well, it does mean something. Go is evidence that languages can gain momentum very fast so the fact that Dart still hasn't should be a bit of a concern (and probably partially caused by Typescript's popularity).
kmiroslav | 9 years ago | on: Yahoo misses profit expectations in what could be its last-ever earnings report
kmiroslav | 9 years ago | on: Destroy All Ifs – A Perspective from Functional Programming
kmiroslav | 9 years ago | on: Destroy All Ifs – A Perspective from Functional Programming
listOf(1, 2, 3, 4).filter { it % 2 == 0 }kmiroslav | 9 years ago | on: The Lily Programming Language
You know, it wouldn't surprise me in the least if you're the only developer who ever created a language and whose day job is not writing code.
Hat's off to you, seriously impressive.
kmiroslav | 9 years ago | on: NRA complaint takes down Surge's 38,000 websites
kmiroslav | 9 years ago | on: “Hello world” in the BCPL language on the Xerox Alto simulator
kmiroslav | 9 years ago | on: Why Google Stores Billions of Lines of Code in a Single Repository