javascript

This is part 1 of a series exploring how to build a full-pledged UML editor in pure JavaScript. 

 

Why JavaScript

I really love Python & its wonderful frameworks - they brought me pure joy & satisfaction for the past 6 years.

However, I'm forced to acknowledge that the times they are a-changin: logic moves back to the client-side, leaving the server-side to do almost nothing (just data access, usually). Further more, the server side turned into a series of disporate API's, which the client consumes, provided by different vendors - so now even the data access moves to the client, which talks directly with datastore providers.

udib 05/02/2012 - 23:27
HTML5 is the hottest new advance in web technologies. The work on HTML5, which started in 2004 and that was carried out mainly by the W3C and WHATWG, slowly caught the attention of all major web-browsers vendors that now take active part in setting its future. Being able to handle complex user-interfaces, deliver multimedia & 3d content made HTML5, along with recent JavaScript and CSS3 Enhancements, the ultimate choice for web, mobile, and even rich desktop applications.
 
Tikal Knowledge, provider of open source solutions and services, invites you to learn about the new approaches and solutions in HTML5,CSS3 and Javascript.

 

General Information 

Date: Tuesday, February 28th on 8:30 - 12:30
orenf 31/01/2012 - 14:55

It is interesting to note that Javascript is becoming more and more an assembly language for the web. Javascript is used more and more as either the direct "VM" for new languages (e.g., coffeescript) , or an additional backend. See here a detailed list

 

The newes addition is ClojureScript, a dialect of clojure that compiles to Javascript. Here is the rationale behind it. Rich Hickey, creator of clojure is behind it.

 

I find two interesting issues here:

ittayd 21/07/2011 - 09:33

 This ariticle give long and comprehensive look on Dart vs. JavaScript.

 

www.infoworld.com/d/application-development/first-look-google-dart-vs-javascript-179852

 

aviy 02/02/2012 - 23:23

Enyo is the WebOS javascript framework, so its main target is mobile platforms (but it doesn't allow you to interact with native services, the FAQ recommends wrapping it in phonegap).

 

It has the same "feel" like sancha (extjs) in that html is generated from javascript.

 

One nice thing it has is that it can create a class out of a control configuration:

enyo.kind({
    name: "Hello",
    kind: enyo.Control,
    components: [
        {name: "hello", content: "Hello From Enyo", ontap: "helloTap"},
        {tag: "hr"}
    ],
    helloTap: function() {
        this.$.hello.addStyles("color: red");
    }
};
 
// now create and use the new classes
new Hello().write();
new Hello().write();

 

ittayd 26/01/2012 - 06:23

I don't know how many of you familiar with this new Google attempt to create new technology that might eventually replace JavaScript.

In the following video www.youtube.com/watch you can watch a preview about this technology.

which include among all other regular syntax and rule of programing language new approach for static typing vs dynamic typing. which enable you to have them both in your program.

 

In the video they explain way you may need static typing.

I know there is a big argue around this but i think this video is worth seeing, since  this technology is being developed from the guys who developed V8 engine.

 

 

Dart Link

 

Avi

 

aviy 23/01/2012 - 11:58

Haven't tried em.

But you may find this useful.

 

tomerr 17/01/2012 - 12:07

This meeting will focus on js architecture, innovative idea's for frameworks, libraries and sharing ideas.

 

orenf 05/01/2012 - 08:57

impress.js is another example of the powerfull use of javascript+html5+css3. It is a clone of prezi. This means, it is a presentation tool where the flow is not through slides, but through zomming (focusing) on different parts of a large canvas. The steps are defined in HTML and the javascript package handles the transition. This means, authoring the presentation can be done in whatever HTML editor and not limited to a small subset of tools, as in prezi

 

source code: https://github.com/bartaz/impress.js

ittayd 02/01/2012 - 07:29

This entry explains the internals of Nod.js reqiure() & exports objects.

adi 01/01/2012 - 13:15
Syndicate content