Skip to content

Instantly share code, notes, and snippets.

View DroidZed's full-sized avatar
:shipit:
Minting The Next Big Thing

DroidZed DroidZed

:shipit:
Minting The Next Big Thing
View GitHub Profile
@DroidZed
DroidZed / CompleteDiscordQuest.md
Created October 5, 2025 13:05 — forked from aamiaa/CompleteDiscordQuest.md
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:
@DroidZed
DroidZed / typescript_react.json
Created December 14, 2023 20:06
Custom snippets [TYPESCRIPT]
{
"Const function" : {
"prefix": "cfnc",
"body": [
"const ${TM_FILENAME_BASE} = ($1) => {",
"\t\t$2",
"};",
"export default ${TM_FILENAME_BASE};"
],
@DroidZed
DroidZed / py_gists.json
Created December 14, 2023 20:05
My custom gists [PYTHON]
{
"dunder main": {
"prefix": "dnd",
"body": [
"def main():",
"\tprint('Hello World')",
"",
"if __name__ == '__main__':",
"\tmain()",
""