Posts

Showing posts with the label Dart

about that post

I have been blamed and insulted enough so I removed the possibility to comment and I also invite you again to do not stop reading the title of a generic post here or anywhere around the net. I would like to summarize few parts of that post: on real world we should use the proper flag in order to generate files where only necessary parts of the library is included ... I agree that at this stage can be premature to judge the quality of Dart code, once translated for JavaSript world ... Google is a great company loads of ultra skilled Engineers ... n.d. I have proposed a fix for Dart code ... you may realize how much overhead exists in Dart once this is used in non Dart capable browsers ... Was operator overload the reason the web sucks as it is? ... everything 2 up to 10 times slower for devices, specially older one, that will never see a native Dart engine in core ... Not Really What We Need Today ... What are the performances boost that V8 or WebCL will never achieve ? ... What is the...

What Is Wrong About 17259 Lines Of Code

Is the most popular, somehow pointless, and often funny gist of these days. It's about Dart , the JavaScript alternative proposed by Google. Why So Many Lines Of Code The reason a simple "Hello World" contains such amount of code is because: the whole library core is included and not minified/optimized but on real world we should use the proper flag in order to generate files where only necessary parts of the library is included whoever created such core library did not think about optimizing his code What am I saying, is that common techniques as code reusability do not seem to be in place at all: // first 15 lines of Dart core function native_ArrayFactory__new(typeToken, length) { return RTT.setTypeInfo( new Array(length), Array.$lookupRTT(RTT.getTypeInfo(typeToken).typeArgs)); } function native_ListFactory__new(typeToken, length) { return RTT.setTypeInfo( new Array(length), Array.$lookupRTT(RTT.getTypeInfo(typeToken).typeArgs)); } ListFact...

My New Programming Language

yeah, you read it correctly ... we all need another better programming language because everything we've done until now sucks. What Sucks the fact we don't learn by mistakes, which means all of us should instantly try to create a new " secretly open source programming language " so that the rest of the world can only endure it once it's out, rather than contribute to make it better/needed as it's happening since at least 5 years with JavaScript in all possible, and truly open, channels the fact Java, .NET, and all others failed ... 'cause we are still looking for a new programming language in these days where C++ X11 has been approved while C never died the fact we keep thinking that performances are possible only with compiled languages forgetting that better algorithms, better practices, better tools to develop and track leaks, memory consumptions, CPU/GPU cycles, can make any software fast enough or ... ... the fact new standards are coming to help us w...