Skip to content

Instantly share code, notes, and snippets.

View theetherGit's full-sized avatar
🎯
Focusing

Shivam Meena theetherGit

🎯
Focusing
View GitHub Profile
@theetherGit
theetherGit / discord-custom-theme.js
Created September 12, 2025 13:31
Tampermonkey script to add custom theme in discord ui
// ==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
@theetherGit
theetherGit / code.py
Created November 14, 2022 07:15
Newly Added things
# 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
@theetherGit
theetherGit / backToTop.svelte
Created July 10, 2022 18:05
Back to top component with Svelte and Tailwind
<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.-->