-
Download and install these two CLI tools:
-
Create a permanent folder on your file explorer named something like
BetterDiscordReinstall
. -
Depending on your Discord client, place the two batch programs in the folder:
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 | |
set -euo pipefail | |
### CONFIG ### | |
MOD_ZIP=$(ls BiglyBT_*.zip 2>/dev/null | head -n 1) | |
JRE_URL="https://github.com/adoptium/temurin23-binaries/releases/download/jdk-23.0.2%2B7/OpenJDK23U-jdk_x64_linux_hotspot_23.0.2_7.tar.gz" | |
INSTALLER_URL="https://files.biglybt.com/installer/BiglyBT_Installer.sh" | |
BIGLYBT_DIR="${HOME}/biglybt" | |
JRE_DIR="${BIGLYBT_DIR}/jre" |
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
network.stricttransportsecurity.preloadlist false | |
Ignores the built‑in HSTS preload list. | |
security.cert_pinning.enforcement_level 0 | |
Turns off all pinning and HSTS enforcement. | |
(optional) | |
security.ssl.enable_ocsp_stapling false | |
Stops OCSP revocation checks. |
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 | |
echo "--- ComfyUI Installation Script ---" | |
echo "Targeting PyTorch with CUDA 12.8, Python 3.12." | |
# --- Configuration --- | |
COMFYUI_DIR=$(pwd) | |
VENV_DIR="${COMFYUI_DIR}/venv" | |
PYTHON_VERSION="3.12" # The desired Python version | |
COMFYUI_REPO="https://github.com/comfyanonymous/ComfyUI.git" |
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
{ | |
"id": "00000000-0000-0000-0000-000000000000", | |
"revision": 0, | |
"last_node_id": 17, | |
"last_link_id": 24, | |
"nodes": [ | |
{ | |
"id": 1, | |
"type": "EmptyLatentImage", | |
"pos": [ |
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
# Global DLSS update script by emoose - https://gist.github.com/emoose/11271bbb3b42fb3b1b0e1c83eef47c05 | |
# This allows setting up driver to use a single global DLSS DLL for all DLSS2/3 games | |
# If this global version is newer than the one included with game, it should get loaded automatically | |
# (more info at https://forums.guru3d.com/threads/.439761/page-143#post-6221767) | |
# | |
# Two ways of using this script: | |
# - save script as UpdateDLSS.ps1 then run it through command prompt or powershell: "powershell .\UpdateDLSS.ps1" | |
# or "powershell C:\Users\emoose\Documents\UpdateDLSS.ps1" | |
# | |
# - save script into powershell modules folder, so you can use it from any location |