(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.
(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.
**~~ NOTE: This is a Stage 0 proposal. ~~**
Please direct all future feedback to that repo in the form of directed issues.
| # Checkout | |
| git tag # List tagged versions | |
| git checkout -b prodfix <version> # Checkout specific version into prodfix branch | |
| # Fix code and commit | |
| # Test in staging (requires compatible database state) | |
| git push staging +HEAD:master # Push to staging | |
| # Put in producton |
| Gjenskape produksjon: | |
| Backup av staging og prod database: | |
| heroku pgbackups:capture --remote staging | |
| heroku pgbackups:capture --remote production | |
| Clean staging-database: | |
| heroku pg:reset DATABASE_URL --remote staging |
| # A small DSL for helping parsing documents using Nokogiri::XML::Reader. The | |
| # XML Reader is a good way to move a cursor through a (large) XML document fast, | |
| # but is not as cumbersome as writing a full SAX document handler. Read about | |
| # it here: http://nokogiri.org/Nokogiri/XML/Reader.html | |
| # | |
| # Just pass the reader in this parser and specificy the nodes that you are interested | |
| # in in a block. You can just parse every node or only look inside certain nodes. | |
| # | |
| # A small example: | |
| # |