Skip to content

Instantly share code, notes, and snippets.

View SzczurekYT's full-sized avatar

SzczurekYT

  • Poland
  • 14:33 (UTC +02:00)
View GitHub Profile
@SzczurekYT
SzczurekYT / filename.xml
Created July 30, 2023 18:15
VirtManager Quibble Stuck at Booting Windows
<domain type="qemu">
<name>win10</name>
<uuid>35b30521-1331-4a1c-a0d4-fd9edd71f78a</uuid>
<metadata>
<libosinfo:libosinfo xmlns:libosinfo="http://libosinfo.org/xmlns/libvirt/domain/1.0">
<libosinfo:os id="http://microsoft.com/win/10"/>
</libosinfo:libosinfo>
</metadata>
<memory unit="KiB">8388608</memory>
<currentMemory unit="KiB">8388608</currentMemory>

Welcome to FixYourMod

Hello
First of all the name FixYourMod may sound rude, but It's just a fancy name for a bunch of bug reports. Don't worry, no one is yelling at you. 😃
If you have every played fabric/quilt with a bunch of mods, you may noticed one thing. When you launch your game and take look at the logs there is a good chance you will see a bunch of errors, often mixin related. These errors don't crash the game, they let you play, and everything seems to work properly. But does it? Those are still errors, warnings that something is wrong.
Missing annotations, conflicts, ClassNotFoundExceptions, shaded dependency clashes, these all need to be addressed. For example in my personal client side modpack I counted 60 warnings and around 5 errors. We need to do something about this.

So over the course of coming days I will try to contribute to modded minecraft's community by reporting those bugs and/or sending pull requests/suggestions with solutions to them. I hope that everyone will benef

@SzczurekYT
SzczurekYT / bot.py
Created January 6, 2022 18:43
Mineflayer bot
from javascript import require, On, Once, AsyncTask, once, off
import requests
import random
mineflayer = require("mineflayer")
# word_site = "https://www.mit.edu/~ecprice/wordlist.10000"
# Random bot name
package me.szczurekyt.magnoliechowany;
import org.bukkit.Bukkit;
import org.bukkit.entity.Player;
import org.bukkit.plugin.java.JavaPlugin;
import org.bukkit.scoreboard.Scoreboard;
import org.bukkit.scoreboard.Team;
import java.util.*;
@SzczurekYT
SzczurekYT / file1.py
Last active July 24, 2021 17:31
Python TKInter Problem
import tkinter as tk
import secondFile as f2
bool = False
# This isn't executed.
if bool:
print("Secon Window")
f2.showUp()
root = tk.Tk()