Skip to content

Instantly share code, notes, and snippets.

View reid's full-sized avatar

Reid Burke reid

View GitHub Profile
@reid
reid / delete-tags.sh
Created October 1, 2012 22:06 — forked from rgrove/delete-tags.sh
Shell script to delete useless build tags from GitHub forks of YUI 3
#!/bin/bash
# This script will delete *all* local and remote tags from any git repo you run
# it in that begin with "yui3-". Please use it to remove the hundreds of
# build tags from your YUI 3 fork.
#
# This script will not delete branches; just tags.
set -e
@reid
reid / gist:604617
Created September 30, 2010 14:05 — forked from anonymous/gist:604596
var baseController = {};
baseController.user = {
render: function(u) {}
};
baseController.userList = {
render: function(ul){
ul.forEach(function(v,i,a){
baseController.user.render(v);
}
}