Skip to content

Instantly share code, notes, and snippets.

View idris's full-sized avatar

Idris Mokhtarzada idris

View GitHub Profile
@idris
idris / gist:364715
Created April 13, 2010 15:13 — forked from reinh/ship.sh
hack & ship all-in-one
#!/bin/sh -x
# git name-rev is fail
CURRENT=`git branch | grep '\*' | awk '{print $2}'`
git checkout master
git pull origin master
git checkout ${CURRENT}
git rebase master
git checkout master
git merge ${CURRENT}
git push origin master
@idris
idris / fix-layout-slugs-mongo.js
Created December 6, 2011 18:49
Script to update theme slugs
/********************************************************************
* fix-theme-slugs-mongo.js
*
* To run, replace localhost/db_name with your connection info and
* run this command:
*
* mongo localhost/db_name --quiet fix-layout-slugs-mongo.js
*
*/
@idris
idris / github.sh
Created November 13, 2012 04:03
command-line utility that opens a browser to the given file/directory/commit in GitHub. Now has blame command which opens github blame page.
#!/bin/bash
function parse_git_branch {
local branch=`cd $DIR;git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'`
if [ "$branch" == "" ]; then
exit 1
else
echo $branch
fi
@idris
idris / 0_reuse_code.js
Created March 20, 2014 16:56
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console