Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am esabban on github.
* I am fumduq (https://keybase.io/fumduq) on keybase.
* I have a public key ASAbxbjKPrHNfuc2qSQTtMbHC-t_OI8Bl74Zr8idFX-Glwo
To claim this, I am signing this object:
@esabban
esabban / keybase.md
Created January 1, 2020 19:51
Keybase Verification

Keybase proof

I hereby claim:

  • I am esabban on github.
  • I am fumduq (https://keybase.io/fumduq) on keybase.
  • I have a public key ASC8lzHz9b1bH4B_NzqFeIrG-KNtklMsCkUHohvJkoDXnwo

To claim this, I am signing this object:

@esabban
esabban / keybase.md
Created August 11, 2016 20:10
keybase.md

Keybase proof

I hereby claim:

  • I am esabban on github.
  • I am eriq (https://keybase.io/eriq) on keybase.
  • I have a public key whose fingerprint is 5E3E 321A DB78 EB08 8CDF 62DB 4FB5 10E2 4EAD F99D

To claim this, I am signing this object:

@esabban
esabban / Eric's Subnetting for Salexes.md
Last active August 29, 2015 14:09
Subnet mask homework
@esabban
esabban / npm_and_node_installer.sh
Created August 26, 2013 21:27
Node and NPM install script
#!/bin/sh
# A word about this shell script:
#
# It must work everywhere, including on systems that lack
# a /bin/bash, map 'sh' to ksh, ksh97, bash, ash, or zsh,
# and potentially have either a posix shell or bourne
# shell living at /bin/sh.
#
# See this helpful document on writing portable shell scripts:
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://npmjs.org/install.sh | sh