├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Arfian Adam 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Javascript personal notes 2 | My personal note about javascript learning resources you can find on the internet. This note is expanding and soon or later gonna need better organizing. I might want to host it somewhere and add some interactive to it, but the latter is somewhat off the original purpose. Just wanted to make it simple. 3 | 4 | |Title|Link|Type| 5 | |---|---|---| 6 | |React Component Lifecycle||Article| 7 | |React's Component Documentation||Articles| 8 | |Getting Started with Redux||Videos| 9 | |Progressive Web Apps with React.js||Articles| 10 | |Progressive loading for modern web applications via code splitting||Article| 11 | |Two Quick Ways To Reduce React App’s Size In Production||Article| 12 | |Functional Programming In JavaScript — With Practical Examples||Articles| 13 | |Why Redux need reducers to be “pure functions”||Article| 14 | |A Guide For Building A React Redux CRUD App||Article| 15 | |Understanding Higher Order Components||Article| 16 | |React Binding Patterns: 5 Approaches for Handling `this`||Article| 17 | |React.js pure render performance anti-pattern||Article| 18 | |Leveling Up With React||Articles| 19 | |Overview of ECMAScript 6 features||Repository| 20 | |Master the JavaScript Interview: What is Functional Programming?||Article| 21 | |Presentational and Container Components||Article| 22 | |Understanding redux-thunk and why we need it||Stackoverflow| 23 | |Rearchitecting Airbnb’s Frontend||Article| 24 | |How to resize then crop an image with canvas||Stackoverflow| 25 | |How to drag elements using pure javascript||Stackoverflow| 26 | |How to convert image into base64 string using javascript||Stackoverflow| 27 | |Redux 4 Ways||Article| 28 | |Top Resources to Explore React Fiber||Article| 29 | |Front-End Developer Handbook 2017||Book| 30 | |React Router V4 Fundamentals||Youtube| 31 | |A Simple React Router v4 Tutorial||Article| 32 | |Getting Started with React Router v4 in Meteor||Article| 33 | |JS: The right way||Website| 34 | |Improve Your UX by Dynamically Rendering Images via React.js||Article| 35 | |JS Books (free books!)||Books| 36 | |Functional setState is the future of React||Article| 37 | |Functional Components with React stateless functions and Ramda||Article| 38 | |All About React Router 4||Article| 39 | |Code Splitting for React Router with Webpack and HMR||Article| 40 | |Build Virtual Reality Experiences Using React VR||Videos| 41 | |Functional-Light-JS||Book| 42 | |spellbook-of-modern-webdev (this is **huge**!)||Repository| 43 | |Async/Await Will Make Your Code Simpler||Article| 44 | |10 Tips for Better Redux Architecture||Article| 45 | |10 JavaScript concepts you need to know for interviews||Article| 46 | |Why you need to separate vendor libraries from application code||Article| 47 | |Separating vendor libraries using webpack||Article| 48 | |DESTROY ALL CLASSES: Turn React Components Inside Out with Functional Programming||Article| 49 | |Javascript ES6 — Exploring the New Built-In Methods||Article| 50 | |You-Dont-Know-JS||Book| 51 | |Eloquent JavaScript||Book| 52 | 53 | 54 | ### Paid Resources 55 | |Title|Link|Type| 56 | |---|---|---| 57 | |JavaScript: Understanding the Weird Parts||Videos| 58 | 59 | ### Maybe a bit of CSS won't hurt? 60 | |Title|Link|Type| 61 | |---|---|---| 62 | |Understanding Flexbox: Everything you need to know||Article| 63 | |CSS-Tricks||Website| 64 | |Animista - CSS animations on demand||Website| --------------------------------------------------------------------------------