This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
remote: /data/github/current/lib/github/config/resque.rb:27: undefined method `constantize' for "GitHub::Jobs::UpdateParticipationGraph":String (NoMethodError) | |
remote: from /data/github/current/lib/github/config/resque.rb:26:in `each' | |
remote: from /data/github/current/lib/github/config/resque.rb:26 | |
remote: from /data/github/current/lib/rock_queue.rb:9:in `require' | |
remote: from /data/github/current/lib/rock_queue.rb:9 | |
remote: from hooks/post-receive:27:in `require' | |
remote: from hooks/post-receive:27 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// should this.modules.module1 work? | |
define({ | |
appStructure: { | |
literal: { | |
module1: { $ref: 'module1' }, | |
module2: { $ref: 'module2' } | |
} | |
}, | |
module1: { | |
create: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
tasks=`grep "\w*:" Makefile|sed "s/all:.*//g"|cut -d ":" -f 1|sed s/\.PHONY//g` | |
echo "Available Makefile tasks:" | |
for i in $tasks ; do | |
echo $i | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% curl -i https://api.github.com/repos/busterjs/buster-docs/pulls | |
HTTP/1.1 200 OK | |
Server: nginx/1.0.13 | |
Date: Tue, 13 Mar 2012 14:37:05 GMT | |
Content-Type: application/json; charset=utf-8 | |
Connection: keep-alive | |
Status: 200 OK | |
X-RateLimit-Limit: 5000 | |
ETag: "6b10c9c87ff214c41279727e9f391cb5" | |
X-RateLimit-Remaining: 4995 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm ERR! error installing [email protected] | |
npm ERR! error installing [email protected] | |
npm ERR! Error: ENOENT, no such file or directory '/Users/trodrigues/Dropbox/code/github/jsdom/node_modules/optimist/node_modules/hashish/node_modules/___traverse.npm/package/examples/negative.js' | |
npm ERR! You may report this log at: | |
npm ERR! <http://github.com/isaacs/npm/issues> | |
npm ERR! or email it to: | |
npm ERR! <[email protected]> | |
npm ERR! | |
npm ERR! System Darwin 11.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs'); | |
fs.readFile('file', function (ಠ_ಠ, data) { | |
if (ಠ_ಠ) { | |
throw "(╯°□°)╯︵ ┻━┻)"; | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"pretest": "./node_modules/jshint/bin/hint {app.js,lib/**/*.js} --config ./config/jshint.json", | |
"test": "./node_modules/buster/bin/buster-test", | |
"start": "node ./node_modules/nodemon/nodemon.js app.js" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
error: Error running command deploy | |
error: Nodejitsu Error (500): Internal Server Error | |
error: There was an error while attempting to deploy your application. | |
error: | |
error: Rackspace Error (404): Item not found | |
error: Error output from Haibu: | |
error: | |
error: Error: Rackspace Error (404): Item not found | |
error: at Request._callback (/root/haibu-orchestra/node_modules/haibu/node_modules/cloudfiles/lib/cloudfiles/common.js:184:18) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% npm install union | |
npm http GET https://registry.npmjs.org/union/0.3.0 | |
npm http 200 https://registry.npmjs.org/union/0.3.0 | |
npm http GET https://registry.npmjs.org/union/-/union-0.3.0.tgz | |
npm http 200 https://registry.npmjs.org/union/-/union-0.3.0.tgz | |
npm http GET https://registry.npmjs.org/pkginfo | |
npm http GET https://registry.npmjs.org/qs | |
npm http 304 https://registry.npmjs.org/pkginfo | |
npm http 200 https://registry.npmjs.org/qs | |
npm ERR! error installing [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe('when initializing a friends module', function(){ | |
before(function(){ | |
var self = this; | |
require('services/top10', function(top10Service) { | |
self.getFriendStub = sinon.stub(top10Service, 'getFriendTop10'); | |
self.getTop10Stub = sinon.stub(top10Service, 'get'); | |
}); | |
this.view = new CreateLayoutView({ | |
model: { |