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
// Crockford's Later method | |
// Act III: Function the Ultimate | |
// http://yuiblog.com/crockford | |
if (typeof Object.prototype.later !== 'function') { | |
Object.prototype.later = function (msec, method) { | |
var that = this, | |
args = Array.prototype.slice | |
.apply(arguments, [2]); | |
if (typeof method === 'string') { |
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
// Crockford's new_constructor | |
// Act III: Function the Ultimate | |
// yuiblog.com/crockford | |
function new_constructor(extend, initializer, methods) { | |
var func, prototype = Object.create(extend && | |
extend.prototype); | |
if (methods) { | |
methods.keys().forEach(function (key) { | |
prototype[key] = methods[key]; |
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
// Crockford's Functional Inheritance Example | |
// Slide 68, Act III: Function the Ultimate | |
// http://yuiblog.com/crockford | |
// Parent | |
function gizmo(id) { | |
return { | |
id: id, | |
toString: function () { | |
return "gizmo " + this.id; |
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
// Crockford's Prototypal Inheritance Example | |
// Slide 53, Act III: Function the Ultimate | |
// http://yuiblog.com/crockford | |
// Parent | |
var gizmo = new_constructor(Object, function (id) { | |
this.id = id; | |
}, { | |
toString: function () { | |
return "gizmo " + this.id; |
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/lib/gems/1.8/gems/actionpack-2.3.5/lib/action_controller/resources.rb | |
# config/initializers/resources.rb | |
module ActionController | |
# == Overview | |
# | |
# ActionController::Resources are a way of defining RESTful \resources. A RESTful \resource, in basic terms, | |
# is something that can be pointed at and it will respond with a representation of the data requested. | |
# In real terms this could mean a user with a browser requests an HTML page, or that a desktop application | |
# requests XML data. |
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
// Douglas Crockford's once | |
// Part 5: The End of All Things, Slide 39 | |
// Once or throw exception | |
function once(func) { | |
return function () { | |
var f = func; | |
func = null; | |
return f.apply(this, arguments); | |
} |
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
map.connect 'lists/:fbuid', | |
:controller => 'lists', | |
:action => 'index', | |
:conditions => { :method => :get } | |
map.connect 'lists/:fbuid', | |
:controller => 'lists', | |
:action => 'create', | |
:conditions => { :method => :post } |
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
// join any number of promises and return the results in the order they were passed in | |
function join_promises () { | |
var p = make_promise(), | |
args = Array.prototype.slice.call(arguments,0), | |
num = 0, | |
ps = []; | |
// Debug version only | |
if (args[0].isArray) { | |
if (args.length > 1) { |
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
<html> | |
<head> | |
</head> | |
<body> | |
<script> | |
function make_promise() { | |
var status = 'unresolved', | |
outcome, | |
waiting = [], | |
dreading = []; |
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 fs = require('fs'), | |
sys = require('sys'), | |
connect = require('connect'), | |
url = require('url'), | |
rest, | |
server, | |
MDB = {}; | |
rest = function (app) { |