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
<!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> |
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
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. |
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
/** | |
* @name Remove Useless Things | |
* @author FlooferLand | |
* @version 1.0.0 | |
* @description Remove annoying stuff from Discord | |
*/ | |
:root { | |
--title-bar-height: 0%; | |
} |
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 | |
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" |
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 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 # |
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
########################## | |
# 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" |
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
######################################################################################### | |
# --- 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) # |