Questions tagged [dart]
Dart (originally, Dash) is an open source Web programming language developed by Google. The goal of Dart is ultimately to replace JavaScript as the lingua franca of web development on the open web platform.
18 questions
3
votes
3
answers
193
views
Why does the collection library for Dart use a bit mask for hashing collections?
I was implementing a hashing function for a class and I took a minute to look at the first-party collection package for Dart to see how they implemented their hashing function for collections. They ...
2
votes
3
answers
944
views
Streams and clean architecture
I am pretty new to async programming and the whole stream stuff, since i have a web programming background with php, where async programming and streams isn't really a big topic most time.
I try to ...
2
votes
2
answers
3k
views
Where to place a common database connection in clean architecture?
I am currently trying to follow the clean architecture approach but i wonder where common things like a database connections should take place.
Since i think a database connection usually will be ...
2
votes
1
answer
165
views
Can 32/64 bit version of Dart SDK have any effect on produced javascript code?
I just started collaborating remotely on a project. Project manager explicitly asked me to download Dart SDK 32bit version. Since I have 64bit machine I asked why to find out more about it. I was told ...
4
votes
1
answer
1k
views
Java "module" size
Is it sensible to have micro-modules, say with only a very few (perhaps one) class in it? Or should I store things in bigger repositories?
I am long-time Java developer with a software-engineering ...
1
vote
2
answers
207
views
Creating a text input simplifaction tool
I have been working on a project for several months now to write a web-based tool that will help me at work. I work at a call center and the CRM software that is used is wretched, we basically have to ...
33
votes
4
answers
9k
views
Does Dart have any useful features for web programmers?
http://www.dartlang.org/
I've checked out the site very briefly, and got curious. Is there any advantages of using Dart? Is it just a replacement for JavaScript?
It looks like simpler Java. Writing ...
2
votes
1
answer
981
views
Were method cascades ever considered for C#?
Smalltalk supports a syntax feature called "message cascades". Cascades are being adopted by the Dart Programming language.
As far as I know, C# doesn't support this. Were they ever considered during ...
1
vote
4
answers
2k
views
Why doesn't the DART language use a special character to identify variables?
I come from a PHP background and I have been considering looking at DART in more detail.
DART is an, open source, front-end/back-end, language for web development.
PHP has a special $ (dollar) ...