Skip to content

Instantly share code, notes, and snippets.

View WindClan's full-sized avatar

Featherwhisker WindClan

View GitHub Profile
# pip install pyqt5
# pip install PyQtWebEngine
import sys
import os
from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
from PyQt5.QtWebEngineWidgets import *
discordUrl = QUrl("https://discord.com/app")
@WindClan
WindClan / Colors.lua
Last active January 23, 2024 21:39
Legacy lighting color correction
-- Derived from code under the Mozilla Public License 2.0 so this is under the same license
-- https://github.com/MaximumADHD/Super-Nostalgia-Zone/blob/main/LICENSE
-- Modified from https://github.com/MaximumADHD/Super-Nostalgia-Zone/blob/main/Client/Sky/init.client.lua
local Lighting = game:GetService("Lighting")
local toneMap = Instance.new("ColorCorrectionEffect")
toneMap.TintColor = Color3.new(1.25, 1.25, 1.25)
toneMap.Name = "LegacyToneMap"
toneMap.Brightness = 0.03
toneMap.Saturation = 0.07
@WindClan
WindClan / MinecraftLauncher.py
Created March 3, 2024 07:14
Launches the newest version of olauncher
import os.path
import subprocess
import requests
import json
from subprocess import STDOUT,PIPE
if not os.path.isfile("version.txt"):
a = open("version.txt", "w")
a.write(":3")
a.close()
@WindClan
WindClan / MinecraftResources.xml
Last active March 10, 2024 04:15
MinecraftResources.xml modified to include asset hash to make fixing asset downloading easier
<ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<Name>MinecraftResources</Name>
<Prefix />
<Marker />
<MaxKeys>1000</MaxKeys>
<IsTruncated>false</IsTruncated>
<Contents>
<Key>music/</Key>
<LastModified>2010-09-23T12:07:11.000Z</LastModified>
<ETag>"d41d8cd98f00b204e9800998ecf8427e"</ETag>
@WindClan
WindClan / rbxdownload.py
Created June 12, 2024 05:46
Roblox mass asset version downloader
import requests
import os
import json
import sys
fileExtensions = {
"1": ".png",
"2": ".rbxm",
"3": ".ogg",
"4": ".mesh",
@WindClan
WindClan / WhatBeatsTAS.py
Last active July 22, 2024 19:49
whatbeatsrock automation api
import requests
import json
import uuid
url = "https://www.whatbeatsrock.com/api/vs"
previous = "rock"
headers = {
'Accept': '*/*',
'Accept-Encoding': 'gzip, deflate, br, zstd',
from api import submitGuess #https://gist.github.com/WindClan/97861c7d6b37b86e2685ac961024739a
import uuid
import time
chars = [
"",
"a",
"b",
"c",
"d",