Skip to content

Instantly share code, notes, and snippets.

View wbtuomela's full-sized avatar

Brandon Tuomela wbtuomela

View GitHub Profile
@wbtuomela
wbtuomela / git_catch_up
Created February 18, 2016 20:24
Merge upstream into forked tree
For example, current branch name is "proto" and remote repository name is "upstream".
This command performs the following processings in order.
git stash
git checkout master
git pull upstream master
git checkout proto
git rebase master proto
git stash pop
@wbtuomela
wbtuomela / neversink_mod.filter
Last active October 20, 2015 21:42
Personal modifications to Neversink's Loot Filter
#---------------------------------------------------------------------------------------------------------------
# NeverSink's Indepth Loot Filter
# traxxas modifications from VERSION 2.5 - Full
#---------------------------------------------------------------------------------------------------------------
#
# You can always find the latest version here:
# http://pastebin.com/Af00CbhA
# Forum discussion thread:
# http://www.pathofexile.com/forum/view-thread/1246208/page/1
# Please use this thread for feedback, questions and suggestions
@wbtuomela
wbtuomela / keybase.md
Last active January 29, 2016 21:17
keybase.io github verification

Keybase proof

I hereby claim:

  • I am wbtuomela on github.
  • I am traxxas (https://keybase.io/traxxas) on keybase.
  • I have a public key whose fingerprint is 82DF 6082 DF02 655C 6727 7BEA A86A 093C AC8F 1797

To claim this, I am signing this object:

@wbtuomela
wbtuomela / gist:6cccac08f7b9077b8e47
Last active August 29, 2015 14:16
CSR Generation with SHA-256 Signature
openssl req -nodes -newkey rsa:2048 -sha256 -keyout site.key -out site.csr
openssl req -nodes -newkey rsa:3072 -sha384 -keyout site.key -out site.csr
openssl req -nodes -newkey rsa:4096 -sha512 -keyout site.key -out site.csr
@wbtuomela
wbtuomela / go1.3.1-install-deb.sh
Last active August 29, 2015 14:05 — forked from demofly/go1.3-install-deb.sh
Debian Packages for golang-1.3.1
apt-get install devscripts build-essential
apt-get build-dep golang-go
wget http://ftp.us.debian.org/debian/pool/main/g/golang/golang_1.3.1-1.dsc
wget http://ftp.us.debian.org/debian/pool/main/g/golang/golang_1.3.1.orig.tar.gz
wget http://ftp.us.debian.org/debian/pool/main/g/golang/golang_1.3.1-1.debian.tar.xz
dpkg-source -x golang_1.3.1-1.dsc
cd golang-1.3.1/
debuild -us -uc