Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jnoss on github.
  • I am noss_asics (https://keybase.io/noss_asics) on keybase.
  • I have a public key ASDURdFKzakVhYNIJBDhMSBTfbalXMSCS8vqq7tq3xCo-wo

To claim this, I am signing this object:

@jnoss
jnoss / forbes_fec_downloader.md
Last active June 24, 2017 20:58
Forbes FEC downloader
@jnoss
jnoss / mysql_macosx.md
Created June 24, 2017 19:39
mysql on mac osx

Install and run mysql on mac os x

Instructions for installing mysql on mac os x via homebrew (a command line package manager for mac)

Install brew

Follow installation instructions at https://brew.sh/

Install mysql

Keybase proof

I hereby claim:

  • I am jnoss on github.
  • I am noss (https://keybase.io/noss) on keybase.
  • I have a public key ASADjwdS-TLDvxhhItFKO-W6mkqdAVgcTmmWgWp_5IVleQo

To claim this, I am signing this object:

@jnoss
jnoss / build-tmux-debian.sh
Last active August 29, 2015 14:27 — forked from niun/build-tmux-debian.sh
build tmux 2.0 on debian (tested with raspbian wheezy on a raspberry pi)
#!/bin/bash
sudo apt-get install libevent-dev
sudo apt-get install libncurses-dev
wget "https://github.com/tmux/tmux/releases/download/2.0/tmux-2.0.tar.gz"
tar xvfz tmux-2.0.tar.gz
cd tmux-2.0/
./configure && make
sudo make install