Skip to content

Instantly share code, notes, and snippets.

View coolaj86's full-sized avatar
😎
🐹 Go 🦎 Zig πŸ“¦ Node 🐧 POSIX πŸͺŸ PowerShell

AJ ONeal coolaj86

😎
🐹 Go 🦎 Zig πŸ“¦ Node 🐧 POSIX πŸͺŸ PowerShell
View GitHub Profile
// 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') {
// 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];
// 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;
// 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;
# /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.
// 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);
}
map.connect 'lists/:fbuid',
:controller => 'lists',
:action => 'index',
:conditions => { :method => :get }
map.connect 'lists/:fbuid',
:controller => 'lists',
:action => 'create',
:conditions => { :method => :post }
// 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) {
<html>
<head>
</head>
<body>
<script>
function make_promise() {
var status = 'unresolved',
outcome,
waiting = [],
dreading = [];
@coolaj86
coolaj86 / poor-mans-dyndns.js
Created October 13, 2010 16:10
poor-mans-dyndns.js
var fs = require('fs'),
sys = require('sys'),
connect = require('connect'),
url = require('url'),
rest,
server,
MDB = {};
rest = function (app) {