Skip to content

Instantly share code, notes, and snippets.

View FlooferLand's full-sized avatar
🌈
very gay (woman connoisseur)

FlooferLand! FlooferLand

🌈
very gay (woman connoisseur)
View GitHub Profile
@FlooferLand
FlooferLand / html_shell.html
Last active July 12, 2025 14:43
Godot HTML shell example for Discord activities
<!DOCTYPE html>
<html lang="en">
<!--
This roughly follows https://github.com/godotengine/godot/blob/master/misc/dist/html/full-size.html
The only difference is, for a Discord activity to work properly, assets must be prefixed with /.proxy/
-->
<head>
<title>Discord Embedded Godot</title>
<meta charset="UTF-8">
<style>
@FlooferLand
FlooferLand / bee-movie-script-compact.txt
Created June 17, 2025 20:29
The bee movie script, but compacted down to one line
According to all known laws of aviation, there is no way a bee should be able to fly. Its wings are too small to get its fat little body off the ground. The bee, of course, flies anyway because bees don't care what humans think is impossible. Yellow, black. Yellow, black. Yellow, black. Yellow, black. Ooh, black and yellow! Let's shake it up a little. Barry! Breakfast is ready! Coming! Hang on a second. Hello? Barry? Adam? Can you believe this is happening? I can't. I'll pick you up. Looking sharp. Use the stairs, Your father paid good money for those. Sorry. I'm excited. Here's the graduate. We're very proud of you, son. A perfect report card, all B's. Very proud. Ma! I got a thing going here. You got lint on your fuzz. Ow! That's me! Wave to us! We'll be in row 118,000. Bye! Barry, I told you, stop flying in the house! Hey, Adam. Hey, Barry. Is that fuzz gel? A little. Special day, graduation. Never thought I'd make it. Three days grade school, three days high school. Those were awkward. Three days college.
@FlooferLand
FlooferLand / RemoveUselessThings.css
Created March 26, 2025 12:09
Vencord theme that removes a bunch of annoying things on Discord
/**
* @name Remove Useless Things
* @author FlooferLand
* @version 1.0.0
* @description Remove annoying stuff from Discord
*/
:root {
--title-bar-height: 0%;
}
@FlooferLand
FlooferLand / godot_mono.sh
Last active October 28, 2024 18:47
Auto-updating Godot (bash script for Linux)
#!/bin/bash
godot_major_ver="4"
# Variables
api_url="https://api.github.com/repos/godotengine/godot/releases/latest"
download_name="Godot_v$godot_major_ver.*-stable_mono_linux_x86_64"
download_zip="$download_name.zip"
output_exe="godot_mono.x86_64"
@FlooferLand
FlooferLand / model_installer.py
Last active April 23, 2024 05:59
weights.gg RVC model installer
import zipfile
import os
import os.path as path
import json
import time
import shutil
from colorama import Fore, Back, Style
###########################################################
# Installs RVC models from Weights.gg zip files basically #
@FlooferLand
FlooferLand / gmod_font_size_changer.py
Last active September 25, 2022 19:58
Python script to change Garry's Mod font size
##########################
# Gmod font size changer #
# --- By FlooferLand --- #
# /!\ Use at your own caution,
# make a backup before running the script! /!\
# PS: It doesn't work for *some* fonts like the spawn menu, feel free to suggest a fix
# Variables
source_scheme_path = "E:\\Games\\SteamLibrary\\steamapps\\common\\GarrysMod\\garrysmod\\resource\\SourceScheme.res"
@FlooferLand
FlooferLand / discord_party_mode.py
Last active June 11, 2023 10:14
Discord Party Mode achievement-beating script
#########################################################################################
# --- Read me --- #
#########################################################################################
# Scuffed Python script in order to beat the Party Mode achievements in Discord #
# - In order to run it: #
# 1. Install Python 3 #
# 2. Install the `pyautogui` and `pydirectinput` Python PIP modules (pip install ...) #
# 3. Open a terminal in the directory where #
# the script is, and run `python discord_party_mode.py` #
# (or `python3 discord_party_mode.py` if you're on Linux/macOS) #