-
Connect external HD to Mac and format to HFS+ case sensitive
-
Install Raspian on Raspberry Pi 2 Model B
-
Setup wifi on raspberry pi
- from https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md
- connect wifi adaptor
- search for networks:
sudo iwlist wlan0 scan | less
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function* keyValIterator (obj) { | |
for (let prop in obj) { | |
yield [ prop, obj[prop] ]; | |
} | |
} | |
var address = { | |
street: '420 Paper St.', | |
city: 'Wilmington', | |
state: 'Delaware' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var source = require('vinyl-source-stream'); | |
var buffer = require('vinyl-buffer'); | |
var browserify = require('browserify'); | |
var watchify = require('watchify'); | |
var babel = require('babelify'); | |
function compile(watch) { | |
var bundler = watchify(browserify('./src/index.js', { debug: true }).transform(babel)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require("gulp"); | |
var handlebars = require("gulp-handlebars"); | |
var wrap = require("gulp-wrap"); | |
var declare = require("gulp-declare"); | |
var concat = require("gulp-concat"); | |
var less = require("gulp-less"); | |
var bower = require("main-bower-files"); | |
var react = require("gulp-react"); | |
var notify = require("gulp-notify"); | |
var plumber = require("gulp-plumber"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var data = [{ | |
date: new Date("Jan 01, 2013"), | |
data: 12 | |
},{ | |
date: new Date("Jan 02, 2013"), | |
data: 17 | |
},{ | |
date: new Date("Jan 03, 2013"), | |
data: 5 | |
},{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(func, wait, immediate) -> | |
_params = {} | |
run = _.debounce -> | |
func(_params) | |
_params = {} | |
, wait, immediate | |
(params) -> | |
_params = _.extend(_params, params) | |
run() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var data = [{ | |
date: new Date("Jan 01, 2013"), | |
data: 12 | |
},{ | |
date: new Date("Jan 02, 2013"), | |
data: 17 | |
},{ | |
date: new Date("Jan 03, 2013"), | |
data: 5 | |
},{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var data = [{ | |
date: new Date("Jan 01, 2013"), | |
data: 12 | |
},{ | |
date: new Date("Jan 02, 2013"), | |
data: 17 | |
},{ | |
date: new Date("Jan 03, 2013"), | |
data: 5 | |
},{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var data = [{ | |
date: new Date("Jan 01, 2013"), | |
data: 12 | |
},{ | |
date: new Date("Jan 02, 2013"), | |
data: 17 | |
},{ | |
date: new Date("Jan 03, 2013"), | |
data: 5 | |
},{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var data = [{ | |
date: new Date("Jan 01, 2013"), | |
data: 12 | |
},{ | |
date: new Date("Jan 02, 2013"), | |
data: 17 | |
},{ | |
date: new Date("Jan 03, 2013"), | |
data: 5 | |
},{ |
NewerOlder