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
{ | |
"setlist": [ | |
[ | |
{ | |
"title": "Free", | |
"url": "http://phish.net/song/free", | |
"segue": "", | |
"number": 1 | |
}, | |
{ |
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
{ | |
"year": 2011, | |
"shows": [ | |
{ | |
"month": 1, | |
"day": 1, | |
"venue": "Madison Square Garden", | |
"showid": 1285281186 | |
}, | |
{ |
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
[{ | |
"showid": "1318359495", | |
"showdate": "2011-12-31", | |
"showyear": "2011", | |
"city": "New York", | |
"state": "NY", | |
"country": "USA", | |
"venue": "Madison Square Garden", | |
"setlistnotes": "Fluffhead contained an Auld Lang Syne tease from Trey. Light featured Page on theremin. Prior to Steam, a steam kettle and hot plate went off on stage, with Trey acting like he was attempting to put out the steam. Shortly after the song began, steam also came from the floor near the soundboard area. An amp (with the steam kettle on it), a keytar, a bass, a vacuum, and a few lights were then lifted off the stage. A woman in the front of the stage tossed a “Steam” sign into the front row, then rose with a barricade and security guard before eventually being lifted up over the band. Several other aerialists (clothed in various casual attire, equipped with black backpacks emitting smoke and lights on their backs) subsequently rose up from the crowd and ascended and descended several times. The fi |
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
query = model.query('videos').where('songname').equals('Reba') | |
model.subscribe query, (err, video) -> | |
console.log video | |
if err | |
console.log err |
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
get '/?', (page, model) -> | |
model.subscribe | |
where: | |
songname: 'Reba' | |
skip: 10 | |
limit: 5 | |
, (err, video) -> | |
videos = model.get 'videos' | |
page.render |
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
everyauth.debug = true; | |
everyauth.openid | |
.myHostname('http://local.host:3000') | |
.simpleRegistration({ | |
"nickname" : true | |
, "email" : true | |
, "fullname" : true | |
, "dob" : true | |
, "gender" : true |
NewerOlder