Override the entrypoint in docker-compose.yml for the MariaDB Docker container by adding:
entrypoint: mysqld_safe --skip-grant-tables --user=mysqlThe start up the Docker Compose stack:
| const fs = require('fs/promises') | |
| const util = require('util') | |
| const process = (k1, v1, k2, v2) => { | |
| if (util.isDeepStrictEqual(v1, v2)) return v1 | |
| if (typeof v1 === 'undefined' || v1 === null) return v2 | |
| if (typeof v2 === 'undefined' || v2 === null) return v1 | |
| let data = null | |
| if (Array.isArray(v1) !== Array.isArray(v2)) { | |
| if (Array.isArray(v1)) { |
| import it.unimi.dsi.fastutil.ints.Int2ObjectMap; | |
| import net.minecraft.network.ConnectionProtocol; | |
| import net.minecraft.network.protocol.PacketFlow; | |
| import java.util.Comparator; | |
| import java.util.Locale; | |
| import java.util.function.Function; | |
| public class DumpProtocol { | |
| public static void main(String[] args) { |
| HANDSHAKING SERVERBOUND 0x00 ClientIntentionPacket | |
| PLAY SERVERBOUND 0x00 ServerboundAcceptTeleportationPacket | |
| PLAY SERVERBOUND 0x01 ServerboundBlockEntityTagQuery | |
| PLAY SERVERBOUND 0x02 ServerboundChangeDifficultyPacket | |
| PLAY SERVERBOUND 0x03 ServerboundChatCommandPacket | |
| PLAY SERVERBOUND 0x04 ServerboundChatPacket | |
| PLAY SERVERBOUND 0x05 ServerboundChatPreviewPacket | |
| PLAY SERVERBOUND 0x06 ServerboundClientCommandPacket | |
| PLAY SERVERBOUND 0x07 ServerboundClientInformationPacket | |
| PLAY SERVERBOUND 0x08 ServerboundCommandSuggestionPacket |
| package com.example.lwjgltest; | |
| import org.joml.Matrix4d; | |
| import org.lwjgl.glfw.GLFWErrorCallback; | |
| import org.lwjgl.glfw.GLFWVidMode; | |
| import org.lwjgl.opengl.GL; | |
| import org.lwjgl.stb.STBEasyFont; | |
| import org.lwjgl.system.MemoryStack; | |
| import java.nio.ByteBuffer; |