Why You Should Start Dart’ing Right Now
dreamintech.net
Why You Should Start Dart’ing Right Now
1–10 of 30 posts
Re: Why You Should Start Dart’ing Right Now
#2Re: Why You Should Start Dart’ing Right Now
#3[deleted]
I was on at #dart @ Freenode which is their official IRC channel today and the guys at the hackathon were building a way of using Dart to control an Arduino board. Pretty cool stuff.
Re: Why You Should Start Dart’ing Right Now
#4[deleted]
It's a great language and with the series of hackathons they planned they will spread the language and help improve it. I was on at #dart @ Freenode which is their official IRC channel today and the guys at the hackathon were building a way of using Dart to control an Arduino board. Pretty cool stuff.
This we-are-from-Google-and-everyone-else-is-stupid approach to language design is imho the real disease (also see the comment on Google Guava, that tells a lot).
I just don't want to develop in a language which throws the last 2 decades of language design experience over board because they designed a language for the lowest common denominator.
EDIT ====
Some people don't know the comment from the Google Guava authors, so here it is: https://plus.google.com/113026104107031516488/posts/ZRdtjTL1...
The problem imho is that this attitude, behavior and world-view is endemic inside Google. (Look at all the NIH stuff written solely because it was non-Google.)
They think YOU are stupid and treat you like a kid, keeping away potentially useful functionality they deem to advanced for you.
Re "decades of language design":
- nulls, even for numbers. Seriously? So there is no efficient integer type which can be mapped to simple CPU instructions, but they also make sure that the arbitrarily sized one is slow without huge investments into VM technology and data flow analysis? Additionally, double is of course fixed length. Just wondering ... shouldn't this be exactly the other way around?
- A totally broken approach to types. The guy designing the language is more or less at war with static type systems. Seems like he is trying to prove a point by designing the most useless, statically-typed-looking system he can come up with. I mean seriously ... they allow people to write types down, but declare that they have no effect at all? Java did that too with the type erasure of Generics and everybody knows how that tiny amount of we-will-ignore-the-stuff-you-wrote worked out. Now extrapolate to a language which does that for everything.
- Single-implementation inheritance. Even the COBOL of language design (Java) is moving away from it. Designing a language in the 21st century lacking traits ... are they kidding me?
- Conflation of Null, Unit/Void and Bottom/Nothing.
IMHO, Dart is more or less a combination of all bad ideas of Java (poor Collection libraries, user-visible type erasure, semicola ...) and JavaScript (untyped, collection literals, no usable concurrency ...)
Really, Dart is like PHP. It is a hoax fooling people to believe it is a programming language. For instance: "If the last statement of a function is not a return statement, the statement return null; is implicitly appended to the function body." REALLY? Who in his right mind comes up with ideas like this?
Or this: "Type void: [...] On the other hand, it is possible to return the result of a void method from within a void method. One can also return null; or a value of type Dynamic." Are they KIDDING me?
Another one: "It is a compile-time error for any type other than the types int and double to attempt to extend or implement num." So not only are the provided types the most unfortunate combination imaginable, but the also make it hard for people who want to provide their own number types?
What the Web would have needed was a module system and an approach to security (because the current HTML5/JavaScript implementations of browser vendors lack any thought about it).
Sorry, if I got a bit aggravated at the end, but such remarkable bad language design just infuriates me, especially if it doesn't arise because the language designers are stupid but because they think their users are stupid.
Re: Why You Should Start Dart’ing Right Now
#5For one, debugging client-side code is going to be annoying especially if you end up running into a bug due to the Dart to JavaScript translation. You're going to have to know Dart and JavaScript well in order to debug effectively.
The other side of the coin, server-side, as far as I can tell isn't really ready for prime time (at least that's what the Dart language website says unless I'm misunderstanding them).
Neat idea but I don't see the practicality yet. In all honestly I don't understand the trend to move away from JavaScript especially when all it does is translate into JavaScript. That seems like an extra layer of abstraction that isn't very useful to me especially in debugging.
Re: Why You Should Start Dart’ing Right Now
#6I'd rather use CoffeeScript.
Besides I'm not about to embark on yet another experiment, as a guinea pig, with Google.
Re: Why You Should Start Dart’ing Right Now
#7Earlier quoted context omitted.
It's a great language and with the series of hackathons they planned they will spread the language and help improve it. I was on at #dart @ Freenode which is their official IRC channel today and the guys at the hackathon were building a way of using Dart to control an Arduino board. Pretty cool stuff.
Dart is such an uninspiring, imagined-in-1995 language that I still wonder if I ever find a use-case for it. This we-are-from-Google-and-everyone-else-is-stupid approach to language design is imho the real disease (also see the comment on Google Guava, that tells a lot). I just don't want to develop in a language which throws the last 2 decades of language design experience over board because they designed a language…
I'm not a DART developer, but by checking out this: http://synonym.dartlang.org/ it seems to me that the language is doing some great things: Getting rid of "undefined", adding a class+extend, optional params are much better compared to JS, jquery-like DOM querying.
Re: Why You Should Start Dart’ing Right Now
#8Earlier quoted context omitted.
It's a great language and with the series of hackathons they planned they will spread the language and help improve it. I was on at #dart @ Freenode which is their official IRC channel today and the guys at the hackathon were building a way of using Dart to control an Arduino board. Pretty cool stuff.
Dart is such an uninspiring, imagined-in-1995 language that I still wonder if I ever find a use-case for it. This we-are-from-Google-and-everyone-else-is-stupid approach to language design is imho the real disease (also see the comment on Google Guava, that tells a lot). I just don't want to develop in a language which throws the last 2 decades of language design experience over board because they designed a language…
Re: Why You Should Start Dart’ing Right Now
#9When you're able to take Dart and reliably, run it on both the server and the web client then it may be interesting. Right now I don't see a good use case for it right now. For one, debugging client-side code is going to be annoying especially if you end up running into a bug due to the Dart to JavaScript translation. You're going to have to know Dart and JavaScript well in order to debug effectively. The other side…
The way dart works is that it compiles into optimized javascript that the average javascripter wouldnt end up writing. The resulting code is weird and wacky, but it usually works. From my own understanding, that's the cool part.
Re: Why You Should Start Dart’ing Right Now
#10Earlier quoted context omitted.
It's a great language and with the series of hackathons they planned they will spread the language and help improve it. I was on at #dart @ Freenode which is their official IRC channel today and the guys at the hackathon were building a way of using Dart to control an Arduino board. Pretty cool stuff.
Dart is such an uninspiring, imagined-in-1995 language that I still wonder if I ever find a use-case for it. This we-are-from-Google-and-everyone-else-is-stupid approach to language design is imho the real disease (also see the comment on Google Guava, that tells a lot). I just don't want to develop in a language which throws the last 2 decades of language design experience over board because they designed a language…
What comment on Guava? I just googled "guava sucks" and came up with nothing.
IMO, Guava is absolutely _fantastic_, and they're improving it all the time. If people are thinking otherwise, that's news to me and I'd like to hear why.