Skip to content

Instantly share code, notes, and snippets.

View craigmaloney's full-sized avatar
👻
Anywhere but here.

Craig Maloney craigmaloney

👻
Anywhere but here.
View GitHub Profile
@joyeusenoelle
joyeusenoelle / Mastodon.md
Last active September 23, 2025 15:15
An increasingly less-brief introduction to Mastodon
@abhiomkar
abhiomkar / LateBinding.js
Created September 18, 2015 10:42
Early Binding & Late Binding in JavaScript
// Early Binding vs Late Binding
// Early Binding
var sum = function(a, b) {
return a + b;
};
var x = 5, y = 6;
var sum5n6 = sum.bind(null, x, y);