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[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 |
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 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 |
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
blueprint: | |
name: Toggle Targets | |
description: A script that toggles selected targets with a delay. | |
domain: script | |
input: | |
targets: | |
name: Targets | |
description: The devices to toggle. | |
selector: | |
entity: {} |
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
import csv | |
from random import choice, randint, sample | |
from typing import Any | |
from sqlite3 import connect | |
funny_names = ["Bluscream","Your mom","Joe Mama", "Stinky Frank"] | |
db_file = "C:/Users/blusc/Desktop/croc/CrocLOTG/croc.db" | |
input_csv = "translate/input.csv" | |
output_csv = "translate/out/replaced.csv" |
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
import csv | |
import os | |
import deep_translator | |
from deep_translator.exceptions import RequestError, LanguageNotSupportedException | |
from deep_translator import ( | |
GoogleTranslator, | |
PonsTranslator, | |
LingueeTranslator, | |
MyMemoryTranslator | |
) |
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
#!/bin/bash | |
# https://raw.githubusercontent.com/tvdsluijs/sh-python-installer/main/python.sh | |
# Function to kill all Python processes | |
kill_python() { | |
sudo pkill -f python | |
} | |
# Function to remove all old Python versions |
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
{ | |
"backup_time": "2023-11-07T13:12:01.332666+00:00", | |
"network_info": { | |
"extended_pan_id": "c2:a5:85:19:47:5c:f8:28", | |
"pan_id": "C4F7", | |
"nwk_update_id": 0, | |
"nwk_manager_id": "0000", | |
"channel": 15, | |
"channel_mask": [ | |
11, |
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
#!/bin/bash | |
# Create the openssl.cnf file | |
cat > openssl.cnf << EOF | |
[req] | |
distinguished_name = req_distinguished_name | |
req_extensions = v3_req | |
[req_distinguished_name] | |
commonName = Common Name (e.g. server FQDN or YOUR name) |
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
<?php | |
// Step 1: Fetch the JSON data | |
$jsonData = file_get_contents('https://raw.githubusercontent.com/Bluscream/battlebitapirunner-modules/master/data/gamemodes.json'); | |
// Step 2: Parse the JSON data into a PHP array | |
$data = json_decode($jsonData, true); | |
// Step 3: Generate the HTML code for the Bootstrap table | |
$html = '<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">'; |