Skip to content

Instantly share code, notes, and snippets.

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active May 22, 2024 16:35
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This no longer works in browser!

Note

This no longer works if you're alone in vc! Somebody else has to join you!

How to use this script:

  1. Accept the quest under User Settings -> Gift Inventory
@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,