Skip to content

Instantly share code, notes, and snippets.

Installing Java

  1. Java is required to run Minecraft. To install Java, head to Adoptium.
    • For Minecraft 1.17 and above, download Java 17 ("Latest LTS Release" button).
    • For Minecraft 1.16 and below, download Java 8 (under "Other platforms and versions").
  2. Run the installer you just downloaded.

Installing Prism Launcher

  1. Download the correct version of Prism Launcher from the downloads page.
  2. Run the installer (or the .exe, if you downloaded the Portable version).
    • If you're on Windows, you may see a "Microsoft Defender SmartScreen" popup.
@SuperStormer
SuperStormer / reddit_dark_mode.user.js
Last active August 30, 2022 10:41
Reddit Auto Dark Mode
// ==UserScript==
// @name Reddit Auto Dark Mode
// @namespace http://tampermonkey.net/
// @version 0.1
// @description automatically switch Reddit to dark or light mode depending on system theme
// @author SuperStormer
// @match https://www.reddit.com/*
// @grant none
// ==/UserScript==
@SuperStormer
SuperStormer / old_font.css
Last active March 1, 2022 05:06
SO old font userstyle
body {
--ff-sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
--ff-mono: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, sans-serif;
}
.full-diff .content {
font-family: var(--ff-mono);
}
@SuperStormer
SuperStormer / bird_list.txt
Last active September 4, 2019 18:28
Fetches Image/Song URLs from macaulay library
Black-bellied Whistling-Duck
Snow Goose
Canada Goose
Trumpeter Swan
Wood Duck
Mallard
Northern Shoveler
Green-winged Teal
Canvasback
Hooded Merganser
@SuperStormer
SuperStormer / dominiongen.py
Created November 23, 2018 01:15
Generates a random dominion kingdom
import random
import itertools
def main(sets=None,banned_cards=["Treasure Map","Thief","Chancellor","Adventurer","Feast"],vetoes=0):
all_cards={
"base":["Chapel", "Moat","Village", "Workshop", "Bureaucrat", "Gardens", "Militia", "Moneylender", "Remodel", "Smithy", "Throne Room", "Council Room", "Festival", "Laboratory", "Library", "Market", "Mine", "Witch", "Chancellor", "Woodcutter", "Feast", "Spy", "Thief", "Adventurer"],
"seaside":["Embargo", "Haven", "Lighthouse", "Native Village", "Pearl Diver", "Ambassador", "Fishing Village", "Lookout", "Smugglers", "Warehouse","Caravan", "Cutpurse", "Island", "Navigator", "Pirate Ship", "Salvager", "Sea Hag", "Treasure Map", "Bazaar", "Explorer", "Ghost Ship", "Merchant Ship", "Outpost", "Tactician", "Treasury", "Wharf", "Cellar"]
}
if sets is None:
sets=all_cards.keys()