Skip to content

Instantly share code, notes, and snippets.

View Qreepex's full-sized avatar

Ben Qreepex

View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active June 19, 2026 00:23
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

@Barraka
Barraka / solution.js
Created December 7, 2022 16:09
Working solution to Advent Of Code day 7
const temp1 = text.split(/\r?\n/); //I copy-paste my puzzle into the 'text' variable instead of opening it as a file, but works the same
let sum=0; //Variable to store the first answer
let directory= {'/':{size:0}}; //Where I store all directories
let cwd=['/']; //Current working directory
temp1.forEach( x=> {
x=x.split(' '); //I seperate each line into a list, eg: ['$', 'cd', 'sdfdsf']
//Commands
if(x[0]==='$') {
if(x[1]==='cd') {
//Go back one level
@Awoocado
Awoocado / Routes.md
Last active May 6, 2025 02:00
Discord protocol routes

Home

User profile: discord://-/users/:userID example: discord://-/users/224619540263337984

Friends list: discord://-/channels/@me

Stage Discovery: discord://-/discovery/

Games Library: discord://-/library/

Store: ( redirects to nitro tab )

/**
@func
log how long it takes to run a block of code
- for a supplied number of times
@warning
the supplied func runs in a loop
- so first make sure there are no log statements in the func
- either comment them out, or replace them with lMock...
- const l = s => undefined; //lMock
@matthewzring
matthewzring / markdown-text-101.md
Last active June 13, 2026 23:12
A guide to Markdown on Discord.

Markdown Text 101

Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...

What this guide covers: