Skip to content

Instantly share code, notes, and snippets.

View TheOnlyOnlyName's full-sized avatar
:atom:
Why hello there! :)

TheOnlyOnlyName

:atom:
Why hello there! :)
View GitHub Profile
@aamiaa
aamiaa / RevertNewLayout.md
Last active June 27, 2024 20:26
Revert New Discord Layout

The original snippet no longer works!

On 02/09/2024 at around 8pm UTC, Discord flipped an experiment (2023-09_mobile_redesign_override_toggles) which ignores the layout toggle that this script relied on.

If you want to continue using the old layout, you can either use a modded mobile client (such as Vendetta) to disable that experiment, or downgrade to an old version of the app.

Method 1 - Downgrading (Android)

Tip

Use this one if you want a fast, beginner-friendly solution and don't mind using a version from November 2023

  1. Download version 205.15 of Discord mobile app from ApkMirror
@thekwitt
thekwitt / HallowsTreat Terms Of Service
Last active October 18, 2023 19:28
HallowsTreat Terms Of Service
1. Usage Agreement
By adding HallowsTreat to your server, you are consenting to the policies outlined in this privacy policy.
In addition, you are also agreeing to let any server members know about the policies outlind in this terms of service.
Any policy regarding collected data is listed in the privacy policy of this bot.
The intended usage of this data is for core functionalities of the bot and will not be shared with anyone else.
2. Changes to the Terms
You acknowledge that the bot may have occasional changes to the Terms mentioned to what We see best fits.
@Malix-off
Malix-off / .gitignore
Last active February 14, 2024 17:08
Discord Desktop (Windows) Amoled Switching Tool
# GitHub Gists
*/
# Environment
*env*
@advaith1
advaith1 / nitro.md
Created May 4, 2023 01:06
Discord Nitro Subscription Links
@NurMarvin
NurMarvin / en-PT.json
Created November 14, 2022 19:07
Discord's Messages for Pirate English
{
"NOTIFICATION_TITLE_START_GAME": "Matey Plunderin'",
"NOTIFICATION_BODY_START_GAME": "!!{username}!! be plunderin' !!{gameName}!!!",
"NOTIFICATION_MESSAGE_CREATE_GUILD_ACTIVITY_JOIN": "!!{user}!! invited th' cabin t' plunder !!{game}!!",
"NOTIFICATION_MESSAGE_CREATE_GROUP_DM_ACTIVITY_JOIN": "!!{user}!! invited th' crew t' plunder !!{game}!!",
"NOTIFICATION_MESSAGE_CREATE_DM_ACTIVITY_JOIN": "!!{user}!! invited ye t' plunder !!{game}!!",
"NOTIFICATION_MESSAGE_CREATE_GUILD_ACTIVITY_LISTEN": "!!{user}!! invited th' cabin t' toon in on Spotify",
"NOTIFICATION_MESSAGE_CREATE_GROUP_DM_ACTIVITY_LISTEN": "{user} invited th' deck to list'n on Spotify",
"NOTIFICATION_MESSAGE_CREATE_DM_ACTIVITY_LISTEN": "{user} invited ye to list'n on Spotify",
"ERRORS_ACTION_TO_TAKE": "We've tracked th' error n' will get right on it.",
@rebane2001
rebane2001 / discord-pin-compressor.html
Last active May 2, 2024 23:01
This is a simple app that converts Discord pins to Discord messages, which is useful for example when you've reached the pin limit and wish to have more room for new pins.
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<title>Rebane's Discord Pin Compressor</title>
<meta charset="UTF-8">
<meta name="description" content="Rebane's Discord Pin Compressor">
<meta name="author" content="rebane2001">
<style>
/*
@DorianAarno
DorianAarno / How to grow your discord bot.md
Last active January 23, 2024 03:38
A guide on Bot Development and growth.

Hey there. During the time of bot development, I've learnt a lot, there are several things which I wish I could change and several things which I'm glad I did. I wish to share my experience which may help some beginners or even some experts.

Transfer your bot to team.

Before you reach verification, you must transfer your bot to a team and include a secured alt in the team. Many developers regret not doing it before their application reaches verification. This essentially provides a ray of hope of not losing your bot if you ever lose your main account.

Raise an epic centre of your project.

An epic centre is the core of your bot, your bot could be known for it. Take Dyno for example, we all know it for it's moderation capabilities. In a similar way, your bot must be known for something. You need to avoid being a sheep in the flock.

Effective Advertisement.

In my opinion advertising can prove out to be effective when you build something unique and let them know your goal behind it along

@kkrypt0nn
kkrypt0nn / ansi-colors-discord.md
Last active June 27, 2024 10:49
A guide to ANSI on Discord

A guide to ANSI on Discord

Discord is now slowly rolling out the ability to send colored messages within code blocks. It uses the ANSI color codes, so if you've tried to print colored text in your terminal or console with Python or other languages then it will be easy for you.

Quick Explanation

To be able to send a colored text, you need to use the ansi language for your code block and provide a prefix of this format before writing your text:

\u001b[{format};{color}m

\u001b is the unicode escape for ESCAPE/ESC, meant to be used in the source of your bot (see ). If you wish to send colored text without using your bot you need to copy the character from the website.

@GeneralSadaf
GeneralSadaf / List of Discord voice activities.md
Last active June 20, 2024 15:45
IDs of Discord voice activities.

Activities no longer require boosts to unlock. Activities except Watch Together are locked behind Nitro. Kept boost levels for prosperity.

Stable versions

Application ID Application name Boost level Max participants
755600276941176913 YouTube Together(Old) 0 Unlimited
880218394199220334 Watch Together(New) 0 Unlimited
755827207812677713 Poker Night 1 25
773336526917861400 Betrayal.io 0 Unlimited
814288819477020702 Fishington.io 0 Unlimited
832012774040141894 Chess In The Park 1 Unlimited
@jscher2000
jscher2000 / syncedTabsToBookmarksHTML.js
Last active April 9, 2024 07:10
Export Synced Tabs List to "bookmarks.html" file (Browser Console script)
// Run code in Browser Console after enabling chrome debugging --
// about:config => devtools.chrome.enabled => true
// https://developer.mozilla.org/docs/Tools/Browser_Console
try {
var tabPromise = SyncedTabs._internal.getTabClients();
tabPromise.then((arrDevices) => {
if (arrDevices && arrDevices.length > 0){
// Generate a string with the format of a bookmark export file
var d, e, out = '<!DOCTYPE NETSCAPE-Bookmark-file-1>\n<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">\n<TITLE>Bookmarks</TITLE>\n<H1>Bookmarks Menu</H1>\n<DL><p>\n';
const escapeHtmlEntities = function(aText){return (aText || '').replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;').replace(/'/g, '&#39;')};