(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.
| diff --git i/deps/Makefile w/deps/Makefile | |
| index 5a95545..9ec62be 100644 | |
| --- i/deps/Makefile | |
| +++ w/deps/Makefile | |
| @@ -58,8 +58,8 @@ ifeq ($(uname_S),SunOS) | |
| LUA_CFLAGS= -D__C99FEATURES__=1 | |
| endif | |
| -LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI $(CFLAGS) | |
| -LUA_LDFLAGS+= $(LDFLAGS) |
(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.
| var phantom = require('phantom'), | |
| vows = require('vows'), | |
| assert = require('assert'); | |
| // nesting tests inside phantom callback so we only | |
| // have to create it once | |
| phantom.create(function(ph) { | |
| var get_page_result = function(url, fn, result) { | |
| ph.createPage(function(page) { |