Skip to content

Instantly share code, notes, and snippets.

View creativegamer03's full-sized avatar
๐Ÿ“˜
college

CreativeGamer03 creativegamer03

๐Ÿ“˜
college
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active December 11, 2025 20:55
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@RhinosF1
RhinosF1 / wikidiscoverparser.py
Last active October 10, 2025 07:49
This script will create a list of apis for all public miraheze.org wikis.
import requests
S = requests.Session()
URL = "https://meta.miraheze.org/w/api.php"
PARAMS = {
"action": "wikidiscover",
"format": "json",
"wdstate": "public",
"wdsiteprop": "url"
}
R = S.get(url=URL, params=PARAMS)