Skip to content

Instantly share code, notes, and snippets.

View shanoaice's full-sized avatar

Shanoa Ice shanoaice

View GitHub Profile
@shanoaice
shanoaice / crash-log.log
Last active February 8, 2024 12:59
Cleanroom Bouncepad Crash
[18:41:58] [main/INFO] [Bouncepad]: Launching wrapped minecraft [net.minecraft.client.main.Main]
[18:41:59] [main/WARN] [mixin]: Re-entrance detected, this will cause serious problems.
org.spongepowered.asm.mixin.transformer.throwables.ReEntrantTransformerError: Re-entrance error.
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:366) [sponge-mixin-0.16.0+mixin.0.8.5.jar:0.16.0+mixin.0.8.5]
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:240) [sponge-mixin-0.16.0+mixin.0.8.5.jar:0.16.0+mixin.0.8.5]
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:208) [sponge-mixin-0.16.0+mixin.0.8.5.jar:0.16.0+mixin.0.8.5]
at org.spongepowered.asm.mixin.transformer.Proxy.transform(Proxy.java:71) [sponge-mixin-0.16.0+mixin.0.8.5.jar:0.16.0+mixin.0.8.5]
at net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:320) [bouncepad-0.4.33-cursed.jar:?]
at ne
@shanoaice
shanoaice / rei.log
Created August 30, 2023 07:11
REI Log - Tech Reborn NBT Compatibility
This file has been truncated, but you can view the full file.
[00:30:32] [Render thread/INFO] ========================================
[00:30:32] [Render thread/INFO] Minecraft: 1.19.2
[00:30:32] [Render thread/INFO] Side: client
[00:30:32] [Render thread/INFO] Development: false
[00:30:32] [Render thread/INFO] Version: 9.1.643
[00:30:32] [Render thread/INFO] Loader:
[00:30:32] [Render thread/INFO] - Fabric: 0.14.22
[00:30:32] [Render thread/INFO] - Fabric API: 0.76.1+1.19.2
[00:30:32] [Render thread/INFO] Dependencies:
[00:30:32] [Render thread/INFO] - Cloth Config: 8.3.103
@shanoaice
shanoaice / generate-thermal_insolator-mysticalag-recipes.mjs
Last active March 12, 2025 22:51
Generate Thermal Expansion's Insulator Machine Recipes for Mystical Agriculture
import { opendir, mkdir, writeFile } from "node:fs/promises";
import path from "node:path";
// usage: put this script under the root folder of MysticalAgriculture project source and run it using Node.js v18
// generated recipes will be under `thermal_integration/recipes` folder.
function generateInsolatorRecipe(name) {
const potentialEmptyTags = ["silicon", "rubber"];
const potentialEmptyIngotTags = [
"uranium",
Rust 🕓 6h50m ███████████████████████░░░░░░░ 77.0%
Python 🕓 1h3m ███▌░░░░░░░░░░░░░░░░░░░░░░░░░░ 11.9%
Markdown 🕓 21m █▏░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.0%
Bash 🕓 14m ▊░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.6%
C 🕓 8m ▍░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.6%
@shanoaice
shanoaice / set-ipv6.bat
Created August 30, 2019 14:54
One-Click Teredo IPv6 Tunnel Setup
@echo on
ipconfig /flushdns
netsh int teredo set state enterpriseclient 217.17.192.217
netsh int teredo show state
pause