MONGO=mongohost node index.js
This file contains 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
// prefs.js Template | |
// Petr Hosek(http://petrhosek.name) | |
/* | |
color00="fd/f6/e3" # Base 00 - Black | |
color01="dc/32/2f" # Base 08 - Red | |
color02="85/99/00" # Base 0B - Green | |
color03="b5/89/00" # Base 0A - Yellow | |
color04="26/8b/d2" # Base 0D - Blue | |
color05="6c/71/c4" # Base 0E - Magenta |
This file contains 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
/** | |
* Momentary Button Tile | |
* | |
* Author: SmartThings | |
* | |
* Date: 2013-05-01 | |
*/ | |
metadata { | |
// Automatically generated. Make future change here. | |
definition (name: "Momentary Button Tile", namespace: "smartthings", author: "SmartThings") { |
This file contains 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
// prefs.js Template | |
// Petr Hosek(http://petrhosek.name) | |
term_.prefs_.set('background-color', '#2b303b'); | |
term_.prefs_.set('foreground-color', '#c0c5ce'); | |
term_.prefs_.set('cursor-color', '#c0c5ce'); | |
term_.prefs_.set('color-palette-overrides', [ | |
'#2b303b', | |
'#bf616a', |
This file contains 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
node_modules/ |
This file contains 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
{ plugin: Good, options: { | |
reporters: [ | |
{ reporter: Good.GoodConsole }, | |
{ | |
reporter: GoodMongoDb, | |
args: [mongoUrl, { | |
}] | |
} | |
] | |
}}, |
This file contains 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
npm ERR! peerinvalid The package grunt does not satisfy its siblings' peerDependencies requirements! | |
npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 | |
npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 | |
npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 | |
npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 | |
npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 | |
npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 | |
npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 | |
npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 |
me testing things
This file contains 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
module.exports = function(grunt) { | |
grunt.initConfig({ | |
connect: { | |
server: { | |
options: { | |
livereload: true, | |
keepalive: true |
This file contains 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
gi() { | |
if [ $# -eq 1 ]; then | |
npm i -D grunt-$* | |
else | |
local IFS=,; | |
eval npm i -D grunt-{"$*"}; | |
fi | |
} |
NewerOlder