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
thoid:~ timoxley$ gcc | |
-bash: gcc: command not found | |
thoid:~ timoxley$ brew install git | |
==> Downloading http://kernel.org/pub/software/scm/git/git-1.7.6.tar.bz2 | |
File already downloaded in /Users/timoxley/Library/Caches/Homebrew | |
==> make prefix=/usr/local/Cellar/git/1.7.6 install | |
==> Exit Status: 1 | |
http://github.com/mxcl/homebrew/blob/master/Library/Formula/git.rb#L31 | |
==> Environment |
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
class API extends Backbone.Model | |
{} | |
fetchData: -> | |
// API call here | |
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
/* | |
* Convert HTML elements titlecase with jQuery | |
* (jQuery plugin version of http://individed.com/code/to-title-case/js/to-title-case.js) | |
*/ | |
jQuery.fn.titlecase = function() { | |
return this.each(function() { | |
var newText = jQuery(this).text().replace(/([\w&`'‘’"“.@:\/\{\(\[<>_]+-? *)/g, | |
function(match, p1, index, title) { | |
if (index > 0 && title.charAt(index - 2) !== ":" && match.search(/^(a(nd?|s|t)?|b(ut|y)|en|for|i[fn]|o[fnr]|t(he|o)|vs?\.?|via)[ \-]/i) > -1) return match.toLowerCase(); | |
if (title.substring(index - 1, index + 1).search(/['"_{(\[]/) > -1) return match.charAt(0) + match.charAt(1).toUpperCase() + match.substr(2); |
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
var Spine = require('../../lib/spine') | |
require('../../lib/spine-riak') | |
TestServer = require('riak-js').TestServer | |
var path = require('path') | |
var Config = require('../../config') | |
var testCase = require('nodeunit').testCase; | |
var db = require('riak-js').getClient({port: Config.riakPort, debug: Config.debug}) | |
var ts = new TestServer({binDir: Config.riakBinDir, tempDir: path.normalize(process.cwd() + '/.riaktest')}) |
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
var Config = require('../config') | |
var db = require('riak-js').getClient({port: Config.riakPort, debug: Config.debug}) | |
var Spine = require('./spine') | |
var Model = Spine.Model | |
var Singleton = Spine.Class.create() | |
Singleton.include({ | |
model: function() { |
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
var db = require('riak-js').getClient({port: 8098, debug: true}) | |
exports['can call remove then call getAll'] = function(test) { | |
var bucket = 'Bugs' | |
var key = 'KLM' | |
var object = { | |
"frustrating": true | |
} | |
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
/** | |
* Module dependencies. | |
*/ | |
var express = require('express'); | |
var mongoose = require('mongoose'); | |
var fs = require('fs'); | |
var Schema = mongoose.Schema; | |
var db = mongoose.connect('mongodb://localhost/myapp'); |
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
/************ CLASS METHODS ***********************/ | |
// TODO: Document use of promise here | |
StreamSchema.static('findActivities', function (streamId, callback) { | |
var promise = new mongoose.Promise; | |
if (callback) promise.addBack(callback); | |
require('./activity').find({'streamId': streamId}, promise.resolve.bind(promise)) | |
return promise | |
}) |
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
var fileBody = fs.readFileSync(image1, 'binary') | |
var fileName = path.basename(image1) | |
var mimeType = mime.lookup(image1) | |
console.log(mimeType) | |
var headers = { | |
'Accept': 'application/json', | |
'Content-Type': 'multipart/form-data; boundary=----WebKitFormBoundaryMfJEpQcCbybb6A8U' | |
} |
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
var dataTotal = 5242880 // 5 meg | |
var filePath = path.join(process.cwd, 'test', 'testData') | |
var randomData = function() { | |
return String(Math.round(Math.random())) | |
} | |
var stream = fs.createWriteStream(filePath) | |
stream.on('close', function() { | |
done() | |
}) |