Skip to content

Instantly share code, notes, and snippets.

@RuiNtD
RuiNtD / Start11v2 Mask.reg
Created April 30, 2024 22:25
Start11v2: Mask Username and User Icon
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Stardock\Start8\Start8.ini\Start8]
"S11_MaskUserIcon"="1"
"S11_OverrideUserName"="btw i don't use arch"
@RuiNtD
RuiNtD / mc-excludes.txt
Last active February 9, 2024 08:34
Minecraft resticprofile
logs
crash-reports
server-resource-packs
.fabric
.mixin.out
.replay_cache
controlify-natives
dashloader-cache
await Deno.permissions.request({ name: "net", host: "example.com" });
await fetch("https://example.com");
@RuiNtD
RuiNtD / install.lua
Last active December 20, 2023 17:20
EmuLauncher
settings.load()
local DEV = settings.get("launcher.dev", false)
function resolveColor(color)
if type(color) == "string" then
return colors[color] or colours[color]
elseif type(color) == "number" then
return color
end
end
BEGIN MESSAGE.
rAnj9Ki76FwezKL 8aeq42L4LhCYQtz HX99pPz7FE21iIz bTYS3knOup9KBKR
L5b56zRB25XQuts dCzXd0JUevNTCKq 6Xr2MZHgg4gz4H4 ROevefWsqo94XMq
zQxwGnaj0QBZh3i nVib8WfDyChQADN sJJjHp48zeN7FKT DpTRQ2nN6bYasuv
RYGqB3yJqPsqvXl cZeKRRxXIVERjWB B2rWW7tiSkCT.
END MESSAGE.
@RuiNtD
RuiNtD / msgunpack.ts
Created May 27, 2022 03:14
Deno app that unpacks a file containing msgpack data into JSON
#!/usr/bin/env deno run
/**
Unpacks a file containing msgpack data into JSON.
@param filePath The path to the file to unpack.
@param outputPath The path to the file to write the output to.
@param pretty Whether to pretty-print the output.
*/
import * as msgpack from "https://unpkg.com/@msgpack/msgpack@2.7.2/mod.ts";
@RuiNtD
RuiNtD / legendary.bat
Created January 20, 2022 11:27
Legendary Windows Sandbox
@PowerShell .\legendary.ps1
@RuiNtD
RuiNtD / persistent_keybinds.lua
Created November 27, 2021 08:45
Persistent keybinds for Figura
function PersistKey(name, default_key, global)
local data_name = "keybind:" .. name
local old_key = data.load(data_name) or default_key
local keybind = keybind.newKey(name, default_key, global)
keybind.setKey(old_key)
function tick()
local key = keybind.getKey()
if old_key ~= key then
old_key = key
data.save(data_name, key)
@RuiNtD
RuiNtD / info.txt
Last active September 1, 2021 23:44
No Startup Music - Cookie Clicker Steam Mod
{
"Name": "No Startup Music",
"ID": "no startup music",
"Author": "Fayne Aldan",
"Description": "Changes the startup music to main theme. Useful when you're at the stage in the game where clicking the cookie would be harmful.",
"ModVersion": 1.2,
"GameVersion": 2.031,
"Date": "01/09/2021",
"AllowSteamAchievs": 1
}
@RuiNtD
RuiNtD / celeste.cmd
Last active July 6, 2020 10:38
PICO-8 Export Automator
:: Example for Celeste
export celeste "-f -w -i 26"