I hereby claim:
- I am ndelage on github.
- I am ndelage (https://keybase.io/ndelage) on keybase.
- I have a public key ASA1mrpBLukiv_jMjPNLRkL2BOgK4ecNR6MMfkqDm2BRtAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Redux Egghead Videos
Watch these first
https://egghead.io/courses/getting-started-with-redux
5 Types of Application State
http://jamesknelson.com/5-types-react-application-state/
Good React + Redux Tutorial
Saga is neat, but more than we want to bite off right now. We’re sticking with Thunk for now.
http://joelhooks.com/blog/2016/03/20/build-an-image-gallery-using-redux-saga/
| #!/bin/bash | |
| # Find modified specs between HEAD and some other point in the | |
| # commit history. Defaults to comparing between master & HEAD. | |
| # | |
| # Supply an optional alternative point in history as the first & only | |
| # argument: | |
| # recent_specs.sh HEAD~8 | |
| # | |
| # |
_id).| class Mammal | |
| def initialize | |
| @fur = true | |
| @milk = true | |
| @eggs = false | |
| end | |
| def generate_lifespan | |
| @lifespan = rand(7..92) |
| " use ctr h & l to switch between windows, skip need to crt w + l | |
| map <C-H> <C-W>h | |
| map <C-L> <C-W>l | |
| " same for j & k | |
| map <C-J> <C-W>j | |
| map <C-K> <C-W>k |
| # Add the following before filter at the end of the following | |
| # block, found in your backend's config/environment.rb | |
| # | |
| # configure do | |
| # ... | |
| # ... | |
| # [insert before filter here] | |
| # end | |
| before do |
| ## | |
| ## RESTful routes for an 'orders' resource | |
| # | |
| # Note: In order to use the 'other' HTTP verbs (put & delete) you need to enable the | |
| # method_override feature of Sinatra. | |
| # | |
| # (in config/environment.rb) | |
| # config do | |
| # set :method_override, true | |
| # |