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
... | |
clientID = '1234'; | |
... | |
models.Client.find({clientID: clientID}, function(err, client) { | |
console.log('ClientPasswordStrategy client = ' + client); | |
console.log('client.clientID = ' + client.clientID); | |
} | |
Output: |
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
server.serializeClient(function(clientString, done) { | |
// @TODO for some reason clientJSON is not valid JSON | |
console.log('clientString = ' + clientString); | |
var client = JSON.parse(clientString); | |
console.log('_id = ' + client._id); | |
console.log('name = ' + client.name); | |
console.log('secret = ' + client.secret); | |
done(null, client._id); | |
}); |
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
restart -f | |
# Refreshing C:/Users/zdw5010/Documents/331/mipsverilog/work.Driver | |
# Loading work.Driver | |
# Refreshing C:/Users/zdw5010/Documents/331/mipsverilog/work.Datapath | |
# Loading work.Datapath | |
run -all | |
# 0 Driver.dp write regs | |
# 5 Driver Clock = 1 | |
# 5 Driver.dp fetch PC = 00000000 IR = 00000000, Instruction Number = 000 | |
# 5 Driver.dp decode |
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
models.User.find({ $or: [{"username":String(reqUsername)},{"email":String(reqEmail)}]}, function(err, user) { | |
console.log('user = ' + JSON.stringify(user)); | |
}); |
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
/home/zach/src/Event-Playlist/node_modules/imagemagick/imagemagick.js:126 | |
prop[comps[0].trim().toLowerCase()] = comps[1].trim() | |
^ | |
TypeError: Cannot set property '22' of undefined | |
at parseIdentify (/home/zach/src/Event-Playlist/node_modules/imagemagick/imagemagick.js:126:45) | |
at null.callback (/home/zach/src/Event-Playlist/node_modules/imagemagick/imagemagick.js:155:18) | |
at Accumulator.finish (/home/zach/src/Event-Playlist/node_modules/imagemagick/imagemagick.js:60:55) | |
at ChildProcess.<anonymous> (/home/zach/src/Event-Playlist/node_modules/imagemagick/imagemagick.js:86:11) | |
at ChildProcess.EventEmitter.emit (events.js:99:17) |
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
% Zachary Wolfe | |
% [email protected] | |
% CMPSC 456 SPR 2013 | |
function [aQR, rQR, aMGS, rMGS, aCHOL, rCHOL] = fit() | |
t = 0:0.05:1; | |
V = vander(t); | |
X = V(:,17:21); | |
b = sin(pi*t); | |
b = b'; % make b a column vector |
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
[ | |
{ | |
"name": "foo", | |
"number": "bar", | |
"errors": [3, 5] | |
}, | |
{ | |
"name": "foo2", | |
"number": "bar2", | |
"errors": [1, 2] |
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
127.0.0.1 - - [Wed, 20 Mar 2013 13:00:27 GMT] "GET /login HTTP/1.1" 200 45 "http://127.0.0.1:3000/login" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.17 (KHTML, like Gecko) Ubuntu Chromium/24.0.1312.56 Chrome/24.0.1312.56 Safari/537.17" | |
127.0.0.1 - - [Wed, 20 Mar 2013 13:00:27 GMT] "GET /favicon.ico HTTP/1.1" 404 - "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.17 (KHTML, like Gecko) Ubuntu Chromium/24.0.1312.56 Chrome/24.0.1312.56 Safari/537.17" | |
127.0.0.1 - - [Wed, 20 Mar 2013 13:00:30 GMT] "GET /account HTTP/1.1" 302 68 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.17 (KHTML, like Gecko) Ubuntu Chromium/24.0.1312.56 Chrome/24.0.1312.56 Safari/537.17" | |
127.0.0.1 - - [Wed, 20 Mar 2013 13:00:30 GMT] "GET /login HTTP/1.1" 200 45 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.17 (KHTML, like Gecko) Ubuntu Chromium/24.0.1312.56 Chrome/24.0.1312.56 Safari/537.17" | |
127.0.0.1 - - [Wed, 20 Mar 2013 13:00:30 GMT] "GET /favicon.ico HTTP/1.1" 404 - "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.17 (KHTM |
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
<?php echo '<p>Hello World</p>'; ?> |
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
ncaught Error: Attempted to handle event `willSetProperty` on <Travis.Build:ember3526:5882247> while in state rootState.loaded.reloading. Called with {reference: [object Object], store: <Travis.Store:ember464>, name: _duration} |
OlderNewer