Skip to content

Instantly share code, notes, and snippets.

View timoxley's full-sized avatar

Tim Kevin Oxley timoxley

View GitHub Profile
@timoxley
timoxley / account.js
Created December 15, 2011 19:25
account.js
'use strict'
var mongoose = require('mongoose'),
Schema = mongoose.Schema
function forceFormat(subdomain) {
return subdomain.toLowerCase().remove(/[^a-z0-9]/g)
}
var AccountSchema = new Schema({
'name must be unique': function(test) {
account.save(function(err) {
if (/duplicate/.test(err) || /unique/.test(err)) {
console.log(err.message)
test.done()
}
blueprints.generate('Account', function(err, anotherAccount) {
if (err) throw err
anotherAccount.name = account.name
anotherAccount.save(function(err) {
@timoxley
timoxley / m.js
Created December 20, 2011 18:31
mongoose oplog
'use strict'
GLOBAL.DEBUG = true;
var mongoose = require('mongoose')
mongoose.connect('mongodb://localhost/groupdock_development')
mongoose.connection.on('open', function() {
var test = require("assert");
var Slave = function() {
this.running = false;
@timoxley
timoxley / file_upload.js
Created January 9, 2012 05:27
dummy file upload
var Step = require('step'),
fs = require('fs'),
path = require('path'),
Http = require('http'),
mime = require('mime')
/**
Converts a list of parameters to forum data
- `fields` - a property map of key value pairs
- `files` - a list of property maps of content
@timoxley
timoxley / dnode-close-test.js
Created January 17, 2012 20:13
dnode-close-test.js
var dnode = require('dnode')
var upnode = require('upnode')
var server = dnode({})
server.use(upnode.ping)
server.listen(5000)
var client = upnode.connect(5000)
client(function(remote, connection) {
console.log('connected', arguments)
@timoxley
timoxley / client.js
Created January 19, 2012 09:15
Bidirectional upnode
var upnode = require('upnode')
var dnode = require('dnode')
var assert = require('assert')
var PORT = 5000
var client = upnode(function(remote, connection) {
connection.on('remote', function(remote) {
remote.testServer(function(err, value) {
assert.ok(!err)
@timoxley
timoxley / index.html
Created January 21, 2012 04:47
dnode-web-test
<html>
<head>
<script src="/dnode.js" type="text/javascript"></script>
<script type="text/javascript">
window.onload = function () {
DNode.connect(function (remote) {
remote.cat(function (says) {
document.getElementById('says').innerHTML = says;
});
});
@timoxley
timoxley / isPortTaken.js
Last active April 19, 2024 11:51
check if a port is being used with nodejs
var isPortTaken = function(port, fn) {
var net = require('net')
var tester = net.createServer()
.once('error', function (err) {
if (err.code != 'EADDRINUSE') return fn(err)
fn(null, true)
})
.once('listening', function() {
tester.once('close', function() { fn(null, false) })
.close()
@timoxley
timoxley / file_util.js
Created January 28, 2012 05:35
figure out how to write file from src/dir file/dir status
// figures out how to write the file based on source, destination
// eg
// source = a/f.jpg
// dest = /tmp
// result = /tmp/f.jpg
//
// source = a/f.jpg
// dest = tmp/g.jpg
// result = tmp/g.jpg
function getWritePathFromSource(source, destination, callback) {
@timoxley
timoxley / gist:1721593
Created February 2, 2012 04:58
Recursively run all tests in test directory using mocha
// this will find all files ending with _test.js and run them with Mocha. Put this in your package.json
"scripts": {
"test": "find ./tests -name '*_test.js' | xargs mocha -R spec"
},