Skip to content

Instantly share code, notes, and snippets.

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active December 12, 2025 11:54
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:
@stugmi
stugmi / freevods.user.js
Created January 21, 2024 00:45
[ActionScript] Twitch sub only VOD bypass
// ==UserScript==
// @name NoSubVod
// @author smug
// @description free vods
// @version 1.0.0
// @match https://www.twitch.tv/*
// @include https://cdn.jsdelivr.net/gh/besuper/*/src/amazon-ivs-worker.min.js
// @grant GM.webRequest
// @run-at document-start
// ==/UserScript==
@alejandrade
alejandrade / tiktok-delete-all-videos.js
Last active October 19, 2025 12:19
Automate TikTok Video Deletion Script
/*
A script to delete all videos from a Tittok account
Learn how to delete all TikTok videos programmatically with this JavaScript script.
This script triggers hover events, clicks "Delete" buttons, and automates the video deletion process.
1. go to your latest video and paste this entire script in the terminal.
2. wait until all videos are deleted one by one
@marcpinet
marcpinet / README.md
Last active September 3, 2025 07:18
Activate Sublime Text 4 Build 4143 and below for ever (also maybe above, but not yet tried)

Activate Sublime Text (for ever)

  1. Go to https://hexed.it/
  2. Click Open File in the top left corner and select sublime_text.exe
  3. Press CTRL + F or on the Search for bar in the left panel and look for: 80 78 05 00 0f 94 C1
  4. Now in the editor, click on the first byte (80) and start replacing each byte by: C6 40 05 01 48 85 C9
  5. Finally, in the top left corner again, click on Save as and replace the old executable file with the newly created one.

Enjoy an Unlimited User License!

@Ellivers
Ellivers / anime-tracker.user.js
Last active October 27, 2025 02:17
AnimePahe Improvements
// ==UserScript==
// @name AnimePahe Improvements
// @namespace https://gist.github.com/Ellivers/f7716b6b6895802058c367963f3a2c51
// @downloadURL https://gist.github.com/Ellivers/f7716b6b6895802058c367963f3a2c51/raw/anime-tracker.user.js
// @updateURL https://gist.github.com/Ellivers/f7716b6b6895802058c367963f3a2c51/raw/anime-tracker.user.js
// @match https://animepahe.si/*
// @match https://animepahe.com/*
// @match https://animepahe.org/*
// @match https://kwik.si/e/*
// @match https://kwik.si/f/*
@aymericbeaumet
aymericbeaumet / delete-likes-from-twitter.md
Last active December 6, 2025 15:47
[Recipe] Delete all your likes/favorites from Twitter

Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.

  1. Go to: https://twitter.com/{username}/likes
  2. Open the console and run the following JavaScript code:
setInterval(() => {
  for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
    d.click()
 }