Skip to content

Instantly share code, notes, and snippets.

View jrumbut's full-sized avatar

Joshua Rumbut jrumbut

  • UMass Chan Medical School
  • Worcester, MA
View GitHub Profile
@jrumbut
jrumbut / git-commit-word-frequency.sh
Last active March 17, 2020 03:19
Find the most frequently used words in your team's commit messages! Woo!
git log --stat | grep "^ " | tr -d '[:punct:]' | tr ' ' '\n' | tr 'A-Z' 'a-z' | sort | uniq -c | sort -rn
@jrumbut
jrumbut / es.sh
Last active December 16, 2015 12:09
Updated version
cd ~
sudo apt-get update
sudo apt-get install openjdk-7-jre-headless -y
### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch and replace wget link below
# The easy way to install, from their prebuilt package
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.2.deb
sudo dpkg -i elasticsearch-0.90.2.deb