Skip to content

Instantly share code, notes, and snippets.

View seth-macpherson's full-sized avatar

Seth MacPherson seth-macpherson

  • Appfolio
  • Hood River, OR
View GitHub Profile
@seth-macpherson
seth-macpherson / .gitconfig
Last active May 9, 2024 22:37
Just a happy little .gitconfig
[core]
# Use custom `.gitignore` and `.gitattributes`
attributesfile = ~/.gitattributes
editor = /opt/homebrew/bin/code -w
excludesfile = ~/.gitignore
ignorecase = false
noAheadBehind = true
pager = delta
preloadIndex = true
// Copy the contents of this file into the browser console from the Plex Web App
// This will remove all items from your watchlist
const links = document.querySelectorAll('a[aria-label][href][role="link"]');
let index = 0;
function hoverNextLink() {
if (index < links.length) {
const link = links[index];
const url = decodeURIComponent(link.getAttribute("href").split("&")[0]);