(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| Dealing with conflicts to db/structure.sql (when merging master) | |
| $ git checkout master | |
| # Change database.yml to point to database: clean (on localhost) in development env | |
| # In one command: | |
| # 1) drops the database specified in database.yml for current env ('clean' database) | |
| # 2) creates a db with name specified in database.yml | |
| # 3) loads master's structure into the database specified in database.yml |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.