Skip to content

Instantly share code, notes, and snippets.

View idris's full-sized avatar

Idris Mokhtarzada idris

View GitHub Profile
@idris
idris / lesswatch.js
Created July 13, 2011 14:37
lesswatch command that can be run to watch a directory and compile .less files to .css files when they are modified.
#!/usr/bin/env node
var fs = require('fs');
var exec = require('child_process').exec;
/*
* lesswatch usage:
*
* `lesswatch` to watch the current directory
Verifying my Blockstack ID is secured with the address 1GVKoZ6YR9qjeFGqxKqLmBCaydvtKYbr4h https://explorer.blockstack.org/address/1GVKoZ6YR9qjeFGqxKqLmBCaydvtKYbr4h
@idris
idris / github.sh
Created January 20, 2011 22:23
command-line utility that opens a browser to the given file/directory in GitHub.
#!/bin/bash
FILE=$1
if [ -d $FILE ]; then
DIR=$FILE
else
DIR=`dirname $FILE`
fi
function parse_git_branch {
@idris
idris / gist:8306743
Last active January 2, 2016 12:59
Phone Number Country Code Dropdown
<select size="1" name="phone_number_country_code">
<option value="1" selected="">United States and Canada (+ 001)</option>
<option value="93">Afghanistan (+ 093)</option>
<option value="355">Albania (+ 355)</option>
<option value="213">Algeria (+ 213)</option>
<option value="684">American Samoa (+ 684)</option>
<option value="376">Andorra (+ 376)</option>
<option value="244">Angola (+ 244)</option>
<option value="1">Anguilla (+ 001)</option>
<option value="672">Antarctica (+ 672)</option>
@idris
idris / boxen dependency cycle
Created November 11, 2013 17:29
I'm getting this when running boxen. I'm on mavericks.
Error: Could not apply complete catalog: Found 1 dependency cycle:
(File[/Users/idris/src/our-boxen/script/boxen-git-credential] => File[/opt/boxen/bin/boxen-git-credential] => Repository[/opt/boxen/homebrew] => Class[Homebrew] => Class[Main] => Node[default] => File[/Users/idris/src/our-boxen] => File[/Users/idris/src/our-boxen/script/boxen-git-credential])
Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz
@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 / 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
*
*/
function parse_git_branch {
local branch=`git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'`
if [ "$branch" == "" ]
then
echo ""
else
echo \($branch\)\
fi
}
.*iPhone|iPod|BlackBerry|Android|webOS|Windows CE|IEMobile|Symbian|Opera Mini|Opera Mobi|Nokia|HTC|LG-CU920|SAMSUNG-SGH-A687|SAMSUNG-SGH-A867.*
@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