Skip to content

Instantly share code, notes, and snippets.

View areichman's full-sized avatar

Aaron Reichman areichman

View GitHub Profile
@digitaljhelms
digitaljhelms / gist:4287848
Last active November 23, 2025 17:07
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
@furf
furf / _.deep.js
Created July 30, 2012 17:06
underscore.js mixin for plucking nested properties
_.mixin({
// Get/set the value of a nested property
deep: function (obj, key, value) {
var keys = key.replace(/\[(["']?)([^\1]+?)\1?\]/g, '.$2').replace(/^\./, '').split('.'),
root,
i = 0,
n = keys.length;