javascript Programming Glossary: nicholas
JavaScript: “Function calls are expensive” vs. “Keep functions small” http://stackoverflow.com/questions/11168939/javascript-function-calls-are-expensive-vs-keep-functions-small expensive and that they impact efficiency for example on Nicholas Zakas' Google tech talk . On the other hand however it seems..
Why would one use the Publish/Subscribe pattern (in JS/jQuery)? http://stackoverflow.com/questions/13512949/why-would-one-use-the-publish-subscribe-pattern-in-js-jquery tweet For this approach there's an excellent talk by Nicholas Zakas . For the MV approach the best articles and books I know..
Turning two elements visible/hidden in the same div http://stackoverflow.com/questions/17725361/turning-two-elements-visible-hidden-in-the-same-div a very enlightening lecture from Google font end engineer Nicholas Zakas on JavaScript optimization this opened my eyes on a few..
How does this JavaScript/JQuery Syntax work: (function( window, undefined ) { })(window)? http://stackoverflow.com/questions/2716069/how-does-this-javascript-jquery-syntax-work-function-window-undefined
Architecture of a single-page JavaScript web application? http://stackoverflow.com/questions/3050869/architecture-of-a-single-page-javascript-web-application also found Scalable JavaScript Application Architecture by Nicholas Zakas helpful in researching client side architecture options...
JavaScript loop performance - Why is to decrement the iterator toward 0 faster than incrementing http://stackoverflow.com/questions/3520688/javascript-loop-performance-why-is-to-decrement-the-iterator-toward-0-faster-t the total length actually the chapter was written by Nicholas C. Zakas . This change can result in savings of up to 50 off..
Top-Rated JavaScript Blogs [closed] http://stackoverflow.com/questions/409056/top-rated-javascript-blogs by Juriy Zaytsev DailyJS @Ric NCZOnline @Kenny Eliasson by Nicholas C. Zakas JSPatterns by Stoyan Stefanov Badass JavaScript by..
Dynamically fill in form values with jQuery http://stackoverflow.com/questions/558445/dynamically-fill-in-form-values-with-jquery started with this would be very much appreciated. Thanks. Nicholas javascript jquery database ajax dynamic share improve this..
How do I create a custom Error in JavaScript? http://stackoverflow.com/questions/783818/how-do-i-create-a-custom-error-in-javascript prototype to Error.prototype instead of new Error like Nicholas Zakas did in his article I created a jsFiddle with the code..
HTML5 Canvas Performance and Optimization Tips, Tricks and Coding Best Practices http://stackoverflow.com/questions/8205828/html5-canvas-performance-and-optimization-tips-tricks-and-coding-best-practices device's battery if you leave it open in the background. Nicholas Zakas wrote a hugely detailed and informative article about..
“Offsite” copy of the DOM to do manipulations http://stackoverflow.com/questions/9319017/offsite-copy-of-the-dom-to-do-manipulations to do manipulations I have recently watched a video of Nicholas Zakas talk about high performace scripts. This one is about..
What architectural pattern(s) should I use for my RIA? [closed] http://stackoverflow.com/questions/9977400/what-architectural-patterns-should-i-use-for-my-ria working. JQuery Can't get away from this awesome library. Nicholas Zakas' presentation on Scalable JavaScript Application Architecture..
|