I hereby claim:
- I am idris on github.
- I am idrism (https://keybase.io/idrism) on keybase.
- I have a public key whose fingerprint is 04FF 1E6F E9C0 B832 7642 6630 B2C9 E54F E841 04FE
To claim this, I am signing this object:
| Verifying my Blockstack ID is secured with the address 1GVKoZ6YR9qjeFGqxKqLmBCaydvtKYbr4h https://explorer.blockstack.org/address/1GVKoZ6YR9qjeFGqxKqLmBCaydvtKYbr4h |
I hereby claim:
To claim this, I am signing this object:
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| #!/bin/bash | |
| git merge -m "Merge #$1 from $2 into $(git symbolic-ref --short HEAD)" origin/$2 |
| <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> |
| 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 |
| #!/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 |
| /******************************************************************** | |
| * 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 | |
| * | |
| */ |
| #!/usr/bin/env node | |
| var fs = require('fs'); | |
| var exec = require('child_process').exec; | |
| /* | |
| * lesswatch usage: | |
| * | |
| * `lesswatch` to watch the current directory |
| #!/bin/bash | |
| FILE=$1 | |
| if [ -d $FILE ]; then | |
| DIR=$FILE | |
| else | |
| DIR=`dirname $FILE` | |
| fi | |
| function parse_git_branch { |