Skip to content

Instantly share code, notes, and snippets.

View catbadger's full-sized avatar
💭
Ugh

J Richet catbadger

💭
Ugh
  • n/a
  • Penticton, BC, Canada
View GitHub Profile
@catbadger
catbadger / single-file-image-gallery
Last active January 11, 2017 00:38
A simple gallery for looking at directories full of screenshots
@catbadger
catbadger / diff-gallery.php
Created January 20, 2017 20:34
A gallery for image diffs that are lumped into 3 seperate directories. Used for selenium screenshot comparisions at TimeTrex.
@catbadger
catbadger / hide-rows-td-bank.jq.js
Created April 9, 2021 21:00
TD internet banking row hiding from chrome js console using baked in jquery
//I paste this into the console when I need to make a report showing someone forgot to pay stuff
$('.td-callout-content table td[id^=name]').each(function(index, td){
if ( $(td).html() != "Person's Name Text"){
$(td).parent().hide();
}
});