├── .bookignore ├── .gitignore ├── Gruntfile.js ├── README.md ├── SUMMARY.md ├── a_misunderstood_language ├── README.md ├── altjs.md ├── conclusion.md └── how_to_characterize.md ├── boilerplates └── README.md ├── book.json ├── common_problems ├── README.md ├── conclusion.md ├── function_syntax.md ├── globals.md ├── nih.md ├── no_op_overloading.md ├── not_all_things.md ├── pyramid.md └── variables.md ├── current_state ├── README.md ├── conclusion.md ├── es6.md ├── hope_for_newbies.md ├── might_run_on_toaster.md ├── more_powerful.md └── there_are_apis.md ├── development_tools ├── README.md ├── chrome.md ├── conclusion.md ├── jsfiddle.md ├── jslint.md ├── live.md └── online_ides.md ├── language_features ├── README.md ├── arguments.md ├── call_and_apply.md ├── conclusion.md ├── data_types.md ├── factories.md ├── functions.md ├── globals.md ├── hoisting.md ├── partial.md ├── properties.md ├── prototypes.md └── this.md ├── modules ├── README.md ├── amd.md ├── anti.md ├── common.md ├── concat.md ├── conclusion.md ├── es6.md ├── package.md └── umd.md ├── package.json ├── presentations └── agilejkl2013 │ ├── .gitignore │ ├── README.md │ ├── app.yaml │ ├── base.html │ ├── config.rb │ ├── images │ ├── appleorange.jpg │ ├── barchart.png │ ├── bigdata.jpg │ ├── chaosmonkey.png │ ├── chart.png │ ├── chrome-logo-tiny.png │ ├── coins.jpg │ ├── crockford.jpg │ ├── dtu1.png │ ├── dtu2.png │ ├── dtu3.png │ ├── elements.png │ ├── enlightenment.jpg │ ├── goodvsrest.jpg │ ├── google_developers_icon_128.png │ ├── google_developers_logo.png │ ├── google_developers_logo_tiny.png │ ├── google_developers_logo_white.png │ ├── ie.jpg │ ├── inspector.png │ ├── io2012_logo.png │ ├── macgyver.jpg │ ├── modernarch.png │ ├── nodetrend.png │ ├── phonegap.jpg │ ├── rage.jpg │ ├── redmonk.png │ ├── shim.jpg │ ├── sky.jpg │ ├── staticarch.png │ ├── strategy.jpg │ ├── strategysimple.png │ ├── terminator.jpg │ └── tradarch.png │ ├── index.html │ ├── js │ ├── hammer.js │ ├── modernizr.custom.45394.js │ ├── order.js │ ├── polyfills │ │ ├── classList.min.js │ │ ├── dataset.min.js │ │ └── history.min.js │ ├── prettify │ │ ├── lang-apollo.js │ │ ├── lang-clj.js │ │ ├── lang-css.js │ │ ├── lang-go.js │ │ ├── lang-hs.js │ │ ├── lang-lisp.js │ │ ├── lang-lua.js │ │ ├── lang-ml.js │ │ ├── lang-n.js │ │ ├── lang-proto.js │ │ ├── lang-scala.js │ │ ├── lang-sql.js │ │ ├── lang-tex.js │ │ ├── lang-vb.js │ │ ├── lang-vhdl.js │ │ ├── lang-wiki.js │ │ ├── lang-xq.js │ │ ├── lang-yaml.js │ │ ├── prettify.css │ │ └── prettify.js │ ├── require-1.0.8.min.js │ ├── slide-controller.js │ ├── slide-deck.js │ └── slides.js │ ├── render.py │ ├── serve.sh │ ├── slide_config.js │ ├── slides.md │ └── theme │ ├── css │ ├── agilejkl.css │ ├── default.css │ └── phone.css │ └── scss │ ├── _base.scss │ ├── agilejkl.scss │ ├── default.scss │ └── phone.scss ├── testing ├── README.md ├── browser.md ├── conclusion.md ├── fibo.md ├── generative.md └── unit.md └── to_gh.sh /.bookignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/.bookignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _book/ 2 | survive-js.wiki/ 3 | node_modules/ 4 | .DS_Store 5 | *.pxm 6 | *.swp 7 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /a_misunderstood_language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/a_misunderstood_language/README.md -------------------------------------------------------------------------------- /a_misunderstood_language/altjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/a_misunderstood_language/altjs.md -------------------------------------------------------------------------------- /a_misunderstood_language/conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/a_misunderstood_language/conclusion.md -------------------------------------------------------------------------------- /a_misunderstood_language/how_to_characterize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/a_misunderstood_language/how_to_characterize.md -------------------------------------------------------------------------------- /boilerplates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/boilerplates/README.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/book.json -------------------------------------------------------------------------------- /common_problems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/common_problems/README.md -------------------------------------------------------------------------------- /common_problems/conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/common_problems/conclusion.md -------------------------------------------------------------------------------- /common_problems/function_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/common_problems/function_syntax.md -------------------------------------------------------------------------------- /common_problems/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/common_problems/globals.md -------------------------------------------------------------------------------- /common_problems/nih.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/common_problems/nih.md -------------------------------------------------------------------------------- /common_problems/no_op_overloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/common_problems/no_op_overloading.md -------------------------------------------------------------------------------- /common_problems/not_all_things.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/common_problems/not_all_things.md -------------------------------------------------------------------------------- /common_problems/pyramid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/common_problems/pyramid.md -------------------------------------------------------------------------------- /common_problems/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/common_problems/variables.md -------------------------------------------------------------------------------- /current_state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/current_state/README.md -------------------------------------------------------------------------------- /current_state/conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/current_state/conclusion.md -------------------------------------------------------------------------------- /current_state/es6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/current_state/es6.md -------------------------------------------------------------------------------- /current_state/hope_for_newbies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/current_state/hope_for_newbies.md -------------------------------------------------------------------------------- /current_state/might_run_on_toaster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/current_state/might_run_on_toaster.md -------------------------------------------------------------------------------- /current_state/more_powerful.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/current_state/more_powerful.md -------------------------------------------------------------------------------- /current_state/there_are_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/current_state/there_are_apis.md -------------------------------------------------------------------------------- /development_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/development_tools/README.md -------------------------------------------------------------------------------- /development_tools/chrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/development_tools/chrome.md -------------------------------------------------------------------------------- /development_tools/conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/development_tools/conclusion.md -------------------------------------------------------------------------------- /development_tools/jsfiddle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/development_tools/jsfiddle.md -------------------------------------------------------------------------------- /development_tools/jslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/development_tools/jslint.md -------------------------------------------------------------------------------- /development_tools/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/development_tools/live.md -------------------------------------------------------------------------------- /development_tools/online_ides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/development_tools/online_ides.md -------------------------------------------------------------------------------- /language_features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/README.md -------------------------------------------------------------------------------- /language_features/arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/arguments.md -------------------------------------------------------------------------------- /language_features/call_and_apply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/call_and_apply.md -------------------------------------------------------------------------------- /language_features/conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/conclusion.md -------------------------------------------------------------------------------- /language_features/data_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/data_types.md -------------------------------------------------------------------------------- /language_features/factories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/factories.md -------------------------------------------------------------------------------- /language_features/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/functions.md -------------------------------------------------------------------------------- /language_features/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/globals.md -------------------------------------------------------------------------------- /language_features/hoisting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/hoisting.md -------------------------------------------------------------------------------- /language_features/partial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/partial.md -------------------------------------------------------------------------------- /language_features/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/properties.md -------------------------------------------------------------------------------- /language_features/prototypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/prototypes.md -------------------------------------------------------------------------------- /language_features/this.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/language_features/this.md -------------------------------------------------------------------------------- /modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/modules/README.md -------------------------------------------------------------------------------- /modules/amd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/modules/amd.md -------------------------------------------------------------------------------- /modules/anti.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/modules/anti.md -------------------------------------------------------------------------------- /modules/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/modules/common.md -------------------------------------------------------------------------------- /modules/concat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/modules/concat.md -------------------------------------------------------------------------------- /modules/conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/modules/conclusion.md -------------------------------------------------------------------------------- /modules/es6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/modules/es6.md -------------------------------------------------------------------------------- /modules/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/modules/package.md -------------------------------------------------------------------------------- /modules/umd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/modules/umd.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/package.json -------------------------------------------------------------------------------- /presentations/agilejkl2013/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/.gitignore -------------------------------------------------------------------------------- /presentations/agilejkl2013/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/README.md -------------------------------------------------------------------------------- /presentations/agilejkl2013/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/app.yaml -------------------------------------------------------------------------------- /presentations/agilejkl2013/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/base.html -------------------------------------------------------------------------------- /presentations/agilejkl2013/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/config.rb -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/appleorange.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/appleorange.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/barchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/barchart.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/bigdata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/bigdata.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/chaosmonkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/chaosmonkey.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/chart.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/chrome-logo-tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/chrome-logo-tiny.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/coins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/coins.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/crockford.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/crockford.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/dtu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/dtu1.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/dtu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/dtu2.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/dtu3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/dtu3.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/elements.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/enlightenment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/enlightenment.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/goodvsrest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/goodvsrest.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/google_developers_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/google_developers_icon_128.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/google_developers_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/google_developers_logo.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/google_developers_logo_tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/google_developers_logo_tiny.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/google_developers_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/google_developers_logo_white.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/ie.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/inspector.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/io2012_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/io2012_logo.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/macgyver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/macgyver.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/modernarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/modernarch.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/nodetrend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/nodetrend.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/phonegap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/phonegap.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/rage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/rage.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/redmonk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/redmonk.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/shim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/shim.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/sky.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/staticarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/staticarch.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/strategy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/strategy.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/strategysimple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/strategysimple.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/terminator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/terminator.jpg -------------------------------------------------------------------------------- /presentations/agilejkl2013/images/tradarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/images/tradarch.png -------------------------------------------------------------------------------- /presentations/agilejkl2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/index.html -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/hammer.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/modernizr.custom.45394.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/modernizr.custom.45394.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/order.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/polyfills/classList.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/polyfills/classList.min.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/polyfills/dataset.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/polyfills/dataset.min.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/polyfills/history.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/polyfills/history.min.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-apollo.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-clj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-clj.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-css.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-go.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-hs.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-lisp.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-lua.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-ml.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-n.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-proto.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-scala.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-sql.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-tex.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-vb.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-vhdl.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-wiki.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-xq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-xq.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/lang-yaml.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/prettify.css -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/prettify/prettify.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/require-1.0.8.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/require-1.0.8.min.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/slide-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/slide-controller.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/slide-deck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/slide-deck.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/js/slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/js/slides.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/render.py -------------------------------------------------------------------------------- /presentations/agilejkl2013/serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/serve.sh -------------------------------------------------------------------------------- /presentations/agilejkl2013/slide_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/slide_config.js -------------------------------------------------------------------------------- /presentations/agilejkl2013/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/slides.md -------------------------------------------------------------------------------- /presentations/agilejkl2013/theme/css/agilejkl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/theme/css/agilejkl.css -------------------------------------------------------------------------------- /presentations/agilejkl2013/theme/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/theme/css/default.css -------------------------------------------------------------------------------- /presentations/agilejkl2013/theme/css/phone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/theme/css/phone.css -------------------------------------------------------------------------------- /presentations/agilejkl2013/theme/scss/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/theme/scss/_base.scss -------------------------------------------------------------------------------- /presentations/agilejkl2013/theme/scss/agilejkl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/theme/scss/agilejkl.scss -------------------------------------------------------------------------------- /presentations/agilejkl2013/theme/scss/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/theme/scss/default.scss -------------------------------------------------------------------------------- /presentations/agilejkl2013/theme/scss/phone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/presentations/agilejkl2013/theme/scss/phone.scss -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/testing/README.md -------------------------------------------------------------------------------- /testing/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/testing/browser.md -------------------------------------------------------------------------------- /testing/conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/testing/conclusion.md -------------------------------------------------------------------------------- /testing/fibo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/testing/fibo.md -------------------------------------------------------------------------------- /testing/generative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/testing/generative.md -------------------------------------------------------------------------------- /testing/unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/testing/unit.md -------------------------------------------------------------------------------- /to_gh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survivejs/js_tricks_and_tips/HEAD/to_gh.sh --------------------------------------------------------------------------------