Linked by Adam S on Sun 15th Jun 2008 21:59 UTC
General Development RoughlyDrafted Magazine has posted an in-depth article that examines Sproutcore, an Apple-backed Javascript framework that approximates Cocoa on the web. The article examines why using HTML, Javascript, and CSS just may win the battle with Flash, Silverlight, and Java for rich internet application deployment. Sproutcore enables web developers to create full-featured cross-browser web apps an in a Model, View, Controller convention, much like Rails. The Sproutcore site has some great tutorials that show off the framework.
Thread beginning with comment 318715
To view parent comment, click here.
To read all comments associated with this story, please click here.
RE[3]: Progress?
by Clinton on Tue 17th Jun 2008 06:37 UTC in reply to "RE[2]: Progress?"
Clinton
Member since:
2005-07-05

@danieldk

I forgot one point I wanted to make regarding your threading comment...

Most of the common uses of threading in real-world applications do not improve overall performance of an application anyway, no matter how many cores your machine has. The benefits of multicore desktop machines come from multitasking and not from single applications that use threads.

Reply Parent Bookmark Score: 2

RE[4]: Progress?
by anarxia on Tue 17th Jun 2008 10:27 in reply to "RE[3]: Progress?"
anarxia Member since:
2006-06-02

desktop != server. On the server side multiple threads/processes improve performance (requests per second) even for single-core machines if you have more than one user.

Reply Parent Bookmark Score: 1

RE[5]: Progress?
by Clinton on Wed 18th Jun 2008 00:19 in reply to "RE[4]: Progress?"
Clinton Member since:
2005-07-05

That depends on the program. In my experience, most real-world programs don't use threads effectively for performance (actually, most real-world programs don't use threads at all).

But, since both Python and Java support threads, I don't know why we're arguing over it.

Reply Parent Bookmark Score: 2