Skip to content

Instantly share code, notes, and snippets.

View jgallen23's full-sized avatar

Greg Allen jgallen23

View GitHub Profile
@jgallen23
jgallen23 / README.md
Created March 20, 2014 18:29
load-grunt-config tests

me testing things

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
{ plugin: Good, options: {
reporters: [
{ reporter: Good.GoodConsole },
{
reporter: GoodMongoDb,
args: [mongoUrl, {
}]
}
]
}},
@jgallen23
jgallen23 / .gitignore
Last active August 29, 2015 14:07
Good v3 Issue
node_modules/
@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',
/**
* 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 / CycleTags.applescript
Created March 31, 2010 04:56
TaskPaper Cycle Tag Script
property cycleTags : {"low", "medium", "high"}
tell application "TaskPaper"
tell front document
set selected to selected entries
repeat with t in selected
if entry type of t is task type then
set tagged to false
set item_count to number of items in cycleTags
repeat with i from 1 to item_count
set tagName to item i of cycleTags
@jgallen23
jgallen23 / ir_black.taskpapertheme
Created March 31, 2010 04:36
TaskPaper IRBlack Theme
<theme>
<!-- Window Style -->
<color id="foreground" red="0.59" green="0.80" blue="0.99" alpha="1.0" />
<color id="background" red=".1" green=".1" blue=".1" alpha=".95" />
<window foregroundColorID="foreground" backgroundColorID="background" shouldUseHUDScrollers="yes" />
<!-- Text View Style -->
<color id="tag" red=".48" green=".48" blue=".48" alpha="1.0" />
<color id="handle" extendsColorID="foreground" />
<color id="insertionPoint" red=".4" green=".4" blue=".4" alpha="1.0" />
@jgallen23
jgallen23 / weinre.js
Created February 6, 2011 00:28
Simple Javascript function to connect to Weinre server
var startWeinre = function() {
var setServer = localStorage['weinre'] || "";
var server = prompt("Weinre Server:", setServer);
if (!server)
return;
localStorage['weinre'] = server;
var script=document.createElement('script');
script.src = "http://" + server + "/target/target-script.js";
document.getElementsByTagName("head")[0].appendChild(script);
}
console.log = function() { document.write([].splice.call(arguments,0).join(' ')+"<br/>"); };