This file contains hidden or 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
0 info it worked if it ends with ok | |
1 verbose cli [ 'node', '/Users/boutell/npm/bin/npm', 'publish' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 verbose node symlink /usr/local/bin/node | |
5 verbose publish [ '.' ] | |
6 verbose cache add [ '.', null ] | |
7 verbose cache add spec="." args=[".",null] | |
8 verbose cache add local package /Users/boutell/src/apostrophe-snippets | |
9 silly lockFile 3a52ce78- . |
This file contains hidden or 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
for(var i = begin; i <= end; i++) { | |
pushOne(i); | |
} | |
function pushOne(i) { | |
q.push({name: 'Artist: ' + i}, function (err) { | |
console.log('wla' + i) | |
whop.lookupArtist(i) | |
}); | |
} |
This file contains hidden or 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
{{ aposArea(page, 'content2', { | |
controls: [ | |
'Bold', | |
'Italic', | |
'Underline', | |
'Strike', | |
'Subscript', | |
'Superscript', | |
'RemoveFormat', | |
'NumberedList', |
This file contains hidden or 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
/* jshint node:true */ | |
var generators = {}; | |
function range(first, last) { | |
var c = { | |
first: first, | |
last: last, | |
now: first, | |
step: function(c) { |
This file contains hidden or 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
upstream upstream-EXAMPLE { | |
server localhost:3000; | |
# To use additional cores, edit your data/port file | |
# to read 3000 3001 3002 3003, and list the rest | |
# of them here too (commented out in this example). | |
# Your site will listen on one port per process | |
# automatically. Requires latest deployment files | |
# as found in sandbox | |
#server localhost:3001; | |
#server localhost:3002; |
This file contains hidden or 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 list = { | |
name: 'bob', | |
next: { | |
name: 'dick', | |
next: { | |
name: 'harry' | |
} | |
} | |
}; |
This file contains hidden or 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
cd /opt/stagecoach/apps/fandm/current | |
node app fandm:refresh-directory --parallel=4 |
This file contains hidden or 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
app.use(function(req, res, next) { | |
var params = {}; | |
_.merge(params, req.body || {}, req.query || {}, req.params || {}); | |
req.params = params; | |
return next(); | |
}); |
This file contains hidden or 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
# YAML supports quotation marks | |
label: "$Revision: 115 $LastChangedDate: 2015-10-26 11:52:27 -0400 (Mon, 26 Oct 2015) $" | |
# YAML supports multiline strings without quotation marks | |
# The indentation is significant. | |
label: > | |
$Revision: 115 | |
$LastChangedDate: 2015-10-26 11:52:27 -0400 (Mon, 26 Oct 2015) $ |
This file contains hidden or 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
// FOR 0.6 | |
module.exports = { | |
modules: { | |
'apostrophe-assets': { | |
minify: true | |
} | |
} | |
}; |