I hereby claim:
- I am faizalheesyam on github.
- I am faizalheesyam (https://keybase.io/faizalheesyam) on keybase.
- I have a public key whose fingerprint is 8BC9 3385 8724 9B9E EB37 568F 2A2A 6A5A 8BDA 7FA6
To claim this, I am signing this object:
| #!/bin/sh | |
| set -e | |
| set -x | |
| for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f3) | |
| do | |
| npm -g install "$package" | |
| done |
| #!/usr/bin/env ruby | |
| # | |
| # CLI tool for locating and removing a Homebrew installation | |
| # http://brew.sh/ | |
| # | |
| # Author: Stephen Benner | |
| # https://github.com/SteveBenner | |
| # | |
| # Contributors: | |
| # - @AaronKulick |
I hereby claim:
To claim this, I am signing this object:
| // re-organize $_FILES array | |
| // usefull when Uploading Multiple Files | |
| function rearrange_files($arr) { | |
| foreach($arr as $key => $all) { | |
| foreach($all as $i => $val) { | |
| $new_array[$i][$key] = $val; | |
| } | |
| } | |
| return $new_array; |