Skip to content

Instantly share code, notes, and snippets.

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active May 21, 2026 00:08
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

@emmaexe
emmaexe / converter.js
Created November 23, 2021 17:40
Converter for transforming every line of a TXT file into its seperate entry inside a JSON file
const config = {
"inputfile":"list.txt",
"outputfile":"list.json"
}
const fs = require('fs')
const readline = require('readline');
(async () => {
console.log('Started.')
const fileStream = fs.createReadStream(config.inputfile);
@aliostad
aliostad / stockfish-interface.txt
Created August 17, 2019 10:41
stockfish - Description of the universal chess interface (UCI)
COPIED FROM https://build.opensuse.org/package/view_file/games/stockfish/stockfish-interface.txt?expand=1
Description of the universal chess interface (UCI) April 2006
=================================================================
* The specification is independent of the operating system. For Windows,
the engine is a normal exe file, either a console or "real" windows application.
* all communication is done via standard input and output with text commands,