Resource

Use css standard selectors to retrieve results from a json object.

orenf 09/02/2012 - 11:41

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

Haven't tried em.

But you may find this useful.

 

tomerr 17/01/2012 - 12:07

A new wrapper for mobile devices (as phonegap) using front end - html, css and js.

orenf 17/01/2012 - 09:33

This is an excellent incremental api search for: javascript, dom, css, jquery, php, html.

In example, results are presented on the right side from mozilla documentation (js, css, dom) while typing any query in the input search field.

This is a must have tool/tab for developers.

 

orenf 11/01/2012 - 11:25

Kotlin is a language developed by JetBrains (who develop the Intellij Idea IDE). It aims to be an alternative to Java on the JVM and is developed so it will be easily supported by an IDE (obviously it will be supported by Idea very well)

ittayd 11/01/2012 - 07:41

A playground for front-end:

It's the jsFiddle for running json + mustache + css and getting a live rendered html result.

orenf 09/01/2012 - 23:04

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

categorized node.js libraries.

orenf 17/12/2011 - 18:36

A very nice idea for documenting css code and output an organized documentation files. Quoting the developer:  "..KSS attempts to provide a methodology for writing maintainable, documented CSS within a team. Specifically, KSS is a documentation specification and styleguide format.

orenf 06/12/2011 - 09:04
Syndicate content