Skip to content

Instantly share code, notes, and snippets.

View HBIDamian's full-sized avatar
🦍

HBIDamian HBIDamian

🦍
View GitHub Profile
@HBIDamian
HBIDamian / profanity_filter.wlist
Last active March 6, 2025 14:10
Minecraft Bedrock Edition's profanity_filter.wlist file. Why make the game stable, when you can just make it laggier! B64encode the list, then decode it each time someone types anything, @Mojang. What are you, ####### idiots or something?
1488
8=D
A55hole
abortion
ahole
AIDS
AIDs
ainujin
ainuzin
akimekura
import re
import requests
import logging
# Configuration
auth_email = "" # The email used to login 'https://dash.cloudflare.com'
auth_method = "global" # Set to "global" for Global API Key or "token" for Scoped API Token
auth_key = "" # Your API Token or Global API Key
zone_identifier = "" # Can be found in the "Overview" tab of your domain
record_name = "" # Which record you want to be synced
@HBIDamian
HBIDamian / batchBDSDownloader.py
Created January 28, 2025 14:33
Code is very much a crude brute batch BDS downloader based on https://github.com/Bedrock-OSS/BDS-Versions.
import os
import json
import requests
from time import sleep
from concurrent.futures import ThreadPoolExecutor, as_completed
# Constants
VERSIONS_URL = "https://raw.githubusercontent.com/Bedrock-OSS/BDS-Versions/main/versions.json"
VERSION_DETAILS_URL = "https://raw.githubusercontent.com/Bedrock-OSS/BDS-Versions/main/{platform}/{version}.json"
PREVIEW_BASE_URL = "https://raw.githubusercontent.com/Bedrock-OSS/BDS-Versions/main/{platform}_preview/{version}.json"
@HBIDamian
HBIDamian / SantaTracker.py
Created December 24, 2024 23:41
A CLI Santa Tracker, because why not 😂
import argparse
import sys
import curses
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
import time
import requests
import urllib.parse
@HBIDamian
HBIDamian / Tapo-p110-GUI.py
Created December 3, 2024 05:39
Just a lil gui I made so I can see the status of my heater... 😅
# Author: HBIDamian
# Date: 2024-12-03
# Version: 1.0
# License: DBAD Public License
# DON'T BE A DICK PUBLIC LICENSE
# > Version 1.1, December 2016
# > Copyright (C) 2024 HBIDamian
# Everyone is permitted to copy and distribute verbatim or modified
# copies of this license document.
@HBIDamian
HBIDamian / PMMPInstaller.iss
Last active December 1, 2024 21:21
PocketMine Installer
[Setup]
AppName=PocketMine-MP Win-x64 Installer
AppVersion=1.0.0.0
AppVerName=PocketMine-MP Win-x64 Installer v1.0.0
AppPublisher=PocketMine-MP
AppPublisherURL=pmmp.io
AppSupportURL=pmmp.io
AppID=PM-Win-x64-Installer
DefaultDirName={userdesktop}\PocketMine-MP
DefaultGroupName=PocketMine-MP
@HBIDamian
HBIDamian / RDPMB.ps1
Last active February 16, 2025 00:52
Run Down Builder for PocketMine-MP (PowerShell).
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser -Force
$host.ui.RawUI.WindowTitle = "Run Down PocketMine-MP Builder"
# Global Variables
$global:repoUrl = "https://github.com/pmmp/PocketMine-MP.git"
$global:branch = "stable" # You can change this to any branch or fork URL
$global:PHPVer = "8.3" # Ex: 8.2, 8.3, etc.
$global:PMMPVer = "PM5"
function PreScript {
@HBIDamian
HBIDamian / jellyfin-scyfin-oled-retrowave-theme.css
Last active May 24, 2025 02:02
Retrowave/Magenta theme (with oled) for the Scyfin Jellyfin theme
@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css');
@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');
@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-oled.css');
@import url("https://cdn.jsdelivr.net/gh/prayag17/Jellyfin-Icons/Font%20Awesome/regular.css");
@import url('https://raw.githubusercontent.com/LambadaCorez/custom_css_jellyfin/refs/heads/master/motherofallcss.css');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&display=swap');
:root {
--primary-accent-color: #ff37ee;
--secondary-accent-color: rgba(161, 12, 223, 0.25);
@HBIDamian
HBIDamian / macosVencordLazyInstaller.sh
Created May 10, 2024 19:56
Me being lazy, I wrote this so I dont have to download it every time.
#!/bin/zsh
function Error {
echo -e "\e[91m[ERROR]\e[0m $1"
}
# function Success msg
function Success {
echo -e "\e[92m[SUCCESS]\e[0m $1"
}
@HBIDamian
HBIDamian / shutdown modules.cmd
Created August 15, 2023 11:50
shutdown modules.cmd | Just a random tts shutdown script for when Im shutting my PC down from another room.
@ECHO OFF
SETLOCAL
SET voiceHandler="C:\Code\voice.exe" -v 100 -r 2 -n "Microsoft Eva Mobile"
:: Cheers https://github.com/watermarkhu/enable-microsoft-eva-tts/blob/master/Enable-mobile-voices.txt for bringing Eva back.
:: Friendly term
SET name0="sir."
SET name1="friend."
SET name2="buddy."
SET name3="Damian."