---- Minecraft Crash Report ----
// You're mean.
Time: 2025-12-23 09:21:16
Description: Ticking Entity
java.lang.NullPointerException: Cannot invoke "net.minecraft.entity.LivingEntity.getStackInHand(net.minecraft.util.Hand)" because the return value of "net.pixeldreamstudios.mobs_of_mythology.entity.mobs.KoboldEntity.getTarget()" is null
at knot//net.pixeldreamstudios.mobs_of_mythology.entity.mobs.KoboldEntity.lambda$getFightTasks$1(KoboldEntity.java:110)
at knot//net.tslat.smartbrainlib.api.core.behaviour.ExtendedBehaviour.doStartCheck(ExtendedBehaviour.java:158)
Discover gists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import sys | |
| import json | |
| import uuid | |
| import string | |
| import random | |
| from concurrent.futures import ThreadPoolExecutor as tred | |
| # Requests লাইব্রেরি চেক ও ইনস্টল | |
| try: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Log uploaded on Tuesday, December 23, 2025, 11:21:08 AM | |
| Loaded mods: | |
| Harmony(brrainz.harmony)[mv:2.4.2.0]: 0Harmony(2.4.1), HarmonyMod(2.4.2) | |
| Core(Ludeon.RimWorld): (no assemblies) | |
| Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
| Biotech(Ludeon.RimWorld.Biotech): (no assemblies) | |
| Adaptive Storage Framework(adaptive.storage.framework): 0MultiplayerAPI(av:0.5.0,fv:0.5.0), 1ITransformable(1.0.0), AdaptiveStorageFramework(1.2.4), CopyOperation(1.0.0), DefNameLink(1.0.0), GeneratorOperation(1.0.0), GeneratorOperationV2(1.0.0), PatchOperationSet(1.0.0), PatchOperationTryAdd(1.0.0), PostInheritanceOperation(1.0.0), SaveGameCompatibility(1.0.0) | |
| HugsLib(UnlimitedHugs.HugsLib)[ov:12.0.0]: 0Harmony(av:2.4.1,fv:1.2.0.1), HugsLib(av:1.0.0,fv:12.0.0) | |
| VFE Pack for Adaptive Storage Framework(cantaloupetheclown.vanillafurnitureexpandedpack): (no assemblies) | |
| [sbz] Fridge(sbz.NeatStorageFridge): FixesForSBZFridge(1.0.0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| id | station | stationid | value | unit | obstime | date | |
|---|---|---|---|---|---|---|---|
| 0 | 流浮山 | RF001 | 0 | mm | 2025-12-23T16:00:00+08:00 | 2025-12-23 | |
| 1 | 湿地公园 | RF002 | 0 | mm | 2025-12-23T16:00:00+08:00 | 2025-12-23 | |
| 2 | 水边围 | N12 | 0 | mm | 2025-12-23T16:00:00+08:00 | 2025-12-23 | |
| 3 | 石岗 | RF003 | 0 | mm | 2025-12-23T16:00:00+08:00 | 2025-12-23 | |
| 4 | 大美督 | RF004 | 0 | mm | 2025-12-23T16:00:00+08:00 | 2025-12-23 | |
| 5 | 大埔墟 | RF005 | 0 | mm | 2025-12-23T16:00:00+08:00 | 2025-12-23 | |
| 6 | 北潭涌 | RF006 | 0 | mm | 2025-12-23T16:00:00+08:00 | 2025-12-23 | |
| 7 | 滘西洲 | RF007 | 0 | mm | 2025-12-23T16:00:00+08:00 | 2025-12-23 | |
| 8 | 西贡 | N15 | 0 | mm | 2025-12-23T16:00:00+08:00 | 2025-12-23 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <user>S-1-5-21-521820179-2504086984-3068366846-1000</user> | |
| <keys> | |
| <key installerType="Custom" displayName="Hain" displayVersion="0.6.6"> | |
| <RegistryView>Registry64</RegistryView> | |
| <KeyPath>HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\hain</KeyPath> | |
| <DefaultValue /> | |
| <InstallLocation><![CDATA[C:\Users\vagrant\AppData\Local\hain]]></InstallLocation> | |
| <UninstallString><![CDATA["C:\Users\vagrant\AppData\Local\hain\Update.exe" --uninstall -s]]></UninstallString> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from collections.abc import Callable | |
| def decorator_factory_a[T](default: T | None = None) -> Callable[[Callable[[], T]], Callable[[], T]]: | |
| def decorator(func: Callable[[], T]) -> Callable[[], T]: | |
| return func | |
| return decorator | |
| def decorator_factory_b[T]() -> Callable[[Callable[[], T]], Callable[[], T]]: | |
| def decorator(func: Callable[[], T]) -> Callable[[], T]: | |
| return func |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from collections.abc import Callable | |
| def decorator_factory_a[T](default: T | None = None) -> Callable[[Callable[[], T]], Callable[[], T]]: | |
| def decorator(func: Callable[[], T]) -> Callable[[], T]: | |
| return func | |
| return decorator | |
| def decorator_factory_b[T]() -> Callable[[Callable[[], T]], Callable[[], T]]: | |
| def decorator(func: Callable[[], T]) -> Callable[[], T]: | |
| return func |
Dokumentasi ini menjelaskan arsitektur "Jalur Langit" untuk auto-deploy aplikasi Tokita dari Localhost/Laptop ke Server (VM) menggunakan aaPanel, Tailscale Funnel, dan GitHub Webhooks.
Konsep Dasar:
Git Push -> GitHub Webhook -> Tailscale Funnel (Public) -> aaPanel Webhook (Local) -> Auto Pull & Optimize
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [23:43:01] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker | |
| [23:43:01] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker | |
| [23:43:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker | |
| [23:43:01] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2847 for Minecraft 1.12.2 loading | |
| [23:43:01] [main/INFO] [FML]: Java is OpenJDK 64-Bit Server VM, version 1.8.0_472, running on Linux:amd64:6.8.0-90-generic, installed at /usr/lib/jvm/java-8-openjdk-amd64/jre | |
| [23:43:02] [main/WARN] [FML]: The coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin) is not signed! | |
| [23:43:02] [main/WARN] [FML]: The coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin) is not signed! | |
| [23:43:02] [main/INFO] [FML]: Searching $LAUNCHER$/instances/client/minecraft/mods for mods | |
| [23:43:02] [main/INFO] [FML]: Searching $LAUNCHER$/instances/client/mine |