Skip to content

Instantly share code, notes, and snippets.

View markreid's full-sized avatar

Mark markreid

  • Culture Amp
  • Australia
View GitHub Profile
@markreid
markreid / agileassigneefilter.js
Last active August 29, 2015 14:09
quick-filter JIRA Agile view by assignee name
// quick filter jira agile view by assignee
(function(){
var constants = {
ISSUE_CLASS: '.ghx-issue'
};
var issuesLookup;
@markreid
markreid / jestnew.sh
Created November 5, 2014 02:23
pipe changed/untracked tests into jest
#!/bin/bash
git status -s | grep __tests__ | cut -c4- | xargs jest
@markreid
markreid / diffcollapse.js
Created October 6, 2014 01:36
github diffs - add a 'hide' button to each file
$('#files .meta .actions').append('<button class="btn-hide minibutton tooltipped tooltipped-n" aria-label="Hide this file">Hide</button>');
$('#files .meta .actions .btn-hide').on('click', function(){
$(this).toggleClass('selected').closest('div.file').find('.data').toggleClass('hidden');
});
@markreid
markreid / keybase.md
Created August 11, 2014 07:58
keybase verification

Keybase proof

I hereby claim:

  • I am markreid on github.
  • I am markreid (https://keybase.io/markreid) on keybase.
  • I have a public key whose fingerprint is 3794 7F20 3B8B 926C 1880 14FD 5ACE E933 3D30 988D

To claim this, I am signing this object:

@markreid
markreid / gist:c324c5d62bab0b311c96
Created May 26, 2014 01:35
filter broken extension warnings out of chrome console
// put this as the filter and enable 'regex'
^((?!extensions::).)*$