Inspect element. Click it. The selected element is now $0 in the javascript console
$0.viewModel
$0.viewModel.enabled
$0.viewModel.enabled.binding
$0.viewModel.enabled.value
MyObject.prototype.on = function (eventName, callback) { | |
if (this.eventListeners[eventName] == undefined) { | |
this.eventListeners[eventName] = []; | |
} | |
if (typeof callback == "function") { | |
this.eventListeners[eventName].push(callback); | |
} else { | |
throw "can not subscribe with a non function callback"; | |
} | |
} |
var gulp = require('gulp'), | |
compress = require('gulp-uglify'), | |
stylus = require('gulp-stylus'), | |
concat = require('gulp-concat'), | |
browserify = require('gulp-browserify'), | |
livereload = require('gulp-livereload'); | |
var liveReloadServer = livereload(); | |
gulp.task('styles', function() { |
/* | |
This is for configuring the hc-06 bluetooth chip to work with Johnny-Five javascript robotics library. | |
Might also work with the hc-05. | |
Author: Glen Arrowsmith (@garrows) | |
*/ | |
#define ROBOT_NAME "RandomBot" |
### Keybase proof | |
I hereby claim: | |
* I am garrows on github. | |
* I am garrows (https://keybase.io/garrows) on keybase. | |
* I have a public key whose fingerprint is 0A4E 7772 7EB5 DBA9 B1F7 1DE8 5565 4B63 238A B2F9 | |
To claim this, I am signing this object: |
#include <ZumoBuzzer.h> | |
#include <ZumoMotors.h> | |
#include <Pushbutton.h> | |
#include <QTRSensors.h> | |
#include <ZumoReflectanceSensorArray.h> | |
#define LED 13 | |
#define DISTANCE_SENSOR A1 | |
// this might need to be tuned for different lighting conditions, surfaces, etc. |
var five = require("johnny-five"); | |
board = new five.Board({ | |
// port: "/dev/rfcomm1" | |
port: "/dev/tty.NodeBot-DevB" | |
}); | |
board.on("ready", function() { | |
(new five.Led(13)).strobe(500); |
<html> | |
<head> | |
<title>Slider Test</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"> | |
<style> | |
body { | |
margin: 0px; | |
padding: 0px; | |
} |
// In the express generated example, this is /routes/index.js | |
var express = require('express'); | |
var router = express.Router(); | |
var TheService = function() {}; | |
TheService.prototype = { | |
getTitle: function(req, res, next) { | |
console.log('getTitle'); | |
res.title = 'Express'; |
.panes::after { | |
content: ""; | |
position: fixed; | |
top: 0; | |
right: 0; | |
left: 0; | |
bottom: 0; | |
pointer-events: none; | |
background: url("http://thecatapi.com/api/images/get?format=src&type=jpg,png"); | |
background-size: cover; |