This file has been truncated, but you can view the full file.
This file contains 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
2001 silly mapToRegistry name options | |
2002 silly mapToRegistry using default registry | |
2003 silly mapToRegistry registry https://registry.npmjs.org/ | |
2004 silly mapToRegistry uri https://registry.npmjs.org/options | |
2005 verbose addNameRange registry:https://registry.npmjs.org/options not in flight; fetching | |
2006 verbose request uri https://registry.npmjs.org/tinycolor | |
2007 verbose request no auth needed | |
2008 info attempt registry request try #1 at 7:47:37 PM | |
2009 verbose etag "7Q55AK0YV957DH6ZT14LNQOJW" | |
2010 http request GET https://registry.npmjs.org/tinycolor |
This file contains 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
#!/bin/bash | |
# MongoDB Backup Script | |
NOW=$(date +"%m-%d-%Y-%H-%M") | |
NAME="backup.$NOW" | |
DB="mean-dev" | |
SERVER="localhost" | |
PORT="27017" | |
mongodump --host $SERVER -d $DB --port $PORT --out $NAME | |
tar -cvf $NAME.tar $NAME/ | |
rm -r $NAME |
This file contains 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://training.github.com/kit/downloads/github-git-cheat-sheet.pdf | |
http://rogerdudler.github.io/git-guide/ | |
Fetch and Pull all remote branches. | |
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done | |
git fetch --all | |
git pull --all |
This file contains 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
{ | |
"_id" : ObjectId("5712d20e4accc8cf5debfab9"), | |
"title" : "", | |
"gameId" : "f6fa652c-bf4a-4131-a0b8-a3ecee1f383a", | |
"sportName" : "NFL", | |
"scheduleType" : "week", | |
"status" : "closed", | |
"scheduled" : "2016-08-20T17:00:00+00:00", | |
"scheduledOn" : ISODate("2016-08-20T20:00:00.000Z"), | |
"scheduledDate" : ISODate("2016-08-20T00:00:00.000Z"), |