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
remote: Waf: Leaving directory `/tmp/node/build' | |
remote: 'install' finished successfully (0.201s) | |
remote: DEST_OS: linux | |
remote: DEST_CPU: ia32 | |
remote: Parallel Jobs: 1 | |
remote: Product type: program | |
remote: => Installing npm | |
remote: Configuring node.js application... | |
remote: => Configuring database... | |
remote: => Configuring upstart... |
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
script#pageTemplate(type='text/html') | |
tr.page | |
td.name | |
.tool | |
| <a data-bind='text: name, attr: {href: url}, click: clickAction'></a> | |
.thumb | |
| <img data-bind="attr: {src: thumb}" /> | |
td.edit | |
.tool | |
a.write(data-bind='click: editMe', href='#') |
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
io.setPath('/js/socketio-client/'); | |
var socket = new io.Socket(null, {port: 100}), | |
game = ko.model(), | |
input = ko.model({ | |
command: ko.observable('') | |
}), | |
canvas = document.getElementById('canvas'), | |
ctx = canvas.getContext('2d'), | |
commands = { |
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.post('/app/download.:format', function(req, res) { | |
if (req.body.attachment) { | |
console.log("Format is " + req.params.format); |
NewerOlder