Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
Java

The Linux Foundation Helps Launch the JS Foundation (softpedia.com) 34

An anonymous reader writes from a report via Softpedia: Today, the Linux Foundation announced the creation of a new entity named the JS Foundation that will serve as an umbrella project and guiding force for various open-source utilities at the heart of the JavaScript ecosystem. The JS Foundation is actually the jQuery Foundation, which was expanded with the help of companies such as IBM and Samsung. With jQuery slowly bowing out to newer tools, the jQuery Foundation's members and their unmatched expertise will most likely be put to good use in managing the slew of new tools making up today's JavaScript landscape. The list of JS Foundation founding members includes Bocoup, IBM, Ripple, Samsung, Sauce Labs, Sense Tecnic Systems, SitePen, StackPath, University of Westminster and WebsiteSetup. In alphabetical order, the JS Foundation's initial projects are Appium, Chassis, Dojo Toolkit, ESLint, Esprima, Globalize, Grunt, Interledger.js, Intern, Jed, JerryScript, jQuery, jQuery Mobile, jQuery UI, Lodash, Mocha, Moment, Node-RED, PEP, QUnit, RequireJS, Sizzle, and webpack. "Using jQuery can constitute the use of a sledgehammer for putting small nails into an Ikea TV stand; however, as a piece of engineering, it really is a thing of beauty," says A. M. Douglas, British freelance web developer. "[T]he word 'jQuery' has become synonymous with 'JavaScript' for many. As of today, jQuery's days as a relevant tool are indeed numbered, but I think jQuery's source code will always have relevance, as it is a brilliant example to study for anybody seeking to learn and master JavaScript," Douglas also adds.

Comment Re: Yeah, that's just what the world needs (Score 1) 625

I don't think we need to be able to better treat diseases to counteract aging. Aging happens to us from the day we're born for 90-100 years max. Slowing down that process so that it takes 300 years to do the same thing, seems achievable without messing with heart disease or cancer. It's no guarantee anyone will live that long, and in fact, the further out we extend it the more likely accidents, or heart disease, or cancer will pay a role, and less likely anyone will be able to achieve max lifespan - but at least it's a possibility.

Comment Re:simplify? (Score 1) 473

And people wonder why Apple is raking in money hand over fist.

Yeah, it's because of their simple computer line-up that was on the brink of bankruptcy just a few years ago - nothing to do with practically inventing 3 product categories: mp3 players, smartphones, smarttablets - and riding that wave back to the shore of their computer lineup.

Comment Re:that's the essence of copyright (Score 1) 560

I'm an openly rabid pirater and I still go to the movies for the social experience, the quality and mainly the popcorn :) Studios are realizing this, and innovating accordingly with more movies in 3D, more movies in imax, and theaters that actually serve dinner during the movie (great experience by the way). Movies routinely make hundreds of millions of dollars more than their cost in boxoffice dollars alone. The incentive to make big budget movies will be there for a long time to come.

Comment Re:Optimization (Score 1) 173

Usually, the cost of more computer resource is vastly lower than the cost of a programmer doing optimisation. Jeff Atwood has written frequently on the subject.

That's not necessarily true in the cloud. Consider a site that processes 100 requests per second, and on every request the site needs the same 100 row recordset. If you had a traditional, fixed-cost, non-cloud environment, and the site was performing nicely, it wouldn't matter whether that recordset was being pulled from the db on every request or from cache or wherever.

In a cloud environment like Amazon's, however, you are charged for all transfer and requests in and out of the db. So even if your site is fast, there may be a very compelling monetary argument to optimize that process by having it come from ram rather than hit the database.

At 100 requests/second and if the data were only updated monthly, you could be paying many orders of magnitude more money by not spending that tiny bit of developer time.

--

The cloud is nothing more than a datacenter, only as much as twitter is nothing more than updating your finger file

Slashdot Top Deals

Never keep up with the Joneses. Drag them down to your level. -- Quentin Crisp

Working...