Skip to content

Instantly share code, notes, and snippets.

View dustywusty's full-sized avatar
✌️
A meat popsicle

Dusty dustywusty

✌️
A meat popsicle
View GitHub Profile
(() => {
let count = 0;
function getAllButtons() {
return document.querySelectorAll('button.is-following') || [];
}
async function unfollowAll() {
const buttons = getAllButtons();
#!/usr/bin/env ruby
#
# Locates and removes Homebrew installation
# http://brew.sh/
#
# Author: Stephen Benner
# https://github.com/SteveBenner
#
require 'optparse'
require 'fileutils'