I hereby claim:
- I am rnarian on github.
- I am rnarian (https://keybase.io/rnarian) on keybase.
- I have a public key whose fingerprint is 07F9 6A36 C4E1 7520 8FA5 DC30 B3DF 1563 8A2C 84DB
To claim this, I am signing this object:
| /** | |
| * | |
| * Simple node script which turns serialized keys | |
| * in json file into nested json object | |
| * | |
| * input: { | |
| * "key.key2": "value" | |
| * } | |
| * | |
| * output: { |
| #!/bin/bash | |
| declare -a all_labels=( | |
| "GEN_LBL_SALUTATION" | |
| "GEN_LBL_TITLE" | |
| "GEN_LBL_NAME" | |
| "GEN_LBL_FNAME" | |
| "GEN_LBL_LNAME" | |
| "GEN_LBL_ORGA" | |
| "GEN_LBL_POSITION" |
| <?php | |
| // Put your custom configuration here | |
| if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && 'https' === $_SERVER['HTTP_X_FORWARDED_PROTO']) { | |
| $_SERVER['HTTPS'] = 1; | |
| } |
| <script>!function(a,b){"use strict";b.documentElement.className=b.documentElement.className.replace("no-js","js"),("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch)&&(document.documentElement.className=document.documentElement.className.replace("no-touch","touch"))}(window,document);</script> |
| #!/bin/bash | |
| # Stops accidental commits to master and develop. Exceptions to commits starting with "Release". | |
| # https://gist.github.com/rnarian/5bb974bd876beb5de11f | |
| # Install: | |
| # cd path/to/git/repo | |
| # curl -fL -o .git/hooks/commit-msg https://gist.githubusercontent.com/rnarian/5bb974bd876beb5de11f/raw/commit-msg | |
| # chmod +x .git/hooks/commit-msg | |
| BRANCH=`git rev-parse --abbrev-ref HEAD` | |
| MESSAGE=$(cat .git/COMMIT_EDITMSG) |
| RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] | |
| RewriteRule ^(.*)$ http://%1/$1 [R=301,L] |
I hereby claim:
To claim this, I am signing this object:
| source.c | |
| source.c++ | |
| source.coffee | |
| source.css | |
| source.css.less | |
| source.css.scss | |
| source.gfm | |
| source.git-config | |
| source.go | |
| source.java |
Add upstream repo:
git remote add upstream git://github.com/user/repo.git
Fetch upstream:
git fetch origin -v; git fetch upstream -v; git merge upstream/master