Skip to content

Instantly share code, notes, and snippets.

View timoxley's full-sized avatar

Tim Kevin Oxley timoxley

View GitHub Profile
@timoxley
timoxley / omfg
Created July 21, 2011 07:49
brew git xcode lion the hell.
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
@timoxley
timoxley / gist:1236424
Created September 23, 2011 00:10 — forked from scottharvey/gist:1236411
Backbone class functions in Coffeescript
class API extends Backbone.Model
{}
fetchData: ->
// API call here
@timoxley
timoxley / jquery.titlecase.js
Created September 27, 2011 07:28
jQuery titlecase plugin
/*
* 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);
@timoxley
timoxley / test_spine_riak.js
Created October 14, 2011 13:59
Riak TestServer usage
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')})
@timoxley
timoxley / spine_riak.js
Created October 15, 2011 02:08
spine_riak.js
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() {
@timoxley
timoxley / test_bug.js
Created October 17, 2011 09:14
Riak `remove` bugs
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
}
@timoxley
timoxley / gist:1314547
Created October 25, 2011 22:26 — forked from uptownben/gist:1314512
Mongoose JS Schema methods error
/**
* 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');
@timoxley
timoxley / stream.js
Created October 25, 2011 22:41
mongoose static/instance methods
/************ 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
})
@timoxley
timoxley / gist:1354024
Created November 10, 2011 03:28
multipartform encoding image woes
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'
}
@timoxley
timoxley / writeData.js
Created November 28, 2011 13:27
slowly write random data to file
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()
})