Skip to content

Instantly share code, notes, and snippets.

View lukemayes's full-sized avatar

Luke Mayes lukemayes

  • Expedia
  • Springfield, MO
View GitHub Profile
@lukemayes
lukemayes / .vimrc
Created October 28, 2014 14:34
~/.vimrc
" call pathogen#infect()
" call pathogen#helptags()
let mapleader = ","
nnoremap <leader><space> :noh<cr>
au FocusLost * :wa " save file when focus is lost
" set shell=/usr/local/bin/fish
set nocompatible
set modelines=0

Keybase proof

I hereby claim:

  • I am lukemayes on github.
  • I am lukemayes (https://keybase.io/lukemayes) on keybase.
  • I have a public key whose fingerprint is C418 4E99 659A 3B3A 75AC FE4F DCBD 53DC 316C ED50

To claim this, I am signing this object:

@lukemayes
lukemayes / finish_already.html
Last active December 23, 2015 08:29
Highlight any participants that have not yet estimated on planningpoker.com.
<!DOCTYPE html>
<html>
<!--
(function() {
var _ = function(selector) {
return [].splice.call(document.querySelectorAll(selector), 0);
};
var participants = _('#participants > li');
var doneParticipants = _('.open .estimate .label').map(function(it) { return it.innerHTML.replace(/\s/g, ''); });
var isFinished = function(name) {