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
window._ = require('underscore'); | |
window.Step = require('step'); | |
window.DNode = require('dnode'); | |
requirejs(['libs/json2', | |
'libs/modernizr-1.7.min', | |
'libs/backbone-min', | |
'libs/store.min'], | |
function () { | |
window.App = { |
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
/* | |
* Search Result view | |
*/ | |
define([ | |
// dependencies | |
'jQuery', | |
'Underscore', | |
'views/boiler', | |
'text!/templates/rows/result.html', |
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
/* | |
* Vimeo Player API wrapper | |
*/ | |
define(['Underscore'], function (_) { | |
// create a new wrapper | |
var Player = function(iframe, options) { | |
this.options = options || {}; | |
this.iframe = iframe.get(0); |
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
Credit(status=u'failed', account=Account(holds_uri=u'/v1/marketplaces/TEST-MP3pC20sLzdm4MNIebqlJYLw/accounts/AC1x4WUWLDstw17737PnXUwg/holds', name=u'Sander Pick', roles=[u'merchant', u'buyer'], created_at=datetime.datetime(2013, 1, 23, 2, 25, 47, 420721, tzinfo=<iso8601.iso8601.Utc object at 0x10e3696d0>), uri=u'/v1/marketplaces/TEST-MP3pC20sLzdm4MNIebqlJYLw/accounts/AC1x4WUWLDstw17737PnXUwg', bank_accounts_uri=u'/v1/marketplaces/TEST-MP3pC20sLzdm4MNIebqlJYLw/accounts/AC1x4WUWLDstw17737PnXUwg/bank_accounts', refunds_uri=u'/v1/marketplaces/TEST-MP3pC20sLzdm4MNIebqlJYLw/accounts/AC1x4WUWLDstw17737PnXUwg/refunds', meta={}, debits_uri=u'/v1/marketplaces/TEST-MP3pC20sLzdm4MNIebqlJYLw/accounts/AC1x4WUWLDstw17737PnXUwg/debits', transactions_uri=u'/v1/marketplaces/TEST-MP3pC20sLzdm4MNIebqlJYLw/accounts/AC1x4WUWLDstw17737PnXUwg/transactions', email_address=u'[email protected]', id=u'AC1x4WUWLDstw17737PnXUwg', credits_uri=u'/v1/marketplaces/TEST-MP3pC20sLzdm4MNIebqlJYLw/accounts/AC1x4WUWLDstw17737PnXUwg/credits', ca |
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
info: Creating snapshot 0.1.0-9 | |
info Uploading: [=============================] 100% | |
info: Updating app island-mail-notifier | |
info: Activating snapshot 0.1.0-9 for island-mail-notifier | |
info: Starting app island-mail-notifier | |
error: Error running command deploy | |
error: socket hang up | |
info: | |
info: jitsu's client request timed out before the server could respond | |
help: This error may be due to network connection problems |
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
error: Error running command deploy | |
error: Nodejitsu Error (500): Internal Server Error | |
error: There was an error while attempting to deploy the app | |
error: | |
error: Rackspace Error (404): Item not found | |
error: Error output from Haibu: | |
error: | |
error: Error: Rackspace Error (404): Item not found | |
error: at Request._callback (/root/haibu-orchestra/node_modules/haibu/node_modules/cloudfiles/lib/cloudfiles/common.js:184:18) | |
error: at Request.init.self.callback (/root/haibu-orchestra/node_modules/haibu/node_modules/request/main.js:119:22) |
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
error: There was an error while attempting to start the app | |
error: Error spawning drone | |
error: Script took too long to listen on a socket | |
error: This type of error is usually a user error. |
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
sudo touch /var/log/mongod.log | |
sudo mkdir -p /data/db | |
sudo mongod --fork --logpath /var/log/mongod.log |
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
this.occSearchView = new OccSearchView({parentView: this, listEl: 'table#mytable'}).render(); | |
if (this.parentView.options.listEl) | |
this.$el.appendTo(this.parentView.$(listEl)); | |
else | |
this.$el.appendTo(this.parentView.$el); |
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
for(NSString* family in [UIFont familyNames]) { | |
NSLog(@"%@", family); | |
for(NSString* name in [UIFont fontNamesForFamilyName: family]) { | |
NSLog(@" %@", name); | |
} | |
} |
OlderNewer