Skip to content

Instantly share code, notes, and snippets.

View Nessworthy's full-sized avatar
👋

Sean Lawrence Nessworthy

👋
View GitHub Profile
@Nessworthy
Nessworthy / eventnames.txt
Created January 17, 2020 12:58
AWS Event Names
AbortDocumentVersionUpload
AbortEnvironmentUpdate
AbortMultipartUpload
AbortVaultLock
AcceptAccountMapping
AcceptCertificateTransfer
AcceptDelegate
AcceptDirectConnectGatewayAssociationProposal
AcceptFxPaymentCurrencyTermsAndConditions
AcceptHandshake

Keybase proof

I hereby claim:

  • I am Nessworthy on github.
  • I am nessworthy (https://keybase.io/nessworthy) on keybase.
  • I have a public key whose fingerprint is 0565 0E82 7DCE 3A2A C4CA 3E6C 6C0F A150 8924 4A85

To claim this, I am signing this object:

@Nessworthy
Nessworthy / gist:3338b8fda083c6c0598c
Created October 27, 2014 12:49
PickerBot for game.ioxapp.com/color
/**
* Run this in your console, close your console and hit "Start". Refresh the page afterwards.
*/
setInterval(function() {
var colors = {};
$('#box').children().each(function() {
var t = $(this);
var x = t.css('background-color');
@Nessworthy
Nessworthy / gist:6f4dbc1a4303189acf2f
Created October 27, 2014 11:49
Check all WordPress Media Items not attached to a post/page.
/**
* Must be viewing the media library of a WP install.
* Media library must be in list view.
* Will highlight checked items in yellow. PLEASE CHECK TO MAKE SURE THAT THOSE ARE THE ONES YOU WANT.
*/
var $ = jQuery;
$('#the-list')
.children('tr')
.filter(function(){