Skip to content

Instantly share code, notes, and snippets.

View nexpid's full-sized avatar
🖥️
vibing

nexpid nexpid

🖥️
vibing
View GitHub Profile
@dolfies
dolfies / discord-custom-settings.md
Last active March 22, 2026 23:26
Discord Custom Settings RFC

Discord Custom Settings RFC

This document outlines a way for third-party Discord clients, plugins, or other modifications to persist custom settings, data, and user preferences to a given Discord account. Settings are to be persisted in a way where they do not interfere with the normal operation of the Discord client or with other third-party modifications. Settings will also support real-time updates through Discord's existing Real Time Gateway.

Design

This goal is accomplished through Discord's existing user settings API. The current implementation uses protobufs, with three distinct settings types:

export enum UserSettingsTypes {
@nexpid
nexpid / README.md
Last active December 31, 2025 13:21
Fatass Horse
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active May 4, 2026 05:09
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

@amsryq
amsryq / plumper.js
Created May 26, 2023 15:56
Flattening the directory hierarchy for Plumpy
// Create a new directory called "Plumper" and dump all the files from "Plumpy" flat-ly into it
// Example: Plumpy/images/native/1.png -> Plumper/images_native_1.png
// Probably does not convert *all* but it does the most
// Packs from:
// https://github.com/acquitelol/rosiecord/tree/master/Packs/Plumpy
const fs = require("fs");
const path = require("path");
@akirattii
akirattii / QRCodeScanner.js
Last active July 20, 2024 19:04
NodeJS: QRCode scanning library. Either file and webcam source scanning are available. (browser compatible)
/**
QRCode Scanner library
https://gist.github.com/akirattii/35b033000cd4479c337ae5abb09d7429
@author: akirattii <tanaka.akira.2006@gmail.com> (http://mint.pepper.jp)
@dependencies:
+ jquery
+ jsQR (https://github.com/cozmo/jsQR/)
@tuxfight3r
tuxfight3r / 01.bash_shortcuts_v2.md
Last active May 1, 2026 18:22
Bash keyboard shortcuts

Bash Shortcuts

visual cheetsheet

Moving

command description
ctrl + a Goto BEGINNING of command line
@lancejpollard
lancejpollard / meta-tags.md
Created March 5, 2012 13:54
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">