Skip to content

Instantly share code, notes, and snippets.

@Bluscream
Bluscream / myTeamspeak.py
Created November 1, 2024 04:39
pyrobud custom_modules
from pyrobud import command, module
import re, json, http.client
class myTeamspeak(module.Module):
name = "myTeamspeak"
disabled = False
myts_login = {
'email': '',
'password': '',
}
@Bluscream
Bluscream / OpenRGB.json
Last active September 12, 2024 03:08
openrgb client server crash
{
"AutoStart": {
"client": "localhost:6742",
"custom": "",
"enabled": false,
"host": "0.0.0.0",
"port": "6742",
"profile": "backlight",
"setclient": true,
"setcustom": false,
@Bluscream
Bluscream / TranscriptResponse.schema.json
Last active November 9, 2024 23:51
Youtube Subtitles fetcher
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$ref": "#/definitions/TranscriptResponse",
"definitions": {
"TranscriptResponse": {
"type": "object",
"additionalProperties": false,
"properties": {
"responseContext": {
"$ref": "#/definitions/ResponseContext"
@Bluscream
Bluscream / youtube-data-v3.swagger.yaml
Created August 28, 2024 22:36
Youtube Data v3 API OpenAPI spec
openapi: 3.0.0
info:
title: YouTube Data API v3
version: "3.0.0"
description: API for interacting with YouTube data
contact:
name: Google Developers
url: https://developers.google.com/
license:
name: Apache License 2.0
@Bluscream
Bluscream / OverWolf.Client.BL.dll.MD
Last active July 15, 2024 13:19
Overwolf Launch Options (Command Line Arguments)

OverWolf.Client.BL.dll

Parameter Description Version Ref
-ingame 0.254.0.13
-overwolfsilent Do not open store when launching (Used by autostart entry) 0.254.0.13
-silent 0.254.0.13
@Bluscream
Bluscream / edge_extension_download_link_generator.user.js
Last active July 12, 2024 19:10
Edge Extension Download Link Generator
@Bluscream
Bluscream / README.md
Last active July 5, 2024 18:28
Overwolf WebApp Generator

Overwolf WebApp Generator

Generates simple Overwolf WebApps for displaying websites as Overlays

To use it, simply drop the php file somewhere on a webserver using PHP >8, download the accompanying template and extract it into a template/ subfolder next to the php file

@Bluscream
Bluscream / guessthe.game.js
Created June 23, 2024 19:19
Unlock all for guessthe.game
// Unlock all for https://guessthe.game/previous-games#
localStorage.clear();
const guesses = 7;
const days = 800;
localStorage.setItem("gamesPlayedCount", days);
for (let i = 0; i < days; i++) {
localStorage.setItem(`${i}_gamestate`, "win");
for (let ii = 0; ii < guesses; ii++) {
// localStorage.setItem(`${i}_guess${ii}f`, "false");
localStorage.setItem(`${i}_guess${ii}`, "Skipped!");
@Bluscream
Bluscream / quick.user.css
Created March 28, 2024 11:08
Vencord QuickCSS
button[aria-label="Send a gift"], /* textbox gift button */
[class^=nitroBadgeSvg__], /* nitro user badge */
.textBadge_f05120, /* aRPC bar */
div[class="notice__5fd4c colorDefault__438d3"],
.vc-rdb-review:has(span.botText_daff56) {
display: none;
}
img[src="/assets/5cdb518bb425d85a0f51.svg"] { /* red x emoji */
content: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNiAzNiI+PHBhdGggZmlsbD0iI0REMkU0NCIgZD0iTTM2IDMyYzAgMi4yMDktMS43OTEgNC00IDRINGMtMi4yMDkgMC00LTEuNzkxLTQtNFY0YzAtMi4yMDkgMS43OTEtNCA0LTRoMjhjMi4yMDkgMCA0IDEuNzkxIDQgNHYyOHoiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMjEuNTI5IDE4LjAwNmw4LjIzOC04LjIzOGMuOTc3LS45NzYuOTc3LTIuNTU5IDAtMy41MzUtLjk3Ny0uOTc3LTIuNTU5LS45NzctMy41MzUgMGwtOC4yMzggOC4yMzgtOC4yMzgtOC4yMzhjLS45NzYtLjk3Ny0yLjU2LS45NzctMy41MzUgMC0uOTc3Ljk3Ni0uOTc3IDIuNTU5IDAgMy41MzVsOC4yMzggOC4yMzgtOC4yNTggOC4yNThjLS45NzcuOTc3LS45NzcgMi41NTkgMCAzLjUzNS40ODguNDg4IDEuMTI4LjczMiAxLjc2OC43MzJzMS4yOC0uMjQ0IDEuNzY4LS43MzJsOC4yNTgtOC4yNTkgOC4yMzggOC4yMzhj
@Bluscream
Bluscream / discord_auth_purger.user.js
Last active March 28, 2024 06:22
Discord Bot Permission Purger Userscript
// ==UserScript==
// @name Discord Auth Scope and Permission Purger
// @namespace http://github.com/Bluscream
// @version 1.0
// @description Combines functionality to purge bot permissions and purge "guilds.join" user auth scope
// @author Bluscream, phind.com
// @match *://discord.com/oauth2/authorize?*permissions=*
// @match *://discord.com/oauth2/authorize?*scope=*
// @grant GM_getValue
// @downloadURL https://update.greasyfork.org/scripts/491068/Discord%20Auth%20Scope%20and%20Permission%20Purger.user.js