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 May 13, 2026 00:03
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you most likely WILL get flagged by doing so.

Complete Recent Discord Quest

@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)