(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.
| <script> | |
| var parentStyleSheets = this.parent.document.styleSheets; | |
| var cssString = []; | |
| for (var i = 0, count = parentStyleSheets.length; i < count; i++) | |
| { | |
| var cssRules = parentStyleSheets[i].cssRules; | |
| if(cssRules) | |
| for (var j = 0, countJ = cssRules.length; j < countJ; j++) | |
| cssString.push(cssRules[j].cssText); | |
| } |
| /* C O C O N U T U I C S S */ | |
| * { | |
| margin:0; | |
| padding:0; | |
| } | |
| html, body { | |
| height: 100%; | |
| overflow: hidden; |
| var gulp = require('gulp'); | |
| var sass = require('gulp-ruby-sass'); | |
| var prefix = require('gulp-autoprefixer'); | |
| var concat = require('gulp-concat'); | |
| var uglify = require('gulp-uglify'); | |
| var jade = require('gulp-jade'); | |
| // FILES PATHS | |
| var jsSrcDir = ['js/app.js','js/**/*.js','js/*/*/*.js']; | |
| var sassSrcDir = ['css/**/*.sass', 'css/*/*.sass']; |
| /bin/ls /etc |
(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.
I hereby claim:
To claim this, I am signing this object: