Skip to content

Instantly share code, notes, and snippets.

View MagicalBlob's full-sized avatar
🌍
just vibing in the aether

magical blob MagicalBlob

🌍
just vibing in the aether
View GitHub Profile
@MagicalBlob
MagicalBlob / userChrome.css
Last active May 12, 2024 00:49
My Firefox userChrome.css & userContent.css
/* Move Find Bar position. Based on: https://pastebin.com/sucmEx7N */
.browserContainer > findbar {
/* Position the Find Bar above the page */
order: -1 !important;
/* Move Find Bar border from top to bottom */
border-top: none !important;
border-bottom: 1px solid hsl(240, 5%, 5%) !important;
}
@MagicalBlob
MagicalBlob / NationStates mass endorsing.user.js
Created January 31, 2022 20:57
Script to send NationStates.net's World Assembly endorsement requests because I'm lazy yet keep "playing" this browser game for some unknown reason
// ==UserScript==
// @name NationStates mass endorsing
// @namespace Violentmonkey Scripts
// @match https://www.nationstates.net/nation=*
// @grant none
// @version 1.0
// @author -
// @description 1/31/2022, 8:18:36 PM
// ==/UserScript==
@MagicalBlob
MagicalBlob / ByeByeReddit.py
Last active December 26, 2022 01:27
ByeByeReddit.py - A quick script to delete Reddit comments/submissions given a list of IDs
import praw
# Create a Reddit instance
reddit = praw.Reddit(
user_agent="ByeByeReddit.py/1.0.0 by MagicalBlob",
client_id="CLIENT_ID",
client_secret="CLIENT_SECRET",
username="USERNAME",
password="PASSWORD",
)