Thursday, October 31, 2013

Thursday, October 17, 2013

Friday, October 11, 2013

Shapeways - Make, buy, and sell products with 3D Printing

http://www.shapeways.com/ Make, buy, and sell products with 3D Printing. How it works. 3D Printing Enters the Bronze Age at ShapewaysJust over 5000 years ago man entered the Bronze Age, now you too can have access to the material that mankind used to build the tools that transfo...Read More...

Monday, October 7, 2013

Learning JavaScript Design Patterns

Learning JavaScript Design Patterns: Learning JavaScript Design PatternsA book by Addy OsmaniVolume 1.5.2Introduction What is a Pattern? "Pattern"-ity Testing, Proto-Patterns & The Rule Of Three The Structure Of A Design Pattern Writing Design Patterns Anti-Patterns Categories Of Design Pattern Summary Table Of Design Pattern Categorization JavaScript Design Patterns JavaScript MV* Patterns Modern...

JavaScript » Immediately-Invoked Function Expression (IIFE)

Immediately-Invoked Function Expression (IIFE): Immediately-Invoked Function Expression (IIFE)By "Cowboy" Ben Alman on November 15, 2010 4:33 PM | 0 CommentsIn case you hadn’t noticed, I’m a bit of a stickler for terminology. So, after hearing the popular, yet misleading, JavaScript term “self-executing anonymous function” (or self-invoked anonymous function) one too many...

Javascript Closures: Front to Back | Nettuts+

Closures: Front to Back | Nettuts+: What Is A Closure?One of the key truths of JavaScript is that everything is an object. This, of course, includes functions.A closure is nothing more than a function object with a related scope in which the function’s variables are resolved.Closures get their name because of the way they close over their contents.http://net.tutsplus.com/tutorials/javascript-ajax/closures-front-to-back/ "A...