Skip to content

Instantly share code, notes, and snippets.

View noowz's full-sized avatar
🎯
Focusing

Noowz noowz

🎯
Focusing
View GitHub Profile
import hmac
import base64
import urllib.parse
import requests
import time
# Supercell ID "Request Forgery Protection" bypass by danyanull, 2025
# I know this code is holy crap but it's made as a PoC just for fun in about 2 hours
# Updates:
@JPBM135
JPBM135 / uploadFolderToApplicationEmojis.mjs
Last active May 15, 2025 07:01
Sync folder to discord application emojis
import { readdirSync, readFileSync, writeFileSync } from "fs";
import { setTimeout } from "timers/promises";
const APPLICATION_ID = "APPLICATION_ID";
const TOKEN =
"BOT_TOKEN";
const discordApiUrl = `https://discord.com/api/v10/applications/${APPLICATION_ID}/emojis`;
const headers = {
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active December 6, 2025 12:23
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:
@MarvNC
MarvNC / get-discord-token-from-browser.md
Last active November 29, 2025 18:28
How to Get Your Discord Token From the Browser Developer Console

How to Get Your Discord Token From the Browser Console

New method (contributed by youyoumu)

  • Open the browser console with F12 or Ctrl + Shift + I.
  • Enable mobile device emulation with Ctrl + Shift + M.
  • Paste the following code into the console and press Enter:
const iframe = document.createElement('iframe');
@JohannesMP
JohannesMP / EnableDiscordDevExperiments.md
Last active October 28, 2025 03:30 — forked from ExordiumX/betaenabler.js
Enabling Discord Dev Experiments on Discord for Windows (2022-02)

Enable Dev Experiments in Discord for Windows

image

This guide shows how to enable dev mode for the Discord desktop application running on Windows (as of February 2022).

This can be used to view beta experiments to try features currently in development that are included but hidden by default in Discord release builds.


@ghostrider-05
ghostrider-05 / discord_app_protocols.md
Last active December 4, 2025 22:51
An unofficial list of discord app protocol routes

Discord app protocol routes

Home:

  • /: discord://-/
  • friends: discord://-/channels/@me/
  • nitro: discord://-/store
  • shop: discord://-/shop
  • message requests: discord://-/message-requests
  • family centre: discord://-/family-center
@Kavan72
Kavan72 / endpoints.txt
Last active November 5, 2025 09:09
Valorant endpoints
[PlayerFeedback_CheckForSurvey] POST
[PlayerFeedback_SendAnswers] POST
[PatchNotes_GetPatchNotes] GET
[AggStats_Fetch] GET
[AccountXP_GetPlayer] GET https://pd.ap.a.pvp.net/account-xp/v1/players/{user_id}
[Config_FetchConfig] GET https://shared.ap.a.pvp.net/v1/config/ap
@DevBefell
DevBefell / play commands.txt
Last active August 29, 2025 17:50
hypixel /play commands
# /play sb
# /play warlords_ctf_mini
# /play warlords_domination
# /play warlords_team_deathmatch
# /play mw_standard
# /play mw_face_off
# /play blitz_solo_normal
# /play blitz_teams_normal
# /play ranked_normal
# /play solo_normal
@m-Phoenix852
m-Phoenix852 / discord-token-logger.js
Created August 26, 2020 07:45
Simple script to log in to discord account using token.
let token = "your token";
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}
@parmentf
parmentf / ConventionalCommitsEmoji.md
Last active November 4, 2025 22:20
Emoji for Conventional Commits
Type Emoji code
feat :sparkles:
fix 🐛 :bug:
docs 📚 :books:
style 💎 :gem:
refactor 🔨 :hammer:
perf 🚀 :rocket:
test 🚨 :rotating_light:
build 📦 :package: