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
[ | |
{ | |
"name":"flare.analytics.cluster.AgglomerativeCluster", | |
"size":3938, | |
"imports":[ | |
"flare.animate.Transitioner", | |
"flare.vis.data.DataList", | |
"flare.util.math.IMatrix", | |
"flare.analytics.cluster.MergeEdge", | |
"flare.analytics.cluster.HierarchicalCluster", |
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
server { | |
listen 80; | |
server_name example.com; | |
root /path/to/static/files; | |
location / { | |
try_files $uri $uri/ /index.html; | |
} |
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 hue = require("node-hue-api"), HueApi = hue.HueApi, lightState = hue.lightState; | |
var host = "192.168.1.129", | |
username = "newdeveloper", | |
api, | |
state; | |
api = new HueApi(host, username); |
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
//controllers.js | |
'use strict'; | |
angular.module('exquisitehuesApp') | |
.controller('MainCtrl', function($scope) { | |
$scope.cool = 'cool'; | |
}) | |
.controller('LineCtrl', ['$scope', 'LineService', | |
function($scope, service) { |
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
1. Create new branch and checkout branch | |
`git checkout -b <name_of_branch>` | |
2. Make changes | |
3. Stage changes | |
`git add <filename>` to add `<filename>` | |
`git add -A .` to add all your changes and remove files | |
4. Commit changes (often). You can reference or 'fix' a bug by saying "Fixes #<issue_number>" | |
`git commit -m "This is a commit message."` | |
5. After you're done committing all your changes, merge master and push. | |
``` |
NewerOlder