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
madlib | |
https://glitch.com/edit/#!/merciful-handsaw?path=server.js:22:31 | |
echo | |
https://glitch.com/edit/#!/deserted-unicorn?path=server.js:7: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
1 | |
SELECT * FROM restaurants; | |
2 | |
SELECT * FROM restaurants WHERE cuisine='Italian'; | |
3 | |
SELECT id, name FROM restaurants WHERE cuisine='Italian' LIMIT 10; | |
4 | |
SELECT count(*) FROM restaurants WHERE cuisine='Thai'; | |
5 | |
SELECT count(*) FROM restaurants; |
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
//find a command that retrieves all restaurants | |
db.restaurants.find({}) | |
//limit and sort, alphabetize, take 10 | |
db.restaurants.find().sort({name: 1}).limit(10) | |
//get by id | |
var objectId = db.restaurants.findOne({}, {_id: 1})._id | |
db.restaurants.find({_id: objectId}) |
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
https://waiting-interest.glitch.me/ | |
https://scythe-button.glitch.me |
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
https://road-earth.glitch.me/ | |
https://ludicrous-aftershave.glitch.me/ | |
https://fish-vault.glitch.me/ |
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
glitch.com/edit/#!/deserted-marsupial | |
https://glitch.com/edit/#!/few-koala |
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
{ | |
"_embedded": { | |
"events": [ | |
{ | |
"name": "Aubrey And The Three Amigos Tour", | |
"type": "event", | |
"id": "Z7r9jZ1AeC7A6", | |
"test": false, | |
"url": "http://www.ticketsnow.com/InventoryBrowse/TicketList.aspx?PID=2384147", |
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
public class helloRest{ | |
public static String whatTimeIsIt(){ | |
return system.now().format(); | |
} | |
} | |
public class test { | |
public static string okThen() { | |
return 'alright'; | |
} |
This file has been truncated, but you can view the full file.
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
zip_code dma_code dma_description | |
01001 543 SPRINGFIELD - HOLYOKE | |
01002 543 SPRINGFIELD - HOLYOKE | |
01003 543 SPRINGFIELD - HOLYOKE | |
01004 543 SPRINGFIELD - HOLYOKE | |
01005 506 BOSTON (MANCHESTER) | |
01007 543 SPRINGFIELD - HOLYOKE | |
01008 543 SPRINGFIELD - HOLYOKE | |
01009 543 SPRINGFIELD - HOLYOKE | |
01010 543 SPRINGFIELD - HOLYOKE |