Skip to content

Instantly share code, notes, and snippets.

View jgallen23's full-sized avatar

Greg Allen jgallen23

View GitHub Profile
@jgallen23
jgallen23 / shell.js
Created December 27, 2017 22:04
solarized light secure shell
// 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
@jgallen23
jgallen23 / README.md
Last active September 17, 2016 21:09
micrometrics migration

MONGO=mongohost node index.js

/**
* 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") {
@jgallen23
jgallen23 / prefs.js
Created April 5, 2015 17:58
base16-ocean secure shell prefs
// 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',
@jgallen23
jgallen23 / .gitignore
Last active August 29, 2015 14:07
Good v3 Issue
node_modules/
{ plugin: Good, options: {
reporters: [
{ reporter: Good.GoodConsole },
{
reporter: GoodMongoDb,
args: [mongoUrl, {
}]
}
]
}},
npm ERR! peerinvalid The package grunt does not satisfy its siblings' peerDependencies requirements!
npm ERR! peerinvalid Peer grunt-bytesize@0.1.1 wants grunt@~0.4.1
npm ERR! peerinvalid Peer grunt-concat-bower@0.3.1 wants grunt@~0.4.1
npm ERR! peerinvalid Peer grunt-contrib-clean@0.5.0 wants grunt@~0.4.0
npm ERR! peerinvalid Peer grunt-contrib-concat@0.3.0 wants grunt@~0.4.0
npm ERR! peerinvalid Peer grunt-contrib-connect@0.7.1 wants grunt@~0.4.0
npm ERR! peerinvalid Peer grunt-contrib-jshint@0.8.0 wants grunt@~0.4.0
npm ERR! peerinvalid Peer grunt-contrib-uglify@0.3.3 wants grunt@~0.4.0
npm ERR! peerinvalid Peer grunt-contrib-watch@0.5.3 wants grunt@~0.4.0
@jgallen23
jgallen23 / README.md
Created March 20, 2014 18:29
load-grunt-config tests

me testing things

@jgallen23
jgallen23 / Gruntfile.js
Last active December 31, 2015 18:49
grunt-contrib-connect livereload issues
module.exports = function(grunt) {
grunt.initConfig({
connect: {
server: {
options: {
livereload: true,
keepalive: true
@jgallen23
jgallen23 / grunt-install.sh
Last active December 15, 2015 11:49
bash grunt plugin install script
gi() {
if [ $# -eq 1 ]; then
npm i -D grunt-$*
else
local IFS=,;
eval npm i -D grunt-{"$*"};
fi
}