Skip to content

Instantly share code, notes, and snippets.

View exurd's full-sized avatar
☃️

exurd exurd

☃️
View GitHub Profile
@exurd
exurd / rbx_save_inv_assets.py
Last active August 19, 2025 20:53
Roblox: Save inventory-owned assets to the Creator Store "Saved" list.
"""
Save inventory-owned assets to the Creator Store "Saved" list. (19/08/2025)
"""
import os
import time
import math
from dotenv import load_dotenv # pip install python-dotenv
import requests # pip install requests
@exurd
exurd / robloxbadgehunterassist.user.js
Last active August 15, 2025 15:19
Fixes for "Nyan Cat's badge hunter assist script" (v1.654): Hide earned badges, keep track of badge updates in thousands of games, and more!
// ==UserScript==
// @name Nyan Cat's badge hunter assist script
// @namespace nyancat.nyannyannyan.robloxbadgehunterassist
// @version 1.654
// @author Nyan Cat, actuallyasmartname, exurd
// @match https://*.roblox.com/*
// @description Hide earned badges, keep track of badge updates in thousands of games, and more!
// @grant GM.xmlHttpRequest
// @connect bor-valuable-badge-database-production.up.railway.app
// @inject-into page
@exurd
exurd / rbx_asset_search.py
Last active August 19, 2025 20:54
Roblox: Find meshes and textures for an accessory (or any asset that uses a sequential ID). Saves to `{ID}_{TYPE}.json` (16/04/2024)
"""
FIND MESHES AND TEXTURES FOR AN ACCESSORY (16/04/2024)
Saves found assets to `{ID}_{TYPE}.json`
The Develop API Asset endpoint used could go down at any point, so use this
script or forever hold your peace! https://devforum.roblox.com/t/3293093
"""
import json
import os
@exurd
exurd / Install_VC_Redist_AIO.ps1
Last active August 12, 2025 15:53
Powershell script for Windows Sandbox that installs every Visual C++ Redistributable via VisualCppRedist AIO Pack by abbodi1406. Recommended if you're frequently running older programs.
param(
# Keep Smart App Control off after installing the redists
[switch]$keepSmartAppControlOff
)
# URLs for the latest Visual C++ Redistributables (https://github.com/abbodi1406/vcredist)
$urls = @(
"https://github.com/abbodi1406/vcredist/releases/latest/download/VisualCppRedist_AIO_x86_x64.exe"
)
@exurd
exurd / tubeup.ipynb
Created June 13, 2025 19:48
Jupyter notebook for tubeup, a multi-VOD service to Archive.org uploader (https://github.com/bibanon/tubeup)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@exurd
exurd / custard.user.js
Last active May 13, 2025 21:49
Custom GitHub profile CSS by creating `.custard/style.css` in your special repository.
// ==UserScript==
// @name custard
// @namespace exurd.custard
// @version 4
// @description custom github profile css
// @author exurd
// @match https://github.com/*
// @connect raw.githubusercontent.com
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant GM_addStyle
@exurd
exurd / FixBrowser 0.1 Acid Tests.md
Created December 25, 2024 12:07
Acid Tests on FixBrowser 0.1 (Windows)

Acid1

acid1 test on fixbrowser 0.1 (windows)

Acid2

acid2 test on fixbrowser 0.1 (windows)

Acid3

acid3 test on fixbrowser 0.1 (windows)

Links

@exurd
exurd / stemsFromMIDI_BaWaMI.bat
Last active December 18, 2024 13:57
Windows batch script to generate/convert a MIDI file to multiple stems from BaWaMI, a Basic Waveform MIDI Soft-synth by SomethingUnreal (Robbi-985)
BaWaMI /console /multimute 123456789abcdef /writewavonly [.\MIDI_FILE-track1.wav] "MIDI_FILE.mid"
BaWaMI /console /multimute 023456789abcdef /writewavonly [.\MIDI_FILE-track2.wav] "MIDI_FILE.mid"
BaWaMI /console /multimute 013456789abcdef /writewavonly [.\MIDI_FILE-track3.wav] "MIDI_FILE.mid"
BaWaMI /console /multimute 012456789abcdef /writewavonly [.\MIDI_FILE-track4.wav] "MIDI_FILE.mid"
BaWaMI /console /multimute 012356789abcdef /writewavonly [.\MIDI_FILE-track5.wav] "MIDI_FILE.mid"
BaWaMI /console /multimute 012346789abcdef /writewavonly [.\MIDI_FILE-track6.wav] "MIDI_FILE.mid"
BaWaMI /console /multimute 012345789abcdef /writewavonly [.\MIDI_FILE-track7.wav] "MIDI_FILE.mid"
BaWaMI /console /multimute 012345689abcdef /writewavonly [.\MIDI_FILE-track8.wav] "MIDI_FILE.mid"
BaWaMI /console /multimute 012345679abcdef /writewavonly [.\MIDI_FILE-track9.wav] "MIDI_FILE.mid"
BaWaMI /console /multimute 012345678abcdef /writewavonly [.\MIDI_FILE-track10.wav] "MIDI_FILE.mid"
@exurd
exurd / median_limiteds.py
Last active June 15, 2024 20:52
Roblox Python Script: Find median price for resellable limiteds
import requests
import time
import statistics
def medianPrice(CollectibleItemId):
itemReq = requestSession.get(f"https://apis.roblox.com/marketplace-sales/v1/item/{CollectibleItemId}/resellers?cursor=&limit=100")
#print(playerReq)
list = []
if itemReq.ok:
itemJson = itemReq.json()
@exurd
exurd / Roblox_HighJump_WithGears.ahk
Last active June 15, 2024 20:52
Roblox AutoHotKey Script: Switching from a jump increase gear (537436448) to a gravity changing gear (16688968) mid-jump causes a massive height boost.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Q::
SendInput {3}
Sleep, 200
SendInput {2}