I hereby claim:
- I am nwwells on github.
- I am nwwells (https://keybase.io/nwwells) on keybase.
- I have a public key ASAhdGugYvvhmp2tIm8zhhadSgs3ZLqYXMvlQJFvO9ugrAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
SELECT | |
client.name AS "Company", | |
ppuser."createdAt" AS "Account Sign-up Timestamp", | |
"firstName" AS "First Name", | |
"lastName" AS "Last Name", | |
"workEmail" AS "Email", | |
"confirmedAt" AS "Account Confirmation Timestamp", | |
SUM(engagement.amount) AS "Paycheck Donation Amt / Charity", | |
portfoliounit.name AS "Charity" | |
FROM client |
define(function (require) { | |
'use strict'; | |
var _ = require('underscore'); | |
//functionName -> isCopy | |
var ARRAY_FUNCTIONS = { | |
'every': false, | |
'filter': false, | |
'forEach': false, |
From 8522592042377b46150041e1f723071a9b9016a8 Mon Sep 17 00:00:00 2001 | |
From: Nathan Wells <[email protected]> | |
Date: Tue, 27 Oct 2015 12:06:34 -0400 | |
Subject: [PATCH] renaming Content to content | |
--- | |
components/record/index.js | 8 ++++---- | |
1 file changed, 4 insertions(+), 4 deletions(-) | |
diff --git a/components/record/index.js b/components/record/index.js |
#!/usr/bin/env python | |
import io | |
import os | |
import sys | |
import random | |
import atexit | |
fifo_path = "/tmp/rander.{0}".format(os.getpid()) |
// Defeat the enemy hero in under three minutes. | |
this.buildArmy = function() { | |
// Your hero can summon and command allied troops. | |
var buildOrder = [ | |
"soldier", | |
"soldier", | |
"archer", | |
]; // "archer", "artillery", "arrow-tower" | |
var type = buildOrder[this.built.length % buildOrder.length]; |
var _ = require('lodash'); | |
var async = require('async'); | |
require('sails.io.js/sails.io'); | |
module.exports = { | |
get: function (req, res, next) { | |
async.parallel({ |
I hereby claim:
To claim this, I am signing this object:
Verifying that +nwwells is my openname (Bitcoin username). https://onename.io/nwwells |
grunt.registerTask('delayed-livereload', 'Live reload after the node server has restarted.', function () { | |
var done = this.async(); | |
setTimeout(function () { | |
request.get('http://localhost:' + reloadPort + '/changed?files=' + files.join(','), function(err, res) { | |
var reloaded = !err && res.statusCode === 200; | |
if (reloaded) | |
grunt.log.ok('Delayed live reload successful.'); | |
else | |
grunt.log.error('Unable to make a delayed live reload.'); |