Echo JS 0.11.0

<~>

gotofritz comments

gotofritz 3952 days ago. link 0 point
Downvoted because this is UX / Design, not JS / CSS nor HTML 5.
gotofritz 3969 days ago. link 1 point
Gosh, haven't we had enough of comma first / no semicolons flamewars?
gotofritz 3969 days ago. link 1 point
-1

I like a JS aggregator to list just JS links. For everything else there's Hacker News (or whatever else you use)
gotofritz 3986 days ago. link 3 points
linkbait. the only optimization technique they give is


    // Slow cycle
    for(var i=0; i<items.length; i++) {
    // code is here...
    }
    // this one is faster
    var size = items.length;
    for(var i=0;i<size; i++){
    // code is here...
    }
gotofritz 4009 days ago. link 2 points
How many developers still use dojo these days? I thought it was pretty much dead.
[more]