Skip to content

Instantly share code, notes, and snippets.

View jgchristopher's full-sized avatar

John Christopher jgchristopher

View GitHub Profile

Just some notes and references for myself.

  • In bash, you can access your C:\ driver via /mnt/c/
  • ~ = C:\Users\MLM\AppData\Local\lxss\home\mlm and is different from your Windows user directory C:\Users\MLM

How to google things

Verifying that +jgchristopher is my blockchain ID. https://onename.com/jgchristopher

Keybase proof

I hereby claim:

  • I am jgchristopher on github.
  • I am jgchristopher (https://keybase.io/jgchristopher) on keybase.
  • I have a public key whose fingerprint is DEE8 BF2F 68A1 2FFD 3480 ABE9 8036 5DB2 B4C9 DFAB

To claim this, I am signing this object:

@jgchristopher
jgchristopher / app.js
Created November 20, 2013 17:23
Example of creating a simple web interface to allow testers to initiate some grunt commands.
"use strict";
var express = require('express'),
flash = require('connect-flash'),
path = require('path'),
cons = require('consolidate'),
grunt = require('grunt');
var app = express();
@jgchristopher
jgchristopher / gist:3231943
Created August 2, 2012 00:38
Render dGrid Header Cell to have a dijit
renderHeaderCell: lang.hitch(this,function(node) {
var checkbox = new CheckBox({
value : false,
label : "Include All ?",
onClick: lang.hitch(this, function(state) {
this._selectAll(state);
}),
declaredClass: "invoice-grid-include-all",
class : "invoice-grid-include-all"
});