Skip to content

Instantly share code, notes, and snippets.

brew install zsh
chsh -s `which zsh`
url -L http://install.ohmyz.sh | sh
vi ~/.zshrc
plugins=(git brew npm)
Change:
ZSH_THEME="mh"
Enable syntax highlighting
@Arr0way
Arr0way / keybase.md
Created October 23, 2014 10:31
keybase.md

Keybase proof

I hereby claim:

  • I am arr0way on github.
  • I am arr0way (https://keybase.io/arr0way) on keybase.
  • I have a public key whose fingerprint is 6590 B89A 26F8 AEEC 0A05 DA42 72B0 22E7 915A 7084

To claim this, I am signing this object:

@Arr0way
Arr0way / Super Awesome Bash History Logger for OSX V1.0
Last active August 29, 2015 14:05
Super Awesome Bash History Logger for OSX V1.0 - Might work in Linux
##########################################################################################################
# | #
# . | Super Awesome Bash History Logger for OSX V1.0 #
# .. ............;;. | #
# ..:: @Arr0way ;;;;. | Disclaimer: Use at your own risk. #
# . . ::::::::::::;;:' | #
# :' | Enjoy. #
# | #
# #
# Save your console commands and your sanity.
@Arr0way
Arr0way / gist:9ae8ba38a4ba0629db9d
Created May 25, 2014 20:28
exploit/windows/local/ms10_015_kitrap0d
meterpreter > run exploit/windows/local/ms10_015_kitrap0d
[-] Error in script: NoMethodError undefined method `run_simple' for #<Msf::Modules::Mod6578706c6f69742f77696e646f77732f6c6f63616c2f6d7331305f3031355f6b69747261703064::Metasploit3:0x00000008b7d948>
@Arr0way
Arr0way / osx-rails-mysql-git-rvm
Last active August 29, 2015 13:57
OSX Mavericks install Git, Rails, RVM & MySQL - One Liner
brew install automake && brew install git && brew install mysql && \curl -L https://get.rvm.io|bash -s stable --ruby && source ~/.rvm/scripts/rvm && gem install rails && mkdir -p ~/Library/LaunchAgents && ln -s /usr/local/opt/mysql/homebrew.mxcl.mysql.plist ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist && launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist