├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Eric Elliott 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # The Two Pillars of JavaScript 2 | 3 | References from "The Two Pillars of JavaScript" talk. 4 | 5 | * [JavaScript Scene](https://medium.com/javascript-scene) blog 6 | * [How to Build a High Velocity Development Team](https://medium.com/javascript-scene/how-to-build-a-high-velocity-development-team-4b2360d34021#.xufcxva66) 7 | * [Why Hiring is So Hard in Tech](https://medium.com/javascript-scene/why-hiring-is-so-hard-in-tech-c462c3230017#.7sma5eo5o) 8 | * [10 Interview Questions Every JavaScript Developer Should Know](https://medium.com/javascript-scene/10-interview-questions-every-javascript-developer-should-know-6fa6bdf5ad95#.am5pc4kwj) 9 | * [JavaScript Training Sucks](https://medium.com/javascript-scene/javascript-training-sucks-284b53666245#.dnk5befr6) 10 | * [Programming JavaScript Applications](https://ericelliottjs.com/product/programming-javascript-applications-paper-ebook-bundle/) 11 | * [The Two Pillars of JavaScript: Prototypal OO](https://medium.com/javascript-scene/the-two-pillars-of-javascript-ee6f3281e7f3#.nofip7b3x) 12 | * [Classical Inheritance is Obsolete](https://vimeo.com/69255635) 13 | * [Inside the Dev Team Death Spiral](https://medium.com/javascript-scene/inside-the-dev-team-death-spiral-6a7ea255467b#.6bj3v37so) 14 | * [Bruce Lee: The First JavaScript Programmer](https://twitter.com/_ericelliott/status/655486199377715200) 15 | * [Bruce Lee: Empty Your Cup](https://twitter.com/_ericelliott/status/655501439456817153) 16 | * [The Open Minded Explorer's Guide to Object Composition](https://medium.com/javascript-scene/the-open-minded-explorer-s-guide-to-object-composition-88fe68961bed#.16tv0dh9l) 17 | * [Introducing the Stamp Specification](https://medium.com/javascript-scene/introducing-the-stamp-specification-77f8911c2fee#.7f0bdpyk6) 18 | * [The Two Pillars of JavaScript: Functional Programming](https://medium.com/javascript-scene/the-two-pillars-of-javascript-pt-2-functional-programming-a63aa53a41a4#.8d1nquob2) 19 | * [The Dao of Immutability](https://medium.com/javascript-scene/the-dao-of-immutability-9f91a70c88cd#.jzcl32q6a) 20 | * [Imperative vs Declarative 1/2](https://twitter.com/_ericelliott/status/659839147213893633) 21 | * [Imperative vs Declarative 2/2](https://twitter.com/_ericelliott/status/659839297047019520) 22 | * [Learn Rx](http://reactivex.io/learnrx/) 23 | * [The Future of Programming](http://www.sitepoint.com/future-programming-webassembly-life-after-javascript/) 24 | * [Fighting Poverty with Code](https://medium.com/end-homelessness/fighting-poverty-with-code-d1ed3ebd982d#.n8qoqy36v) 25 | * [The Cure for Homelessness](https://medium.com/end-homelessness/the-cure-for-homelessness-83ef0d621c71#.ecgazikrv) 26 | * [Programming Literacy](http://www.programmingliteracy.com/) 27 | --------------------------------------------------------------------------------