Skip to content

Instantly share code, notes, and snippets.

import java.net.URI;
import java.net.URISyntaxException;
import java.nio.ByteBuffer;
import org.java_websocket.client.WebSocketClient;
import org.java_websocket.drafts.Draft;
import org.java_websocket.drafts.Draft_6455;
import org.java_websocket.handshake.ServerHandshake;
public class Client extends WebSocketClient {
@TheBrokenRail
TheBrokenRail / README.md
Last active June 19, 2020 20:36
Packages!

Place both shell scripts in the root of your dev environmen and change the package name in package.sh.

#include <linux/input.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <unistd.h>
#include <time.h>
#include <errno.h>
#define LENGTH 250
int msleep(long msec) {
@TheBrokenRail
TheBrokenRail / README.md
Created November 11, 2020 16:22
Simple Program Allowing MCPI level.dat Files To Be Used With NBT Editors

Pi-NBT

This is a simple command-line program that will remove or add the additional header information MCPI/Old MCPE uses in its level.dat files, this header information prevents many commonly used NBT ediors/libraries from reading MCPI/Old MCPE level.dat files.

Header Details

The header consists of 2 32-bit little-endian integers. The first integer is the "storage version", this is always equal to 3. The second integer is the remaining bytes in the file, this is used to detect file corruption.

Usage

pi-nbt add-header in.dat out.dat
pi-nbt remove-header in.dat out.dat
package com.thebrokenrail.minecraftbakery.texture.builtin.atlas;
import com.thebrokenrail.minecraftbakery.texture.Texture;
public class TerrainAtlas extends Texture {
public TerrainAtlas() {
super("terrain", 256, 256);
}
private void block(String name, int x, int y) {
@TheBrokenRail
TheBrokenRail / Dockerfile
Last active January 31, 2021 04:52
Mesa-QEMU Bug
FROM arm32v7/debian:bullseye
RUN apt-get update && apt-get install -y mesa-utils
ENTRYPOINT glxgears
@TheBrokenRail
TheBrokenRail / index.ts
Last active January 22, 2023 03:41
ShakespeareBot
import { ChatGPTAPIBrowser, ChatResponse, SendMessageOptions } from 'chatgpt';
import { Client, GatewayIntentBits, Events, PermissionsBitField, WebhookCreateMessageOptions, MessageType, MessageFlags, TextChannel, ThreadChannel, WebhookEditMessageOptions, ForumChannel, Webhook } from 'discord.js';
import { RateLimiter } from 'limiter';
// Login To ChatGPT
const api = new ChatGPTAPIBrowser({
email: '<Your Email>',
password: '<Your Password>',
isGoogleLogin: true
});
@TheBrokenRail
TheBrokenRail / build-tcc.sh
Created March 5, 2019 22:03
Build TinyCC
#!/bin/bash
set -e
PATH="$(pwd)/tinycc/temp:$(pwd)/tinycc/build/bin:$(pwd)/google-ndk:$(pwd)/google-ndk/toolchains/llvm/prebuilt/linux-x86_64/bin:${PATH}"
if [[ -d tinycc ]]; then
rm -rf tinycc
fi
@TheBrokenRail
TheBrokenRail / the-code-is-easy.patch
Created April 8, 2023 06:46
It really is that easy!
diff --git a/src/file-utils.c b/src/file-utils.c
index 2095a8d2..d283b091 100644
--- a/src/file-utils.c
+++ b/src/file-utils.c
@@ -48,7 +48,7 @@
/* path */
-static const char *try_folder[] = { "cache", "~", "tmp", NULL };
+static const char *try_folder[] = { "var-tmp", "cache", "~", "tmp", NULL };
@TheBrokenRail
TheBrokenRail / Dockerfile
Last active November 17, 2023 07:47
Cross-compile a Linux kernel with FunctionFS for the PinePhone running postmarketOS v23.06.
# Change this when changing the postmarketOS version!
FROM arm64v8/alpine:3.18
# The postmarketOS Version
ENV PMOS_VERSION="v23.06"
# Use postmarketOS
RUN \
echo "https://mirror.postmarketos.org/postmarketos/${PMOS_VERSION}" > temp && \
cat /etc/apk/repositories >> temp && \