From d70fe491e2abcaa23dc32f4c6cc9001b95772ee8 Mon Sep 17 00:00:00 2001 From: Mark Erikson Date: Sat, 19 Nov 2016 15:25:56 -0500 Subject: [PATCH] Updates, 2016-11-19 Fixed formatting Added a couple more links from PRs --- basic-concepts.md | 3 +++ es6-features.md | 4 ++-- react-native.md | 4 ++-- redux-architecture.md | 4 ++++ 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/basic-concepts.md b/basic-concepts.md index e99c519..09b89b9 100644 --- a/basic-concepts.md +++ b/basic-concepts.md @@ -99,3 +99,6 @@ http://gedd.ski/post/when-tech-makes-you-feel-dumb/ A pair of short but excellent posts giving advice on how to deal with tech and information overload. +- **Redux vs MobX vs Flux vs... Do you even need that?** + http://goshakkk.name/redux-vs-mobx-vs-flux-etoomanychoices/ + Advice on avoiding choice overload when learning a toolset like React, by simplifying and just focusing on one new thing at a time. \ No newline at end of file diff --git a/es6-features.md b/es6-features.md index 2d10935..e016c05 100644 --- a/es6-features.md +++ b/es6-features.md @@ -115,8 +115,8 @@ http://thejsguy.com/2016/10/15/a-practical-introduction-to-es6-generator-functions.html Some practical examples discussing what generator functions are, how they work, and what they can be used for. -- **3 cases where JavaScript generators rock (+ understanding them)** - http://goshakkk.name/javascript-generators-understanding-sample-use-cases/ +- **3 cases where JavaScript generators rock (+ understanding them)** + http://goshakkk.name/javascript-generators-understanding-sample-use-cases/ A simple thinking pattern for easily understanding generators, plus 3 practical applications. diff --git a/react-native.md b/react-native.md index 63888f1..ee2552e 100644 --- a/react-native.md +++ b/react-native.md @@ -22,6 +22,6 @@ #### Specific aspects -- **Using iOS Image Picker with React Native** - http://goshakkk.name/react-native-camera-roll-image-picker/ +- **Using iOS Image Picker with React Native** + http://goshakkk.name/react-native-camera-roll-image-picker/ Getting an ImagePicker to work on iOS is painful. It's barely documented. This tutorial-style article shows you everything you need to do to finally start asking users for images. diff --git a/redux-architecture.md b/redux-architecture.md index 68d73b0..4eb416f 100644 --- a/redux-architecture.md +++ b/redux-architecture.md @@ -123,6 +123,10 @@ https://medium.com/@benipsen/seven-months-into-redux-two-things-my-team-learned-along-the-way-5d979c25ea61 Describes the benefits a dev team got from using RxJS streams and using selector functions to derive data. +- **Redux anti-pattern: dumb mapStateToProps** + http://goshakkk.name/redux-antipattern-mapstatetoprops/ + An analysis of a somewhat common Redux anti-pattern, where `mapStateToProps` is doing too little, shifting all the domain knowledge into the component that should not be aware of it. + #### Encapsulation and Reusability