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
| Last login: Thu Mar 13 10:43:11 on ttys003 | |
| Michaels-MacBook-Air:~ michaelphillips$ foo | |
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
| { | |
| "ie": { | |
| "icon": "/agents/icons/browser_ie.png" | |
| }, | |
| "firefox": { | |
| "icon": "/agents/icons/browser_firefox.png" | |
| }, | |
| "chrome": { | |
| "icon": "/agents/icons/browser_chrome.png" | |
| }, |
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
| var collectionsToEmpty = [ 'bidOMatics', 'bidTransactions', 'bids', 'invoices', 'users' ]; | |
| for(var i = 0; i < collectionsToEmpty.length; i++) | |
| db[collectionsToEmpty[i]].remove({}); | |
| if(db.paypal_tx) | |
| db.paypal_tx.drop(); | |
| db.auctions.update({}, | |
| { | |
| $set: { currentPrice: 0.0 }, |
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
| S3_BUCKET=browser-support | |
| MONGO_DB=browser-support | |
| MONGO_PASSWORD=KECrZojsdKcDGokhtYhxwo7rCfELxp | |
| MONGO_PORT=27017 | |
| MONGO_SERVER=0.0.0.0 | |
| MONGO_USER=userMJzqT7 |
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
| S3_BUCKET=browser-support | |
| MONGO_DB=browser-support | |
| MONGO_PORT=27017 | |
| MONGO_SERVER=0.0.0.0 |
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
| npm http GET https://registry.npmjs.org/connect | |
| npm http GET https://registry.npmjs.org/send | |
| npm http GET https://registry.npmjs.org/broccoli-kitchen-sink-helpers | |
| npm http 200 https://registry.npmjs.org/findup-sync | |
| npm ERR! Error: No compatible version found: findup-sync@'^0.1.2' | |
| npm ERR! Valid install targets: | |
| npm ERR! ["0.1.0","0.1.1","0.1.2","0.1.3"] |
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
| Michaels-MacBook-Air:foobar michaelphillips$ node -v | |
| v0.10.9 | |
| Michaels-MacBook-Air:foobar michaelphillips$ npm -v | |
| 1.2.24 |
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
| var Rating = function( letter ) { | |
| this.letter = letter; | |
| } | |
| Rating.from_cost = function( cost ) { | |
| if ( cost <= 2 ) { | |
| return new this( 'A' ); | |
| } else if ( cost <= 4 ) { | |
| return new this( 'B' ); | |
| } else if ( cost <= 8 ) { |
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
| var moment = require('moment'); | |
| var Review = function( review ) { | |
| this.review = review; | |
| } | |
| Review.prototype.authorFullName = function() { |
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
| var moment = require('moment'); | |
| var Review = function( review ) { | |
| this.review = review; | |
| } | |
| Review.prototype.authorFullName = function() { |