This file has been truncated, but you can view the full file.
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
| [19:51:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker | |
| [19:51:10] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker | |
| [19:51:10] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker | |
| [19:51:10] [main/INFO] [FML]: Forge Mod Loader version 14.23.4.0 for Minecraft 1.12.2 loading | |
| [19:51:10] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_171, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_171\jre | |
| [19:51:10] [main/WARN] [FML]: The coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin) is not signed! | |
| [19:51:10] [main/WARN] [FML]: The coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin) is not signed! | |
| [19:51:10] [main/INFO] [FML]: Searching C:\Almura-3.0\.\mods for mods | |
| [19:51:10] [main/INFO] [FML]: Loading tweaker org.spongepowered.asm.launch.M |
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
| com.google.common.util.concurrent.UncheckedExecutionException: java.lang.ArrayIndexOutOfBoundsException: 19 | |
| at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2051) ~[guava-23.6-jre.jar:na] | |
| at com.google.common.cache.LocalCache.get(LocalCache.java:3962) ~[guava-23.6-jre.jar:na] | |
| at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3966) ~[guava-23.6-jre.jar:na] | |
| at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4951) ~[guava-23.6-jre.jar:na] | |
| at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4957) ~[guava-23.6-jre.jar:na] | |
| at com.google.inject.internal.util.StackTraceElements.forMember(StackTraceElements.java:71) ~[guice-4.2.0.jar:na] | |
| at com.google.inject.internal.Messages.formatParameter(Messages.java:282) ~[guice-4.2.0.jar:na] | |
| at com.google.inject.internal.Messages.formatInjectionPoint(Messages.java:273) ~[guice-4.2.0.jar:na] | |
| at com.google.inject.internal.Messages.formatSource(Messages.java:229) ~[guice-4.2.0.jar:na] |
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
| ---- Minecraft Crash Report ---- | |
| WARNING: coremods are present: | |
| Techguns Core (techguns-1.12.2-2.0.1.0.jar) | |
| SpongeCoremod (spongeforge-1.12.2-2655-7.1.0-BETA-3065.jar) | |
| Inventory Tweaks Coremod (InventoryTweaks-1.64-dev.jar) | |
| BetterFoliageLoader (BetterFoliage-MC1.12-2.1.10.jar) | |
| EnderCorePlugin (EnderCore-1.12.2-0.5.22.jar) | |
| Contact their authors BEFORE contacting forge |
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 requests | |
| import sys | |
| import time | |
| import datetime | |
| URL = "https://permanent-redirect.xyz/pages/{}" | |
| def main(): | |
| start = datetime.datetime.now() | |
| for minute in range(start.minute, -1, -1): |
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
| javascript:(function() { | |
| input = $("input"); | |
| button = $("button"); | |
| function rand() { return Math.floor(((Math.random() * (999999) - (100000)) + 100000)) } | |
| function guess() { input.val(rand().toString()); input.trigger('change'); input.trigger('input'); button.click(); latest = setTimeout(guess, 5000) } | |
| guess(); | |
| })(); |
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 re | |
| import requests | |
| GH_RE = re.compile("https:\/\/github\.com\/(\w+)\/(\w+)\/blob\/(master)") | |
| commit_map = {} | |
| def get_commit(repo): | |
| if not repo in commit_map: | |
| resp = requests.get("https://api.github.com/repos/{}/git/refs/heads/master".format(repo)) |
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
| # Sample TOML configuration file for building Rust. | |
| # | |
| # To configure rustbuild, copy this file to the directory from which you will be | |
| # running the build, and name it config.toml. | |
| # | |
| # All options are commented out by default in this file, and they're commented | |
| # out with their default values. The build system by default looks for | |
| # `config.toml` in the current directory of a build for build configuration, but | |
| # a custom configuration file can also be specified with `--config` to the build | |
| # system. |
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 requests | |
| import difflib | |
| versions = [ | |
| "0.1", | |
| "0.2", | |
| "0.3", | |
| "0.4", | |
| "0.5", | |
| "0.6", |
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
| java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5006 -Dlegacy.debugClassLoading=true -Dlegacy.debugClassLoadingFiner=true -Dmixin.debug.verbose=true -jar forge-1.10.2-12.18.2.2171-universal.jar | |
| Listening for transport dt_socket at address: 5006 | |
| [19:12:07] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker | |
| [19:12:07] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker | |
| [19:12:07] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker | |
| [19:12:09] [main/INFO] [FML]: Forge Mod Loader version 12.18.2.2171 for Minecraft 1.10.2 loading | |
| [19:12:09] [main/INFO] [FML]: Java is OpenJDK 64-Bit Server VM, version 1.8.0_112, running on Linux:amd64:4.8.10-1-ARCH, installed at /usr/lib/jvm/java-8-openjdk/jre | |
| [19:12:12] [main/INFO] [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from movingworld-1.10.2-0003-full.jar | |
| [19:12: |
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
| 1478: aload_0 | |
| 1479: dload 16 | |
| 1481: dload 4 | |
| 1483: dcmpl | |
| 1484: ifeq 1491 | |
| 1487: iconst_1 | |
| 1488: goto 1492 | |
| 1491: iconst_0 | |
| 1492: putfield #529 // Field B:Z | |