Skip to content

Instantly share code, notes, and snippets.

{
"meta": {
"theme": "professional"
},
"basics": {
"name": "Ben Livingood",
"label": "Developer Infrastructure Engineer/ Site Reliability Engineer / Software Engineer",
"email": "livingood@gmail.com",
"phone": "(406) 285-1066",
"summary": "I am a results-focused Software Engineer. I enjoy increasing stability of server code while working at a high speed. I have engineered and maintained scalable infrastructure reliably handling high traffic while still maintaining compliant code, and keeping it up to date with current trends and protocols.",
[alias]
whois = "!sh -c 'git log -i -1 --pretty=\"format:%an <%ae>\n\" --author=\"$1\"' -"
whatis = show -s --pretty='tformat:%h (%s, %ad)' --date=short
who = shortlog -s --
touched = "!sh -c 'git log -i --pretty=\"format:%h - %ad - %an <%ae>\n\" --author=\"$1\" --name-only' -"
author = "!sh -c 'echo \"$1\" ; git blame -p \"$1\" | grep \"^author \" | sed \"s/author //g;\" | sort -u' -"
attrib = "!sh -c 'git ls-tree -r --name-only --full-tree HEAD | grep \"$1\" | xargs -I % git author %' - "
@nogoth
nogoth / gist:217011
Created October 23, 2009 16:21 — forked from pol/gist:169250
# Dev/Apps Capistrano Deployment Script
# Copyright (c) 2009 Montana State University
#
# Version: 0.3
#
# FILE: deploy.mysql.rb
# This deployment file will allow a user to deploy their application
# code to dev.msu.montana.edu
#
# PREREQUISITES
#!/bin/bash
nmap -R -sP 153.90.178.0/24 | awk '{if($4=="down.")print"("$2") available";else print$3" is "$2}' | grep '(' | less
@nogoth
nogoth / gist:173349
Created August 23, 2009 17:07 — forked from pol/gist:170636
" hashrocket.vim
" vim:set ft=vim et tw=78 sw=2:
if $HASHROCKET_DIR == '' && expand('<sfile>') =~# '/ops/hashrocket\.vim$'
let $HASHROCKET_DIR = expand('<sfile>')[0 : -20]
endif
if $HASHROCKET_DIR == '' && filereadable(expand('~/.bashrc'))
let $HASHROCKET_DIR = expand(matchstr("\n".join(readfile(expand('~/.bashrc')),"\n")."\n",'\n\%(export\)\=\s*HASHROCKET_DIR="\=\zs.\{-\}\ze"\=\n'))
endif
if $HASHROCKET_DIR == ''