based around the workflow here:
https://gist.github.com/chrisjacob/825950
My structure:
project/
gulpfile.js
(function (d, cb) { | |
// | |
// A script loader over here! | |
// | |
if (typeof $LAB === 'undefined') { | |
var s; | |
s = d.createElement('script'); |
# alex's logging function that he likes to use. | |
l = (message, objs...) -> | |
now = new Date() | |
hours = now.getHours() | |
mins = now.getMinutes() | |
secs = now.getSeconds() | |
console.log(["#{ hours }:#{ mins }.#{ secs }", message, objs...]) | |
return | |
# usage: |
(function (d, cb) { | |
// | |
// A script loader over here! | |
// | |
if (typeof $LAB === 'undefined') { | |
var s; | |
s = d.createElement('script'); |
based around the workflow here:
https://gist.github.com/chrisjacob/825950
My structure:
project/
gulpfile.js
#!/usr/bin/env python | |
import sys | |
import subprocess | |
import threading | |
from clint.textui import puts, colored, indent | |
def red(msg): | |
return puts(colored.red(msg, *args, **kwargs)) | |
def cyan(msg, *args, **kwargs): |
from clint.textui import puts, indent, colored | |
def red(msg): | |
return puts(colored.red(msg)) | |
def shell(cmd, fail_silently=False, *args, **kwargs): | |
# tell the user what's about to go out | |
puts(colored.blue("-> {}".format(cmd))) |
error: Sending 500 ("Server Error") response: | |
[ { type: 'update', | |
collection: 'trip', | |
criteria: { id: 20 }, | |
values: { creator: null }, | |
err: | |
Error (E_VALIDATION) :: 1 attribute is invalid | |
: | |
at WLValidationError.WLError (/usr/local/lib/node_modules/sails/node_modules/waterline/lib/waterline/error/WLError.js:33:18) | |
at new WLValidationError (/usr/local/lib/node_modules/sails/node_modules/waterline/lib/waterline/error/WLValidationError.js:20:28) |
var ChatAppDispatcher = require('../dispatcher/ChatAppDispatcher'); | |
var ChatConstants = require('../constants/ChatConstants'); | |
var ChatMessageUtils = require('../utils/ChatMessageUtils'); | |
var EventEmitter = require('events').EventEmitter; | |
var ThreadStore = require('../stores/ThreadStore'); | |
var merge = require('react/lib/merge'); | |
var ActionTypes = ChatConstants.ActionTypes; | |
var CHANGE_EVENT = 'change'; |
--- ./tablib/packages/openpyxl/__init__.py 2014-09-23 11:50:22.000000000 +0800 | |
+++ /Users/alex/Downloads/openpyxl/__init__.py 2011-05-13 17:04:34.000000000 +0800 | |
@@ -26,14 +26,14 @@ | |
"""Imports for the openpyxl package.""" | |
# package imports | |
-from . import cell | |
-from . import namedrange | |
-from . import style | |
-from . import workbook |
module.exports = | |
ModelMixin: (model_name, event_name="all") -> | |
eventCallbackName = "_eventCallbacks_#{ model_name }_#{ event_name }" | |
mixin = | |
componentDidMount: -> |