This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Discord Custom Theme Injector | |
// @namespace http://tampermonkey.net/ | |
// @version 1.4 | |
// @description Injects a custom CSS theme into Discord after a 5-second delay and re-injects on page changes. | |
// @author theetherGit | |
// @match http://discord.com/* | |
// @match https://discord.com/* | |
// @run-at document-idle | |
// @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Importing Libraries | |
import typing | |
import pandas as pd | |
import seaborn as sns | |
import matplotlib.pyplot as plt | |
import numpy as np | |
from matplotlib.colors import LinearSegmentedColormap | |
from texttable import Texttable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button type="button" data-mdb-ripple="true" data-mdb-ripple-color="light" class="fixed group transition duration-75 ease-in-out inline-block p-3 text-xs font-medium leading-tight text-white uppercase transition duration-150 ease-in-out bg-blue-600 rounded-full shadow-md hover:bg-blue-700 hover:shadow-lg focus:bg-blue-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-blue-800 active:shadow-lg bottom-5 right-5 {below | |
? '' | |
: 'hidden'}" id="btn-back-to-top" on:click={scrollUp}> | |
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 group-hover:animate-bounce" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M3.293 9.707a1 1 0 010-1.414l6-6a1 1 0 011.414 0l6 6a1 1 0 01-1.414 1.414L11 5.414V17a1 1 0 11-2 0V5.414L4.707 9.707a1 1 0 01-1.414 0z" clip-rule="evenodd" /> | |
</svg> | |
</button> | |
<svelte:window bind:innerWidth bind:scrollY={y} /> <!-- Svelte feature for window read docs.--> | |